From 65212d673120cbe43e43cbc900abe17053cfe66d Mon Sep 17 00:00:00 2001 From: naskya Date: Sat, 21 Oct 2023 14:26:17 +0900 Subject: [PATCH] chore: change some default settings --- README.md | 2 ++ packages/client/src/store.ts | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index aaba31db7..7e5e5212d 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,8 @@ ## 細かい変更点 +- 投稿と投稿の間を空けて表示する設定をデフォルトでは無効に +- Enter キーのみでチャットを送信する設定をデフォルトでは無効に - 管理者アカウントも引っ越しできるように - デフォルトのアイコンの太さを細めに変更 - スタイルを選択する画面のサンプルのアイコンを星に変更 diff --git a/packages/client/src/store.ts b/packages/client/src/store.ts index 629a0cdb4..e8a40bb5e 100644 --- a/packages/client/src/store.ts +++ b/packages/client/src/store.ts @@ -243,7 +243,7 @@ export const defaultStore = markRaw( }, showGapBetweenNotesInTimeline: { where: "device", - default: true, + default: false, }, darkMode: { where: "device", @@ -315,7 +315,7 @@ export const defaultStore = markRaw( }, enterSendsMessage: { where: "device", - default: true, + default: false, }, showUpdates: { where: "device",