From 220de447e614b9ee82a93ce4f0cafddccb0a34ef Mon Sep 17 00:00:00 2001 From: tdgao Date: Wed, 12 Aug 2026 16:43:25 -0600 Subject: [PATCH 1/6] fix: stale function call set_webview_visible --- apps/app/src/api/ads.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/app/src/api/ads.rs b/apps/app/src/api/ads.rs index 268811a929..47ab2b0cb8 100644 --- a/apps/app/src/api/ads.rs +++ b/apps/app/src/api/ads.rs @@ -190,7 +190,7 @@ async fn sync_ads_occlusion(app: &tauri::AppHandle) { drop(state); if let Some(webview) = app.webviews().get("ads-window") { - set_webview_visible_for_window(app, webview, visible); + set_webview_visible(webview, visible); } } From 4c86edb4e5eaa0f3692652aa1a891da149bd661f Mon Sep 17 00:00:00 2001 From: tdgao Date: Wed, 12 Aug 2026 16:51:36 -0600 Subject: [PATCH 2/6] fix: modpack export progress bar and add notification when done --- .../src/components/ui/ExportModal.vue | 50 +++++++++++--- .../app-frontend/src/locales/en-US/index.json | 6 ++ .../app-lib/src/api/instance/export_mrpack.rs | 69 +++++++++++++------ packages/app-lib/src/event/mod.rs | 4 ++ 4 files changed, 98 insertions(+), 31 deletions(-) diff --git a/apps/app-frontend/src/components/ui/ExportModal.vue b/apps/app-frontend/src/components/ui/ExportModal.vue index 718a602acf..d0cdd1410b 100644 --- a/apps/app-frontend/src/components/ui/ExportModal.vue +++ b/apps/app-frontend/src/components/ui/ExportModal.vue @@ -1,11 +1,12 @@