feat: add 'Check for updates' option to tray menu and improve update handling

This commit is contained in:
PandaDEV 2025-01-01 18:26:37 +10:00
parent e29f2fcfa5
commit 6157eb75a1
No known key found for this signature in database
GPG key ID: 13EFF9BAF70EE75C
4 changed files with 41 additions and 15 deletions

View file

@ -96,7 +96,7 @@ fn main() {
let _ = app.track_event("app_started", None);
tauri::async_runtime::spawn(async move {
api::updater::check_for_updates(app_handle).await;
api::updater::check_for_updates(app_handle, false).await;
});
Ok(())