release: publish Multi-Debrid Downloader v2.0.14

Add live English and German localization, queue availability and metadata resolution, responsive package controls, polished navigation and drag interactions, clearer history and account states, and a rebuilt public README. Harden Windows packaging with verified icons and version metadata, archive inspection, and expanded release tests.
This commit is contained in:
Sucukdeluxe
2026-08-10 19:42:49 +02:00
parent 069babfd54
commit a5758aa905
61 changed files with 9117 additions and 6754 deletions
+9 -6
View File
@@ -26,7 +26,8 @@ export type DebridProvider =
| "debridlink"
| "linksnappy";
export type DebridFallbackProvider = DebridProvider | "none";
export type AppTheme = "dark" | "light";
export type AppTheme = "dark" | "light";
export type AppLanguage = "en" | "de";
export type PackagePriority = "high" | "normal" | "low";
export type ExtractCpuPriority = "high" | "middle" | "low";
export type HistoryRetentionMode = "never" | "session" | "permanent";
@@ -66,8 +67,9 @@ export interface DebridAccountStatus {
checkedAt: number;
}
export interface AppSettings {
token: string;
export interface AppSettings {
language: AppLanguage;
token: string;
realDebridUseWebLogin: boolean;
megaLogin: string;
megaPassword: string;
@@ -143,9 +145,10 @@ export interface AppSettings {
totalDownloadedAllTime: number;
totalCompletedFilesAllTime: number;
totalRuntimeAllTimeMs: number;
bandwidthSchedules: BandwidthScheduleEntry[];
columnOrder: string[];
extractCpuPriority: ExtractCpuPriority;
bandwidthSchedules: BandwidthScheduleEntry[];
columnOrder: string[];
columnOrderVersion?: number;
extractCpuPriority: ExtractCpuPriority;
autoExtractWhenStopped: boolean;
disabledProviders: DebridProvider[];
hosterRouting: Record<string, DebridProvider>;