1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-14 14:35:38 +02:00

Merge branch 'develop' into room

This commit is contained in:
syuilo
2026-04-27 10:35:14 +09:00
5 changed files with 51 additions and 4 deletions

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(() => {