mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-01 18:33:33 +00:00
[bugfix]: default go libsecret, support changing secret store (#493)
* [bugfix]: default go libsecret, support changing secret store * update readme and rename libsecret
This commit is contained in:
parent
92478b5ca5
commit
0a658e3a22
7 changed files with 79 additions and 2 deletions
|
|
@ -174,6 +174,7 @@ export interface SettingsState {
|
|||
externalLinks: boolean;
|
||||
followSystemTheme: boolean;
|
||||
language: string;
|
||||
passwordStore?: string;
|
||||
playButtonBehavior: Play;
|
||||
resume: boolean;
|
||||
showQueueDrawerButton: boolean;
|
||||
|
|
@ -288,6 +289,7 @@ const initialState: SettingsState = {
|
|||
externalLinks: true,
|
||||
followSystemTheme: false,
|
||||
language: 'en',
|
||||
passwordStore: undefined,
|
||||
playButtonBehavior: Play.NOW,
|
||||
resume: false,
|
||||
showQueueDrawerButton: false,
|
||||
|
|
@ -600,7 +602,7 @@ export const useSettingsStore = create<SettingsSlice>()(
|
|||
return merge(currentState, persistedState);
|
||||
},
|
||||
name: 'store_settings',
|
||||
version: 7,
|
||||
version: 8,
|
||||
},
|
||||
),
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue