mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 23:33:09 +02:00
parent
395e18e584
commit
cabbe8c308
2 changed files with 23 additions and 1 deletions
|
@ -2,7 +2,6 @@
|
||||||
## 12.x.x (unreleased)
|
## 12.x.x (unreleased)
|
||||||
|
|
||||||
### Improvements
|
### Improvements
|
||||||
- Client: Preferences Registry
|
|
||||||
|
|
||||||
### Bugfixes
|
### Bugfixes
|
||||||
-
|
-
|
||||||
|
@ -10,6 +9,13 @@
|
||||||
You should also include the user name that made the change.
|
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)
|
## 12.118.0 (2022/08/07)
|
||||||
|
|
||||||
### Improvements
|
### Improvements
|
||||||
|
|
|
@ -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 a new issue