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