From cabbe8c308e0b021cc8f048e9854c7a83783445e Mon Sep 17 00:00:00 2001 From: syuilo Date: Sun, 7 Aug 2022 11:16:22 +0900 Subject: [PATCH 1/2] fix(client): cannot show some setting pages Fix #9043 --- CHANGELOG.md | 8 +++++++- packages/client/src/router.ts | 16 ++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f99af88b..e7bba3695 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,6 @@ ## 12.x.x (unreleased) ### Improvements -- Client: Preferences Registry ### Bugfixes - @@ -10,6 +9,13 @@ You should also include the user name that made the change. --> +## 12.x.x (unreleased) + +### Improvements + +### Bugfixes +- Client: can not show some setting pages @syuilo + ## 12.118.0 (2022/08/07) ### Improvements diff --git a/packages/client/src/router.ts b/packages/client/src/router.ts index 93bea0b2f..37a8fd3dc 100644 --- a/packages/client/src/router.ts +++ b/packages/client/src/router.ts @@ -105,6 +105,10 @@ export const routes = [{ path: '/sounds', name: 'sounds', component: page(() => import('./pages/settings/sounds.vue')), + }, { + path: '/plugin/install', + name: 'plugin', + component: page(() => import('./pages/settings/plugin.install.vue')), }, { path: '/plugin', name: 'plugin', @@ -149,6 +153,18 @@ export const routes = [{ path: '/preferences-backups', name: 'preferences-backups', component: page(() => import('./pages/settings/preferences-backups.vue')), + }, { + path: '/custom-css', + name: 'general', + component: page(() => import('./pages/settings/custom-css.vue')), + }, { + path: '/account-info', + name: 'other', + component: page(() => import('./pages/settings/account-info.vue')), + }, { + path: '/delete-account', + name: 'other', + component: page(() => import('./pages/settings/delete-account.vue')), }, { path: '/other', name: 'other', From 55220a31e888eef5c68361d21dd472fafe7519cf Mon Sep 17 00:00:00 2001 From: syuilo Date: Mon, 8 Aug 2022 11:38:45 +0900 Subject: [PATCH 2/2] 12.118.1 --- CHANGELOG.md | 4 +--- package.json | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e7bba3695..58d79c52b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,9 +9,7 @@ You should also include the user name that made the change. --> -## 12.x.x (unreleased) - -### Improvements +## 12.118.1 (2022/08/08) ### Bugfixes - Client: can not show some setting pages @syuilo diff --git a/package.json b/package.json index 65f5fb24b..afdbc801f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "misskey", - "version": "12.118.0", + "version": "12.118.1", "codename": "indigo", "repository": { "type": "git",