optimize default settings

This commit is contained in:
fly_mc 2024-09-16 17:22:48 +08:00
parent 226fe82dbf
commit 5dfdc6b318

View file

@ -220,7 +220,7 @@ export const defaultStore = markRaw(new Storage('base', {
}, },
animatedMfm: { animatedMfm: {
where: 'device', where: 'device',
default: false, default: true,
}, },
advancedMfm: { advancedMfm: {
where: 'device', where: 'device',
@ -228,11 +228,11 @@ export const defaultStore = markRaw(new Storage('base', {
}, },
showReactionsCount: { showReactionsCount: {
where: 'device', where: 'device',
default: false, default: true,
}, },
enableQuickAddMfmFunction: { enableQuickAddMfmFunction: {
where: 'device', where: 'device',
default: false, default: true,
}, },
loadRawImages: { loadRawImages: {
where: 'device', where: 'device',
@ -280,7 +280,7 @@ export const defaultStore = markRaw(new Storage('base', {
}, },
showGapBetweenNotesInTimeline: { showGapBetweenNotesInTimeline: {
where: 'device', where: 'device',
default: false, default: true,
}, },
darkMode: { darkMode: {
where: 'device', where: 'device',
@ -404,7 +404,7 @@ export const defaultStore = markRaw(new Storage('base', {
}, },
defaultWithReplies: { defaultWithReplies: {
where: 'account', where: 'account',
default: false, default: true,
}, },
disableStreamingTimeline: { disableStreamingTimeline: {
where: 'device', where: 'device',
@ -489,7 +489,7 @@ export const defaultStore = markRaw(new Storage('base', {
}, },
sound_reaction: { sound_reaction: {
where: 'device', where: 'device',
default: { type: 'syuilo/bubble2', volume: 1 } as SoundStore, default: { type: 'syuilo/bubble1', volume: 1 } as SoundStore,
}, },
})); }));