chore: increasing version

This commit is contained in:
Hydra 2024-04-15 11:01:47 +01:00
parent 46a946265c
commit d84b3324fb
No known key found for this signature in database
3 changed files with 5 additions and 3 deletions

View File

@ -1,7 +1,7 @@
{ {
"name": "hydra", "name": "hydra",
"productName": "Hydra", "productName": "Hydra",
"version": "1.0.0+steamdb-rotation", "version": "1.0.1",
"description": "No bullshit. Just play.", "description": "No bullshit. Just play.",
"main": ".webpack/main", "main": ".webpack/main",
"repository": { "repository": {

View File

@ -35,12 +35,14 @@ export interface TorrentUpdate {
bytesDownloaded: number; bytesDownloaded: number;
} }
export const BITTORRENT_PORT = "5881";
export class TorrentClient { export class TorrentClient {
public static startTorrentClient( public static startTorrentClient(
writePipePath: string, writePipePath: string,
readPipePath: string readPipePath: string
) { ) {
const commonArgs = ["6881", writePipePath, readPipePath]; const commonArgs = [BITTORRENT_PORT, writePipePath, readPipePath];
if (app.isPackaged) { if (app.isPackaged) {
const binaryName = binaryNameByPlatform[process.platform]; const binaryName = binaryNameByPlatform[process.platform];

View File

@ -6,7 +6,7 @@ import { ShopDetails } from "@types";
import { getSteamLanguage, steamUrlBuilder } from "@renderer/helpers"; import { getSteamLanguage, steamUrlBuilder } from "@renderer/helpers";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
const FEATURED_GAME_ID = "1144200"; const FEATURED_GAME_ID = "1245620";
export function Hero() { export function Hero() {
const [featuredGameDetails, setFeaturedGameDetails] = const [featuredGameDetails, setFeaturedGameDetails] =