Merge branch 'develop'
This commit is contained in:
commit
46ec0303b7
|
@ -2,7 +2,6 @@
|
||||||
## 12.x.x (unreleased)
|
## 12.x.x (unreleased)
|
||||||
|
|
||||||
### Improvements
|
### Improvements
|
||||||
- Client: Preferences Registry
|
|
||||||
|
|
||||||
### Bugfixes
|
### Bugfixes
|
||||||
-
|
-
|
||||||
|
@ -10,6 +9,11 @@
|
||||||
You should also include the user name that made the change.
|
You should also include the user name that made the change.
|
||||||
-->
|
-->
|
||||||
|
|
||||||
|
## 12.118.1 (2022/08/08)
|
||||||
|
|
||||||
|
### Bugfixes
|
||||||
|
- Client: can not show some setting pages @syuilo
|
||||||
|
|
||||||
## 12.118.0 (2022/08/07)
|
## 12.118.0 (2022/08/07)
|
||||||
|
|
||||||
### Improvements
|
### Improvements
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "misskey",
|
"name": "misskey",
|
||||||
"version": "12.118.0",
|
"version": "12.118.1",
|
||||||
"codename": "indigo",
|
"codename": "indigo",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|
|
@ -105,6 +105,10 @@ export const routes = [{
|
||||||
path: '/sounds',
|
path: '/sounds',
|
||||||
name: 'sounds',
|
name: 'sounds',
|
||||||
component: page(() => import('./pages/settings/sounds.vue')),
|
component: page(() => import('./pages/settings/sounds.vue')),
|
||||||
|
}, {
|
||||||
|
path: '/plugin/install',
|
||||||
|
name: 'plugin',
|
||||||
|
component: page(() => import('./pages/settings/plugin.install.vue')),
|
||||||
}, {
|
}, {
|
||||||
path: '/plugin',
|
path: '/plugin',
|
||||||
name: 'plugin',
|
name: 'plugin',
|
||||||
|
@ -149,6 +153,18 @@ export const routes = [{
|
||||||
path: '/preferences-backups',
|
path: '/preferences-backups',
|
||||||
name: 'preferences-backups',
|
name: 'preferences-backups',
|
||||||
component: page(() => import('./pages/settings/preferences-backups.vue')),
|
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',
|
path: '/other',
|
||||||
name: 'other',
|
name: 'other',
|
||||||
|
|
Loading…
Reference in New Issue