From b2ecb02335fa51a7c7eadab0acb3beb91c289802 Mon Sep 17 00:00:00 2001 From: Ven Date: Tue, 24 Jan 2023 01:42:57 +0100 Subject: Make Windows Ctrl+Q feature optional; add opt-in auto update (#451) --- src/api/settings.ts | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/api') diff --git a/src/api/settings.ts b/src/api/settings.ts index 9bae8b7..4cdb24b 100644 --- a/src/api/settings.ts +++ b/src/api/settings.ts @@ -27,10 +27,12 @@ import plugins from "~plugins"; const logger = new Logger("Settings"); export interface Settings { notifyAboutUpdates: boolean; + autoUpdate: boolean; useQuickCss: boolean; enableReactDevtools: boolean; themeLinks: string[]; frameless: boolean; + winCtrlQ: boolean; plugins: { [plugin: string]: { enabled: boolean; @@ -41,10 +43,12 @@ export interface Settings { const DefaultSettings: Settings = { notifyAboutUpdates: true, + autoUpdate: false, useQuickCss: true, themeLinks: [], enableReactDevtools: false, frameless: false, + winCtrlQ: false, plugins: {} }; -- cgit