[V1] Flatpak Release + Buffering Fix & Storage Management

This commit is contained in:
Youwes09
2026-02-22 13:37:02 -06:00
parent 7ab3cf3df3
commit d834e10fd8
21 changed files with 7591 additions and 49 deletions
+2
View File
@@ -50,6 +50,7 @@ export interface Settings {
autoStartServer: boolean;
preferredExtensionLang: string;
keybinds: Keybinds;
storageLimitGb: number | null;
}
export const DEFAULT_SETTINGS: Settings = {
@@ -76,6 +77,7 @@ export const DEFAULT_SETTINGS: Settings = {
autoStartServer: true,
preferredExtensionLang: "en",
keybinds: DEFAULT_KEYBINDS,
storageLimitGb: null,
};
interface Store {