diff options
author | Ven <vendicated@riseup.net> | 2023-01-24 01:42:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-24 01:42:57 +0100 |
commit | b2ecb02335fa51a7c7eadab0acb3beb91c289802 (patch) | |
tree | 032a1461d001a5e9164289a31fb60f15ac282597 /src/api | |
parent | 25d32ce2922f276f1a7f67c8d3be978a8d360042 (diff) | |
download | Vencord-b2ecb02335fa51a7c7eadab0acb3beb91c289802.tar.gz Vencord-b2ecb02335fa51a7c7eadab0acb3beb91c289802.tar.bz2 Vencord-b2ecb02335fa51a7c7eadab0acb3beb91c289802.zip |
Make Windows Ctrl+Q feature optional; add opt-in auto update (#451)
Diffstat (limited to 'src/api')
-rw-r--r-- | src/api/settings.ts | 4 |
1 files changed, 4 insertions, 0 deletions
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: {} }; |