Remove updated.vue for now
This commit is contained in:
parent
528b2be5b3
commit
b036c9d490
|
@ -21,7 +21,7 @@ const modal = ref<InstanceType<typeof MkModal>>();
|
||||||
|
|
||||||
const whatIsNew = () => {
|
const whatIsNew = () => {
|
||||||
modal.value.close();
|
modal.value.close();
|
||||||
window.open(`https://misskey-hub.net/docs/releases.html#_${version.replace(/\./g, '-')}`, '_blank');
|
window.open('https://codeberg.org/thatonecalculator/calckey/releases', '_blank');
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -237,6 +237,7 @@ import { getAccountFromId } from '@/scripts/get-account-from-id';
|
||||||
// テーマリビルドするため
|
// テーマリビルドするため
|
||||||
localStorage.removeItem('theme');
|
localStorage.removeItem('theme');
|
||||||
|
|
||||||
|
/*
|
||||||
try { // 変なバージョン文字列来るとcompareVersionsでエラーになるため
|
try { // 変なバージョン文字列来るとcompareVersionsでエラーになるため
|
||||||
if (lastVersion != null && compareVersions(version, lastVersion) === 1) {
|
if (lastVersion != null && compareVersions(version, lastVersion) === 1) {
|
||||||
// ログインしてる場合だけ
|
// ログインしてる場合だけ
|
||||||
|
@ -246,6 +247,7 @@ import { getAccountFromId } from '@/scripts/get-account-from-id';
|
||||||
}
|
}
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
// NOTE: この処理は必ず↑のクライアント更新時処理より後に来ること(テーマ再構築のため)
|
// NOTE: この処理は必ず↑のクライアント更新時処理より後に来ること(テーマ再構築のため)
|
||||||
|
|
Loading…
Reference in New Issue