Skip to content

Commit

Permalink
Merge pull request #215 from niri-la/change-default-settings
Browse files Browse the repository at this point in the history
Change default settings
  • Loading branch information
Sayamame-beans authored Jul 21, 2024
2 parents 139fe04 + 725ae02 commit 23cf138
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
### General

### Client
- Enhance: 新規アカウントの初期設定を変更しました。(既存のアカウントには影響しません。)
- 設定/その他 の`フォローする際、デフォルトで返信をTLに含むようにする`が初めから有効になります。
- 初めに開かれるTLがソーシャルタイムラインになります。
- ドライブにアップロードする画像の初期設定(設定/ドライブ)の`画像を縮小する`が初めから無効になります。

### Server

Expand Down
6 changes: 3 additions & 3 deletions packages/frontend/src/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -419,7 +419,7 @@ export const defaultStore = markRaw(new Storage('base', {
},
defaultWithReplies: {
where: 'account',
default: false,
default: true,
},
disableStreamingTimeline: {
where: 'device',
Expand Down

0 comments on commit 23cf138

Please sign in to comment.