Replace update notices with notifications (#558)

This commit is contained in:
Xinto
2023-03-19 13:21:26 +04:00
committed by GitHub
parent ea642d9e90
commit 4aff11421f
3 changed files with 28 additions and 20 deletions

View File

@ -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,