From ae89b3daa25bee37bd252f917f855d2996b53ef8 Mon Sep 17 00:00:00 2001 From: moris Date: Sat, 8 Feb 2025 21:54:30 +0900 Subject: [PATCH] =?UTF-8?q?=E3=83=87=E3=83=95=E3=82=A9=E3=83=AB=E3=83=88?= =?UTF-8?q?=E5=80=A4=E3=81=AE=E3=82=AB=E3=82=B9=E3=82=BF=E3=83=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/frontend/src/store.ts | 34 ++++++++++++++++------------------ 1 file changed, 16 insertions(+), 18 deletions(-) diff --git a/packages/frontend/src/store.ts b/packages/frontend/src/store.ts index dbe90dba86..87509a5dee 100644 --- a/packages/frontend/src/store.ts +++ b/packages/frontend/src/store.ts @@ -145,15 +145,13 @@ export const defaultStore = markRaw(new Storage('base', { where: 'deviceAccount', default: [ 'notifications', + 'favorites', 'clips', 'drive', - 'followRequests', - '-', - 'explore', - 'announcements', 'search', - '-', 'ui', + 'lookup', + 'reload', ], }, visibility: { @@ -212,7 +210,7 @@ export const defaultStore = markRaw(new Storage('base', { }, serverDisconnectedBehavior: { where: 'device', - default: 'quiet' as 'quiet' | 'reload' | 'dialog', + default: 'reload' as 'quiet' | 'reload' | 'dialog', }, nsfw: { where: 'device', @@ -220,7 +218,7 @@ export const defaultStore = markRaw(new Storage('base', { }, highlightSensitiveMedia: { where: 'device', - default: false, + default: true, }, animation: { where: 'device', @@ -296,19 +294,19 @@ export const defaultStore = markRaw(new Storage('base', { }, instanceTicker: { where: 'device', - default: 'remote' as 'none' | 'remote' | 'always', + default: 'none' as 'none' | 'remote' | 'always', }, emojiPickerScale: { where: 'device', - default: 1, + default: 2, }, emojiPickerWidth: { where: 'device', - default: 1, + default: 4, }, emojiPickerHeight: { where: 'device', - default: 2, + default: 3, }, emojiPickerStyle: { where: 'device', @@ -328,7 +326,7 @@ export const defaultStore = markRaw(new Storage('base', { }, menuDisplay: { where: 'device', - default: 'sideFull' as 'sideFull' | 'sideIcon' | 'top', + default: 'sideIcon' as 'sideFull' | 'sideIcon' | 'top', }, reportError: { where: 'device', @@ -356,7 +354,7 @@ export const defaultStore = markRaw(new Storage('base', { }, numberOfPageCache: { where: 'device', - default: 3, + default: 2, }, showNoteActionsOnlyHover: { where: 'device', @@ -372,7 +370,7 @@ export const defaultStore = markRaw(new Storage('base', { }, limitWidthOfReaction: { where: 'device', - default: true, + default: false, }, forceShowAds: { where: 'device', @@ -388,7 +386,7 @@ export const defaultStore = markRaw(new Storage('base', { }, mediaListWithOneImageAppearance: { where: 'device', - default: 'expand' as 'expand' | '16_9' | '1_1' | '2_3', + default: '16_9' as 'expand' | '16_9' | '1_1' | '2_3', }, notificationPosition: { where: 'device', @@ -426,8 +424,8 @@ export const defaultStore = markRaw(new Storage('base', { where: 'device', default: { media: false, - avatar: false, - urlPreview: false, + avatar: true, + urlPreview: true, code: false, } as Record, }, @@ -448,7 +446,7 @@ export const defaultStore = markRaw(new Storage('base', { }, enableHorizontalSwipe: { where: 'device', - default: true, + default: false, }, useNativeUIForVideoAudioPlayer: { where: 'device',