mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-01 10:23:33 +00:00
Add setting to disable auto update
This commit is contained in:
parent
6ccef6e515
commit
293d8ec584
5 changed files with 53 additions and 5 deletions
|
|
@ -6,3 +6,4 @@ export * from './playlist.store';
|
|||
export * from './album-list-data.store';
|
||||
export * from './album-artist-list-data.store';
|
||||
export * from './full-screen-player.store';
|
||||
export * from './settings.store';
|
||||
|
|
|
|||
|
|
@ -71,6 +71,7 @@ export interface SettingsState {
|
|||
songs: DataTableProps;
|
||||
};
|
||||
window: {
|
||||
disableAutoUpdate: boolean;
|
||||
exitToTray: boolean;
|
||||
minimizeToTray: boolean;
|
||||
windowBarStyle: Platform;
|
||||
|
|
@ -245,6 +246,7 @@ export const useSettingsStore = create<SettingsSlice>()(
|
|||
},
|
||||
},
|
||||
window: {
|
||||
disableAutoUpdate: true,
|
||||
exitToTray: false,
|
||||
minimizeToTray: false,
|
||||
windowBarStyle: Platform.WEB,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue