Merge branch 'develop'

This commit is contained in:
sim1222 2022-06-13 22:39:24 +09:00
commit fbe2d7dc69
2 changed files with 7 additions and 7 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "misskey", "name": "misskey",
"version": "12.111.1-simkey-v2", "version": "12.111.1-simkey-v3",
"codename": "indigo", "codename": "indigo",
"repository": { "repository": {
"type": "git", "type": "git",

View File

@ -29,7 +29,7 @@ export const defaultStore = markRaw(new Storage('base', {
}, },
defaultNoteVisibility: { defaultNoteVisibility: {
where: 'account', where: 'account',
default: 'home' default: 'public'
}, },
defaultNoteLocalOnly: { defaultNoteLocalOnly: {
where: 'account', where: 'account',
@ -82,7 +82,7 @@ export const defaultStore = markRaw(new Storage('base', {
}, },
visibility: { visibility: {
where: 'deviceAccount', where: 'deviceAccount',
default: 'home' as 'public' | 'home' | 'followers' | 'specified' default: 'public' as 'public' | 'home' | 'followers' | 'specified'
}, },
localOnly: { localOnly: {
where: 'deviceAccount', where: 'deviceAccount',
@ -147,15 +147,15 @@ export const defaultStore = markRaw(new Storage('base', {
}, },
disableDrawer: { disableDrawer: {
where: 'device', where: 'device',
default: false default: true
}, },
useBlurEffectForModal: { useBlurEffectForModal: {
where: 'device', where: 'device',
default: false default: true
}, },
useBlurEffect: { useBlurEffect: {
where: 'device', where: 'device',
default: false default: true
}, },
showFixedPostForm: { showFixedPostForm: {
where: 'device', where: 'device',
@ -191,7 +191,7 @@ export const defaultStore = markRaw(new Storage('base', {
}, },
reactionPickerHeight: { reactionPickerHeight: {
where: 'device', where: 'device',
default: 3 default: 4
}, },
reactionPickerUseDrawerForMobile: { reactionPickerUseDrawerForMobile: {
where: 'device', where: 'device',