diff --git a/.gitignore b/.gitignore
index 60bf82f08..6f54d56d2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -78,3 +78,6 @@ storybook-static
# frontend robots.txt
apps/frontend/src/public/robots.txt
+
+# Oh My Code
+.omc/
diff --git a/apps/app-frontend/src/App.vue b/apps/app-frontend/src/App.vue
index a7488f53b..06a7dcd32 100644
--- a/apps/app-frontend/src/App.vue
+++ b/apps/app-frontend/src/App.vue
@@ -18,13 +18,10 @@ import {
LibraryIcon,
LogInIcon,
LogOutIcon,
- MaximizeIcon,
- MinimizeIcon,
NewspaperIcon,
NotepadTextIcon,
PlusIcon,
RefreshCwIcon,
- RestoreIcon,
RightArrowIcon,
ServerStackIcon,
SettingsIcon,
@@ -35,7 +32,6 @@ import {
import {
Admonition,
Avatar,
- Button,
ButtonStyled,
commonMessages,
ContentInstallModal,
@@ -87,6 +83,7 @@ import PromotionWrapper from '@/components/ui/PromotionWrapper.vue'
import QuickInstanceSwitcher from '@/components/ui/QuickInstanceSwitcher.vue'
import RunningAppBar from '@/components/ui/RunningAppBar.vue'
import SplashScreen from '@/components/ui/SplashScreen.vue'
+import WindowControls from '@/components/ui/WindowControls.vue'
import { useCheckDisableMouseover } from '@/composables/macCssFix.js'
import { config } from '@/config'
import { hide_ads_window, init_ads_window, show_ads_window } from '@/helpers/ads.js'
@@ -999,6 +996,7 @@ provideAppUpdateDownloadProgress(appUpdateDownload)
+
-
-
-
-
-
@@ -1297,7 +1279,11 @@ provideAppUpdateDownloadProgress(appUpdateDownload)
loading.startLoading()
}
"
- @resolve="loading.stopLoading()"
+ @resolve="
+ () => {
+ loading.stopLoading()
+ }
+ "
>
@@ -1391,72 +1377,6 @@ provideAppUpdateDownloadProgress(appUpdateDownload)