mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-15 08:23:02 -03:00
- Introduced new translations for banner actions including "Change banner", "Replace banner", "Remove banner", and confirmation prompts in English, Spanish, Portuguese, and Russian. - Updated the UploadBackgroundImageButton component to support banner management with options to change, replace, or remove the banner. - Implemented a confirmation modal for removing the banner. - Enhanced user experience with animations for dropdown menus and button interactions. - Removed deprecated Qiwi downloader support and added Rootz downloader integration.
70 lines
1.5 KiB
TypeScript
70 lines
1.5 KiB
TypeScript
export enum Downloader {
|
|
RealDebrid,
|
|
Torrent,
|
|
Gofile,
|
|
PixelDrain,
|
|
Datanodes,
|
|
Mediafire,
|
|
TorBox,
|
|
Hydra,
|
|
Buzzheavier,
|
|
FuckingFast,
|
|
VikingFile,
|
|
Rootz,
|
|
}
|
|
|
|
export enum DownloadSourceStatus {
|
|
PendingMatching = "PENDING_MATCHING",
|
|
Matched = "MATCHED",
|
|
Matching = "MATCHING",
|
|
Failed = "FAILED",
|
|
}
|
|
|
|
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",
|
|
Steam = "Steam",
|
|
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",
|
|
}
|
|
|
|
export enum DownloadError {
|
|
NotCachedOnRealDebrid = "download_error_not_cached_on_real_debrid",
|
|
NotCachedOnTorBox = "download_error_not_cached_on_torbox",
|
|
GofileQuotaExceeded = "download_error_gofile_quota_exceeded",
|
|
RealDebridAccountNotAuthorized = "download_error_real_debrid_account_not_authorized",
|
|
NotCachedOnHydra = "download_error_not_cached_on_hydra",
|
|
}
|
|
|
|
export const FILE_EXTENSIONS_TO_EXTRACT = [".rar", ".zip", ".7z"];
|