diff --git a/package.json b/package.json index 956556979..dde83503d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "misskey", - "version": "12.118.0-calc.b4", + "version": "12.118.0-calc.3.b4", "codename": "indigo", "repository": { "type": "git", diff --git a/packages/client/src/router.ts b/packages/client/src/router.ts index be6d5d049..c02302fd1 100644 --- a/packages/client/src/router.ts +++ b/packages/client/src/router.ts @@ -93,6 +93,14 @@ export const routes = [{ path: '/theme', name: 'theme', component: page(() => import('./pages/settings/theme.vue')), + }, { + path: '/custom-css', + name: 'custom-css', + component: page(() => import('./pages/settings/custom-css.vue')), + }, { + path: '/account-info', + name: 'account-info', + component: page(() => import('./pages/settings/account-info.vue')), }, { path: '/navbar', name: 'navbar', @@ -348,6 +356,10 @@ export const routes = [{ path: '/other-settings', name: 'other-settings', component: page(() => import('./pages/admin/other-settings.vue')), + }, { + path: '/other-settings', + name: 'other-settings', + component: page(() => import('./pages/admin/custom-css.vue')), }, { path: '/', component: page(() => import('./pages/_empty_.vue')), diff --git a/packages/client/src/ui/visitor/kanban.vue b/packages/client/src/ui/visitor/kanban.vue index f191fc059..7c2181eae 100644 --- a/packages/client/src/ui/visitor/kanban.vue +++ b/packages/client/src/ui/visitor/kanban.vue @@ -33,7 +33,7 @@ - + diff --git a/packages/client/src/widgets/activity.calendar.vue b/packages/client/src/widgets/activity.calendar.vue index 33b95b00d..2fcb7255c 100644 --- a/packages/client/src/widgets/activity.calendar.vue +++ b/packages/client/src/widgets/activity.calendar.vue @@ -19,7 +19,7 @@ rx="1" ry="1" fill="none" stroke-width="0.1" - stroke="#f73520"/> + stroke="#eb6f92"/> @@ -52,6 +52,7 @@ props.activity.slice().forEach((d, i) => { d.v = peak === 0 ? 0 : d.total / (peak / 2); if (d.v > 1) d.v = 1; + // TODO: Make Rose Pine const ch = d.date.weekday === 0 || d.date.weekday === 6 ? 275 : 170; const cs = d.v * 100; const cl = 15 + ((1 - d.v) * 80);