Skip to content

Commit

Permalink
chore: increasing version
Browse files Browse the repository at this point in the history
  • Loading branch information
thegrannychaseroperation committed Apr 15, 2024
1 parent 46a9462 commit d84b332
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "hydra",
"productName": "Hydra",
"version": "1.0.0+steamdb-rotation",
"version": "1.0.1",
"description": "No bullshit. Just play.",
"main": ".webpack/main",
"repository": {
Expand Down
4 changes: 3 additions & 1 deletion src/main/services/torrent-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,14 @@ export interface TorrentUpdate {
bytesDownloaded: number;
}

export const BITTORRENT_PORT = "5881";

export class TorrentClient {
public static startTorrentClient(
writePipePath: string,
readPipePath: string
) {
const commonArgs = ["6881", writePipePath, readPipePath];
const commonArgs = [BITTORRENT_PORT, writePipePath, readPipePath];

if (app.isPackaged) {
const binaryName = binaryNameByPlatform[process.platform];
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/components/hero/hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { ShopDetails } from "@types";
import { getSteamLanguage, steamUrlBuilder } from "@renderer/helpers";
import { useTranslation } from "react-i18next";

const FEATURED_GAME_ID = "1144200";
const FEATURED_GAME_ID = "1245620";

export function Hero() {
const [featuredGameDetails, setFeaturedGameDetails] =
Expand Down

0 comments on commit d84b332

Please sign in to comment.