diff --git a/components/app/windows/about.vue b/components/app/windows/about.vue index 6beff51..2addb15 100644 --- a/components/app/windows/about.vue +++ b/components/app/windows/about.vue @@ -1,2 +1,16 @@ diff --git a/i18n/locales/zh-tw.json b/i18n/locales/zh-tw.json index 1401bdd..5a93a21 100644 --- a/i18n/locales/zh-tw.json +++ b/i18n/locales/zh-tw.json @@ -27,7 +27,7 @@ "hotnews": "熱門新聞", "news": "新聞", "sources": "資料來源", - "about": "關於我們", + "about": "關於這個網站", "settings": "設定", "leave": "離開", "login": "登入", diff --git a/pages/app/desktop/index.vue b/pages/app/desktop/index.vue index 953277d..85e418f 100644 --- a/pages/app/desktop/index.vue +++ b/pages/app/desktop/index.vue @@ -65,7 +65,6 @@ const lang = ref(locale.value); const alertOpen = ref(false); const currentNavBar = ref([]); const bootingAnimation = ref(true); -const bypassBoot = ref(false); const activeWindows = ref([]); const openApp = ref(); const openAppId = ref(); @@ -240,10 +239,10 @@ onMounted(() => { // booting animation bypass const bootingHeaderParams = route.query.bypass; if (bootingHeaderParams) { - bypassBoot.value = true; + bootingAnimation.value = false; console.log("Bypass booting animation"); } - if (!bypassBoot.value) { + if (bootingAnimation.value) { gsap.to(popMessage.value, { duration: 0.5, text: t("app.booting"), @@ -252,8 +251,6 @@ if (bootingHeaderParams) { setTimeout(() => { bootingAnimation.value = false; }, 2000); - } else { - bootingAnimation.value = false; } })