mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-18 08:43:57 +00:00
34 lines
669 B
TypeScript
34 lines
669 B
TypeScript
import { app } from "electron";
|
|
import path from "node:path";
|
|
|
|
export const repackersOn1337x = [
|
|
"DODI",
|
|
"FitGirl",
|
|
"0xEMPRESS",
|
|
"KaOsKrew",
|
|
"TinyRepacks",
|
|
] as const;
|
|
|
|
export const repackers = [
|
|
...repackersOn1337x,
|
|
"Xatab",
|
|
"TinyRepacks",
|
|
"CPG",
|
|
"GOG",
|
|
"onlinefix",
|
|
] as const;
|
|
|
|
export const defaultDownloadsPath = app.getPath("downloads");
|
|
|
|
export const databasePath = path.join(
|
|
app.getPath("appData"),
|
|
"hydra",
|
|
"hydra.db"
|
|
);
|
|
|
|
export const logsPath = path.join(app.getPath("appData"), "hydra", "logs");
|
|
|
|
export const seedsPath = app.isPackaged
|
|
? path.join(process.resourcesPath, "seeds")
|
|
: path.join(__dirname, "..", "..", "seeds");
|