aboutsummaryrefslogtreecommitdiff
path: root/src/api
diff options
context:
space:
mode:
authorXinto <48173186+X1nto@users.noreply.github.com>2023-03-19 13:21:26 +0400
committerGitHub <noreply@github.com>2023-03-19 09:21:26 +0000
commit4aff11421f1cccaf34a7c983fd8dc9a841042947 (patch)
treee7313c34ddf2312493a86afd6f7309a3c81f7e63 /src/api
parentea642d9e901d42f0f5f73ba1f9cfeb3d1e595332 (diff)
downloadVencord-4aff11421f1cccaf34a7c983fd8dc9a841042947.tar.gz
Vencord-4aff11421f1cccaf34a7c983fd8dc9a841042947.tar.bz2
Vencord-4aff11421f1cccaf34a7c983fd8dc9a841042947.zip
Replace update notices with notifications (#558)
Diffstat (limited to 'src/api')
-rw-r--r--src/api/settings.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/api/settings.ts b/src/api/settings.ts
index 1ca2611..0ebfe1d 100644
--- a/src/api/settings.ts
+++ b/src/api/settings.ts
@@ -28,6 +28,7 @@ const logger = new Logger("Settings");
export interface Settings {
notifyAboutUpdates: boolean;
autoUpdate: boolean;
+ autoUpdateNotification: boolean,
useQuickCss: boolean;
enableReactDevtools: boolean;
themeLinks: string[];
@@ -52,6 +53,7 @@ export interface Settings {
const DefaultSettings: Settings = {
notifyAboutUpdates: true,
autoUpdate: false,
+ autoUpdateNotification: true,
useQuickCss: true,
themeLinks: [],
enableReactDevtools: false,