mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 23:13:08 +02:00
enhance(client): アップデートが利用可能な場合エラー表示およびダイアログ表示しないように
This commit is contained in:
parent
5a11844eff
commit
5bf4f569e4
2 changed files with 3 additions and 6 deletions
|
@ -21,6 +21,7 @@
|
||||||
- UIの改善
|
- UIの改善
|
||||||
- MFMにsparklesエフェクトを追加
|
- MFMにsparklesエフェクトを追加
|
||||||
- 非ログイン自は更新ダイアログを出さないように
|
- 非ログイン自は更新ダイアログを出さないように
|
||||||
|
- クライアント起動時、アップデートが利用可能な場合エラー表示およびダイアログ表示しないように
|
||||||
|
|
||||||
### Bugfixes
|
### Bugfixes
|
||||||
- アカウントデータのエクスポート/インポート処理ができない問題を修正
|
- アカウントデータのエクスポート/インポート処理ができない問題を修正
|
||||||
|
|
|
@ -48,8 +48,8 @@
|
||||||
} else if (localeOutdated) {
|
} else if (localeOutdated) {
|
||||||
// nop
|
// nop
|
||||||
} else {
|
} else {
|
||||||
|
await checkUpdate();
|
||||||
renderError('LOCALE_FETCH_FAILED');
|
renderError('LOCALE_FETCH_FAILED');
|
||||||
checkUpdate();
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -65,8 +65,8 @@
|
||||||
script.setAttribute('async', 'true');
|
script.setAttribute('async', 'true');
|
||||||
script.setAttribute('defer', 'true');
|
script.setAttribute('defer', 'true');
|
||||||
script.addEventListener('error', async () => {
|
script.addEventListener('error', async () => {
|
||||||
|
await checkUpdate();
|
||||||
renderError('APP_FETCH_FAILED');
|
renderError('APP_FETCH_FAILED');
|
||||||
checkUpdate();
|
|
||||||
});
|
});
|
||||||
document.head.appendChild(script);
|
document.head.appendChild(script);
|
||||||
//#endregion
|
//#endregion
|
||||||
|
@ -142,10 +142,6 @@
|
||||||
|
|
||||||
if (meta.version != v) {
|
if (meta.version != v) {
|
||||||
localStorage.setItem('v', meta.version);
|
localStorage.setItem('v', meta.version);
|
||||||
alert(
|
|
||||||
'Misskeyの新しいバージョンがあります。ページを再度読み込みします。' +
|
|
||||||
'\n\n' +
|
|
||||||
'New version of Misskey available. The page will be reloaded.');
|
|
||||||
refresh();
|
refresh();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue