fix: redirect beta/alpha/rc "what's new" button to GitHub releases page (#17347)

* Initial plan

* fix: redirect beta/alpha/rc update info button to GitHub releases page

Agent-Logs-Url: https://github.com/misskey-dev/misskey/sessions/4ac22dd9-13dd-4ef2-a6f7-d68cfda4a19f

Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
This commit is contained in:
Copilot 2026-04-27 10:31:02 +09:00 committed by GitHub
commit 21f51be5b7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -34,7 +34,11 @@ const isBeta = version.includes('-beta') || version.includes('-alpha') || versio
function whatIsNew() {
modal.value?.close();
window.open(`https://misskey-hub.net/docs/releases/#_${version.replace(/\./g, '')}`, '_blank');
if (isBeta) {
window.open(`https://github.com/misskey-dev/misskey/releases/tag/${version}`, '_blank');
} else {
window.open(`https://misskey-hub.net/docs/releases/#_${version.replace(/\./g, '')}`, '_blank');
}
}
onMounted(() => {