diff options
| author | おさむのひと <46447427+samunohito@users.noreply.github.com> | 2023-11-26 16:12:02 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-26 16:12:02 +0900 |
| commit | c9503da8f8e4a67cbe7ba88722b3c3893f9ab4e4 (patch) | |
| tree | 2298d7c984b6097d758a81b431547b19461d3b79 /packages/frontend/src/store.ts | |
| parent | chore: create AudioContext when it is needed (#12460) (diff) | |
| download | misskey-c9503da8f8e4a67cbe7ba88722b3c3893f9ab4e4.tar.gz misskey-c9503da8f8e4a67cbe7ba88722b3c3893f9ab4e4.tar.bz2 misskey-c9503da8f8e4a67cbe7ba88722b3c3893f9ab4e4.zip | |
サウンド設定に「サウンドを出力しない」と「Misskeyがアクティブな時のみサウンドを出力する」を追加 (#12342)
Co-authored-by: osamu <46447427+sam-osamu@users.noreply.github.com>
Diffstat (limited to 'packages/frontend/src/store.ts')
| -rw-r--r-- | packages/frontend/src/store.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/packages/frontend/src/store.ts b/packages/frontend/src/store.ts index f2ed4e7c0b..40fb1dde76 100644 --- a/packages/frontend/src/store.ts +++ b/packages/frontend/src/store.ts @@ -391,6 +391,14 @@ export const defaultStore = markRaw(new Storage('base', { where: 'device', default: 0.3, }, + sound_notUseSound: { + where: 'device', + default: false, + }, + sound_useSoundOnlyWhenActive: { + where: 'device', + default: false, + }, sound_note: { where: 'device', default: { type: 'syuilo/n-aec', volume: 1 }, |