mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-02 19:01:40 +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
|
|
@ -2,6 +2,10 @@ import { Divider, Stack } from '@mantine/core';
|
|||
import { UpdateSettings } from '/@/renderer/features/settings/components/window/update-settings';
|
||||
import { WindowSettings } from '/@/renderer/features/settings/components/window/window-settings';
|
||||
import { DiscordSettings } from '/@/renderer/features/settings/components/window/discord-settings';
|
||||
import isElectron from 'is-electron';
|
||||
import { PasswordSettings } from '/@/renderer/features/settings/components/window/password-settings';
|
||||
|
||||
const utils = isElectron() ? window.electron.utils : null;
|
||||
|
||||
export const WindowTab = () => {
|
||||
return (
|
||||
|
|
@ -11,6 +15,12 @@ export const WindowTab = () => {
|
|||
<DiscordSettings />
|
||||
<Divider />
|
||||
<UpdateSettings />
|
||||
{utils?.isLinux() && (
|
||||
<>
|
||||
<Divider />
|
||||
<PasswordSettings />
|
||||
</>
|
||||
)}
|
||||
</Stack>
|
||||
);
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue