mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-02-03 00:33:49 +03:00
chore: increasing version
This commit is contained in:
parent
46a946265c
commit
d84b3324fb
@ -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": {
|
||||||
|
@ -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];
|
||||||
|
@ -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] =
|
||||||
|
Loading…
Reference in New Issue
Block a user