diff --git a/CALCKEY.md b/CALCKEY.md index 522b34286b..4b079659b0 100644 --- a/CALCKEY.md +++ b/CALCKEY.md @@ -39,7 +39,7 @@ - Saner defaults - Recommended instances timeline - Improve mobile UX - - Swipe through timelines on mobile + - Swipe through timelines/notifications on mobile - Redesigned mobile bottom nav bar - Post button on TL - Star as default reaction diff --git a/package.json b/package.json index c445b4cd71..dd4df64155 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "misskey", - "version": "12.118.1-calc.11.4", + "version": "12.118.1-calc.11.5", "codename": "aqua", "repository": { "type": "git", diff --git a/packages/client/src/components/cw-button.vue b/packages/client/src/components/cw-button.vue index 87a03cd5aa..96b89d8627 100644 --- a/packages/client/src/components/cw-button.vue +++ b/packages/client/src/components/cw-button.vue @@ -49,7 +49,8 @@ const toggle = () => { transition: background-color 0.25s ease-in-out; &:hover { - background: lighten(var(--cwBg), 10%); + background: var(--cwFg); + color: var(--cwBg); } > span { diff --git a/packages/client/src/pages/notifications.vue b/packages/client/src/pages/notifications.vue index a3539ac7e1..b290203f08 100644 --- a/packages/client/src/pages/notifications.vue +++ b/packages/client/src/pages/notifications.vue @@ -16,19 +16,29 @@ diff --git a/packages/client/src/pages/timeline.vue b/packages/client/src/pages/timeline.vue index d5cab01e38..82fac41053 100644 --- a/packages/client/src/pages/timeline.vue +++ b/packages/client/src/pages/timeline.vue @@ -280,10 +280,10 @@ if (isMobile.value) { next = 'global' } else { - next = timelines[(timelines.indexOf(src) - 1) % timelines.length]; + next = timelines[(timelines.indexOf(src) + 1) % timelines.length]; } } else { - next = timelines[(timelines.indexOf(src) + 1) % timelines.length]; + next = timelines[(timelines.indexOf(src) - 1) % timelines.length]; } saveSrc(next); }