enhance(client): アップデートが利用可能な場合エラー表示およびダイアログ表示しないように

This commit is contained in:
syuilo 2021-09-22 22:45:10 +09:00
parent 5a11844eff
commit 5bf4f569e4
2 changed files with 3 additions and 6 deletions

View file

@ -21,6 +21,7 @@
- UIの改善
- MFMにsparklesエフェクトを追加
- 非ログイン自は更新ダイアログを出さないように
- クライアント起動時、アップデートが利用可能な場合エラー表示およびダイアログ表示しないように
### Bugfixes
- アカウントデータのエクスポート/インポート処理ができない問題を修正

View file

@ -48,8 +48,8 @@
} else if (localeOutdated) {
// nop
} else {
await checkUpdate();
renderError('LOCALE_FETCH_FAILED');
checkUpdate();
return;
}
}
@ -65,8 +65,8 @@
script.setAttribute('async', 'true');
script.setAttribute('defer', 'true');
script.addEventListener('error', async () => {
await checkUpdate();
renderError('APP_FETCH_FAILED');
checkUpdate();
});
document.head.appendChild(script);
//#endregion
@ -142,10 +142,6 @@
if (meta.version != v) {
localStorage.setItem('v', meta.version);
alert(
'Misskeyの新しいバージョンがあります。ページを再度読み込みします。' +
'\n\n' +
'New version of Misskey available. The page will be reloaded.');
refresh();
}
}