fix: update default store.ts

This commit is contained in:
こけっち 2022-03-29 02:31:29 +09:00
parent ef4f49778e
commit 982896f7be
No known key found for this signature in database
GPG Key ID: 21460619C5FC4DD1

View File

@ -25,11 +25,11 @@ export const defaultStore = markRaw(new Storage('base', {
}, },
rememberNoteVisibility: { rememberNoteVisibility: {
where: 'account', where: 'account',
default: false default: true
}, },
defaultNoteVisibility: { defaultNoteVisibility: {
where: 'account', where: 'account',
default: 'public' default: 'home'
}, },
defaultNoteLocalOnly: { defaultNoteLocalOnly: {
where: 'account', where: 'account',
@ -82,7 +82,7 @@ export const defaultStore = markRaw(new Storage('base', {
}, },
visibility: { visibility: {
where: 'deviceAccount', where: 'deviceAccount',
default: 'public' as 'public' | 'home' | 'followers' | 'specified' default: 'home' as 'public' | 'home' | 'followers' | 'specified'
}, },
localOnly: { localOnly: {
where: 'deviceAccount', where: 'deviceAccount',
@ -151,11 +151,11 @@ export const defaultStore = markRaw(new Storage('base', {
}, },
useBlurEffectForModal: { useBlurEffectForModal: {
where: 'device', where: 'device',
default: true default: false
}, },
useBlurEffect: { useBlurEffect: {
where: 'device', where: 'device',
default: true default: false
}, },
showFixedPostForm: { showFixedPostForm: {
where: 'device', where: 'device',
@ -167,7 +167,7 @@ export const defaultStore = markRaw(new Storage('base', {
}, },
useReactionPickerForContextMenu: { useReactionPickerForContextMenu: {
where: 'device', where: 'device',
default: false default: true
}, },
showGapBetweenNotesInTimeline: { showGapBetweenNotesInTimeline: {
where: 'device', where: 'device',
@ -187,15 +187,15 @@ export const defaultStore = markRaw(new Storage('base', {
}, },
reactionPickerWidth: { reactionPickerWidth: {
where: 'device', where: 'device',
default: 1 default: 3
}, },
reactionPickerHeight: { reactionPickerHeight: {
where: 'device', where: 'device',
default: 2 default: 3
}, },
reactionPickerUseDrawerForMobile: { reactionPickerUseDrawerForMobile: {
where: 'device', where: 'device',
default: true, default: false,
}, },
recentlyUsedEmojis: { recentlyUsedEmojis: {
where: 'device', where: 'device',