mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-18 00:33:59 +00:00
# Conflicts: # src/locales/en/translation.json # src/locales/pt-BR/translation.json # src/main/entity/user-preferences.entity.ts # src/main/events/auth/sign-out.ts # src/main/knex-client.ts # src/main/main.ts # src/main/services/download/download-manager.ts # src/main/services/process-watcher.ts # src/renderer/src/pages/downloads/download-group.tsx # src/types/index.ts # src/types/torbox.types.ts
52 lines
921 B
TypeScript
52 lines
921 B
TypeScript
export enum Downloader {
|
|
RealDebrid,
|
|
Torrent,
|
|
Gofile,
|
|
PixelDrain,
|
|
Qiwi,
|
|
Datanodes,
|
|
TorBox,
|
|
}
|
|
|
|
export enum DownloadSourceStatus {
|
|
UpToDate,
|
|
Errored,
|
|
}
|
|
|
|
export enum CatalogueCategory {
|
|
Hot = "hot",
|
|
Weekly = "weekly",
|
|
Achievements = "achievements",
|
|
}
|
|
|
|
export enum SteamContentDescriptor {
|
|
SomeNudityOrSexualContent = 1,
|
|
FrequenceViolenceOrGore = 2,
|
|
AdultOnlySexualContent = 3,
|
|
FrequentNudityOrSexualContent = 4,
|
|
GeneralMatureContent = 5,
|
|
}
|
|
|
|
export enum Cracker {
|
|
codex = "CODEX",
|
|
rune = "RUNE",
|
|
onlineFix = "OnlineFix",
|
|
goldberg = "Goldberg",
|
|
userstats = "user_stats",
|
|
rld = "RLD!",
|
|
empress = "EMPRESS",
|
|
skidrow = "SKIDROW",
|
|
creamAPI = "CreamAPI",
|
|
smartSteamEmu = "SmartSteamEmu",
|
|
_3dm = "3dm",
|
|
flt = "FLT",
|
|
rle = "RLE",
|
|
razor1911 = "RAZOR1911",
|
|
}
|
|
|
|
export enum AuthPage {
|
|
SignIn = "/",
|
|
UpdateEmail = "/update-email",
|
|
UpdatePassword = "/update-password",
|
|
}
|