diff --git a/CHANGELOG.md b/CHANGELOG.md index dd2b40c9f5cc..07ea2ca2d008 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ ### General ### Client +- Enhance: 新規アカウントの初期設定を変更しました。(既存のアカウントには影響しません。) + - 設定/その他 の`フォローする際、デフォルトで返信をTLに含むようにする`が初めから有効になります。 + - 初めに開かれるTLがソーシャルタイムラインになります。 + - ドライブにアップロードする画像の初期設定(設定/ドライブ)の`画像を縮小する`が初めから無効になります。 ### Server diff --git a/packages/frontend/src/store.ts b/packages/frontend/src/store.ts index 1c824a564723..8367d4b235b3 100644 --- a/packages/frontend/src/store.ts +++ b/packages/frontend/src/store.ts @@ -116,7 +116,7 @@ export const defaultStore = markRaw(new Storage('base', { }, imageCompressionMode: { where: 'account', - default: 'resizeCompress' as 'resizeCompress' | 'noResizeCompress' | 'resizeCompressLossy' | 'noResizeCompressLossy', + default: 'noResizeCompress' as 'resizeCompress' | 'noResizeCompress' | 'resizeCompressLossy' | 'noResizeCompressLossy', }, imageResizeSize: { where: 'account', @@ -193,7 +193,7 @@ export const defaultStore = markRaw(new Storage('base', { tl: { where: 'deviceAccount', default: { - src: 'home' as 'home' | 'local' | 'social' | 'global' | 'vmimi-relay' | 'vmimi-relay-social' | `list:${string}`, + src: 'social' as 'home' | 'local' | 'social' | 'global' | 'vmimi-relay' | 'vmimi-relay-social' | `list:${string}`, userList: null as Misskey.entities.UserList | null, filter: { withReplies: true, @@ -419,7 +419,7 @@ export const defaultStore = markRaw(new Storage('base', { }, defaultWithReplies: { where: 'account', - default: false, + default: true, }, disableStreamingTimeline: { where: 'device',