This commit is contained in:
Fredrik Burmester
2024-10-01 17:42:09 +02:00
parent dd1f02a13b
commit 0acc1f03f0
12 changed files with 425 additions and 130 deletions

View File

@@ -73,7 +73,8 @@ export type Settings = {
forwardSkipTime: number;
rewindSkipTime: number;
optimizedVersionsServerUrl?: string | null;
downloadMethod?: "optimized" | "remux";
downloadMethod: "optimized" | "remux";
autoDownload: boolean;
};
/**
*
@@ -110,6 +111,7 @@ const loadSettings = async (): Promise<Settings> => {
rewindSkipTime: 10,
optimizedVersionsServerUrl: null,
downloadMethod: "remux",
autoDownload: false,
};
try {