From 4aff11421f1cccaf34a7c983fd8dc9a841042947 Mon Sep 17 00:00:00 2001 From: Xinto <48173186+X1nto@users.noreply.github.com> Date: Sun, 19 Mar 2023 13:21:26 +0400 Subject: Replace update notices with notifications (#558) --- src/api/settings.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/api') 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, -- cgit