mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-09 06:33:03 -04:00
feat(Updater): Fixes
This commit is contained in:
parent
d925fe4922
commit
bb34833b3c
3 changed files with 17 additions and 9 deletions
|
@ -30,7 +30,6 @@ import plugins from "~plugins";
|
|||
const logger = new Logger("Settings");
|
||||
export interface Settings {
|
||||
autoUpdate: boolean;
|
||||
autoUpdateRelaunch: boolean;
|
||||
autoUpdateNotification: boolean;
|
||||
useQuickCss: boolean;
|
||||
enableReactDevtools: boolean;
|
||||
|
@ -39,6 +38,7 @@ export interface Settings {
|
|||
enabledThemeLinks: string[];
|
||||
frameless: boolean;
|
||||
transparent: boolean;
|
||||
updateRelaunch: boolean;
|
||||
winCtrlQ: boolean;
|
||||
macosVibrancyStyle:
|
||||
| "content"
|
||||
|
@ -88,7 +88,6 @@ export interface Settings {
|
|||
|
||||
const DefaultSettings: Settings = {
|
||||
autoUpdate: true,
|
||||
autoUpdateRelaunch: false,
|
||||
autoUpdateNotification: true,
|
||||
useQuickCss: true,
|
||||
themeLinks: [],
|
||||
|
@ -100,6 +99,7 @@ const DefaultSettings: Settings = {
|
|||
winCtrlQ: false,
|
||||
macosVibrancyStyle: undefined,
|
||||
disableMinSize: false,
|
||||
updateRelaunch: false,
|
||||
winNativeTitleBar: false,
|
||||
plugins: {},
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue