mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-28 10:46:43 -06:00
optimize default settings
This commit is contained in:
parent
226fe82dbf
commit
5dfdc6b318
1 changed files with 6 additions and 6 deletions
|
@ -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,
|
||||||
},
|
},
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue