From d84b3324fb99d39e00aaddeb092f469bf944a6a0 Mon Sep 17 00:00:00 2001 From: Hydra Date: Mon, 15 Apr 2024 11:01:47 +0100 Subject: [PATCH] chore: increasing version --- package.json | 2 +- src/main/services/torrent-client.ts | 4 +++- src/renderer/components/hero/hero.tsx | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index dd6f4d0ab..71a78e151 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/src/main/services/torrent-client.ts b/src/main/services/torrent-client.ts index 9be6c013d..732561ecf 100644 --- a/src/main/services/torrent-client.ts +++ b/src/main/services/torrent-client.ts @@ -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]; diff --git a/src/renderer/components/hero/hero.tsx b/src/renderer/components/hero/hero.tsx index 7185d9bf1..cbaf56da9 100644 --- a/src/renderer/components/hero/hero.tsx +++ b/src/renderer/components/hero/hero.tsx @@ -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] =