fix: 「設定のバックアップ」に一部の設定項目が含まれていない問題を修正 (#12366)
* fix: 一部の設定項目がバックアップに含まれていなかったのを修正 * update: CHANGELOG.md * remove: バックアップ不要な項目を削除
This commit is contained in:
		| @@ -19,7 +19,7 @@ | |||||||
| - Feat: モデレーターがユーザーのアイコンもしくはバナー画像を未設定状態にできる機能を追加 (cherry-pick from https://github.com/TeamNijimiss/misskey/commit/e0eb5a752f6e5616d6312bb7c9790302f9dbff83) | - Feat: モデレーターがユーザーのアイコンもしくはバナー画像を未設定状態にできる機能を追加 (cherry-pick from https://github.com/TeamNijimiss/misskey/commit/e0eb5a752f6e5616d6312bb7c9790302f9dbff83) | ||||||
|  |  | ||||||
| ### Client | ### Client | ||||||
| - | - fix: 「設定のバックアップ」で一部の項目がバックアップに含まれていなかった問題を修正 | ||||||
|  |  | ||||||
| ### Server | ### Server | ||||||
| - | - | ||||||
|   | |||||||
| @@ -54,22 +54,24 @@ import { miLocalStorage } from '@/local-storage.js'; | |||||||
| const { t, ts } = i18n; | const { t, ts } = i18n; | ||||||
|  |  | ||||||
| const defaultStoreSaveKeys: (keyof typeof defaultStore['state'])[] = [ | const defaultStoreSaveKeys: (keyof typeof defaultStore['state'])[] = [ | ||||||
|  | 	'collapseRenotes', | ||||||
| 	'menu', | 	'menu', | ||||||
| 	'visibility', | 	'visibility', | ||||||
| 	'localOnly', | 	'localOnly', | ||||||
| 	'statusbars', | 	'statusbars', | ||||||
| 	'widgets', | 	'widgets', | ||||||
| 	'tl', | 	'tl', | ||||||
|  | 	'pinnedUserLists', | ||||||
| 	'overridedDeviceKind', | 	'overridedDeviceKind', | ||||||
| 	'serverDisconnectedBehavior', | 	'serverDisconnectedBehavior', | ||||||
| 	'collapseRenotes', |  | ||||||
| 	'showNoteActionsOnlyHover', |  | ||||||
| 	'nsfw', | 	'nsfw', | ||||||
|  | 	'highlightSensitiveMedia', | ||||||
| 	'animation', | 	'animation', | ||||||
| 	'animatedMfm', | 	'animatedMfm', | ||||||
| 	'advancedMfm', | 	'advancedMfm', | ||||||
| 	'loadRawImages', | 	'loadRawImages', | ||||||
| 	'imageNewTab', | 	'imageNewTab', | ||||||
|  | 	'enableDataSaverMode', | ||||||
| 	'disableShowingAnimatedImages', | 	'disableShowingAnimatedImages', | ||||||
| 	'emojiStyle', | 	'emojiStyle', | ||||||
| 	'disableDrawer', | 	'disableDrawer', | ||||||
| @@ -89,9 +91,28 @@ const defaultStoreSaveKeys: (keyof typeof defaultStore['state'])[] = [ | |||||||
| 	'menuDisplay', | 	'menuDisplay', | ||||||
| 	'reportError', | 	'reportError', | ||||||
| 	'squareAvatars', | 	'squareAvatars', | ||||||
|  | 	'showAvatarDecorations', | ||||||
| 	'numberOfPageCache', | 	'numberOfPageCache', | ||||||
|  | 	'showNoteActionsOnlyHover', | ||||||
|  | 	'showClipButtonInNoteFooter', | ||||||
|  | 	'reactionsDisplaySize', | ||||||
|  | 	'forceShowAds', | ||||||
| 	'aiChanMode', | 	'aiChanMode', | ||||||
|  | 	'devMode', | ||||||
| 	'mediaListWithOneImageAppearance', | 	'mediaListWithOneImageAppearance', | ||||||
|  | 	'notificationPosition', | ||||||
|  | 	'notificationStackAxis', | ||||||
|  | 	'enableCondensedLineForAcct', | ||||||
|  | 	'keepScreenOn', | ||||||
|  | 	'defaultWithReplies', | ||||||
|  | 	'disableStreamingTimeline', | ||||||
|  | 	'useGroupedNotifications', | ||||||
|  | 	'sound_masterVolume', | ||||||
|  | 	'sound_note', | ||||||
|  | 	'sound_noteMy', | ||||||
|  | 	'sound_notification', | ||||||
|  | 	'sound_antenna', | ||||||
|  | 	'sound_channel', | ||||||
| ]; | ]; | ||||||
| const coldDeviceStorageSaveKeys: (keyof typeof ColdDeviceStorage.default)[] = [ | const coldDeviceStorageSaveKeys: (keyof typeof ColdDeviceStorage.default)[] = [ | ||||||
| 	'lightTheme', | 	'lightTheme', | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 yukineko
					yukineko