diff --git a/CHANGELOG_CHERRYPICK.md b/CHANGELOG_CHERRYPICK.md
index 961e4e546f..0994969650 100644
--- a/CHANGELOG_CHERRYPICK.md
+++ b/CHANGELOG_CHERRYPICK.md
@@ -27,6 +27,7 @@
### Client
- 이모티콘 피커의 검색 건수를 100개로 증가 (misskey-dev/misskey#11371)
+- about-misskey 페이지에서 클라이언트 버전을 누르면 변경 사항을 볼 수 있음
- Fix: (Friendly) 흐림 효과를 사용할 때 하단 내비게이션 바의 가독성이 매우 떨어지는 문제
- Fix: 움직임이 있는 MFM 설정을 사용하지 않아도 `$[rainbow ]`문자를 볼 수 있음 (misskey-dev/misskey#11361)
- Fix: 모바일에서 헤더의 디자인을 변경하면 흐림 효과가 강제됨
diff --git a/packages/frontend/src/pages/about-misskey.vue b/packages/frontend/src/pages/about-misskey.vue
index 9ccf2b35c5..d6fe4cc3f2 100644
--- a/packages/frontend/src/pages/about-misskey.vue
+++ b/packages/frontend/src/pages/about-misskey.vue
@@ -12,8 +12,8 @@ SPDX-License-Identifier: AGPL-3.0-only
-
CherryPick
-
v{{ version }}
+
CherryPick
+
v{{ version }}
@@ -394,6 +394,10 @@ let easterEggEmojis = $ref([]);
let easterEggEngine = $ref(null);
const containerEl = $shallowRef();
+const whatIsNewCherryPick = () => {
+ window.open(`https://github.com/kokonect-link/cherrypick/blob/develop/CHANGELOG_CHERRYPICK.md#${version.replace(/\./g, '')}`, '_blank');
+};
+
function iconLoaded() {
const emojis = defaultStore.state.reactions;
const containerWidth = containerEl.offsetWidth;
@@ -500,7 +504,7 @@ definePageMetadata({
z-index: 1;
}
- > .misskey {
+ > .cherrypick {
margin: 0.75em auto 0 auto;
width: max-content;
position: relative;
@@ -513,6 +517,11 @@ definePageMetadata({
opacity: 0.5;
position: relative;
z-index: 1;
+
+ &:hover {
+ text-decoration: underline;
+ color: var(--link);
+ }
}
> .emoji {
@@ -572,7 +581,7 @@ definePageMetadata({
font-size: 11px;
font-weight: bold;
- > .misskey {
+ > .cherrypick {
color: #86b300;
}