mirror of
https://github.com/0PandaDEV/Qopy.git
synced 2025-04-22 05:34:04 +02:00
46 lines
1.6 KiB
Rust
46 lines
1.6 KiB
Rust
use tauri::{AppHandle, async_runtime};
|
|
use tauri_plugin_dialog::{DialogExt, MessageDialogKind};
|
|
use tauri_plugin_updater::UpdaterExt;
|
|
|
|
|
|
pub async fn check_for_updates(app: AppHandle) {
|
|
println!("Checking for updates...");
|
|
|
|
let updater = app.updater().unwrap();
|
|
let response = updater.check().await;
|
|
|
|
match response {
|
|
Ok(Some(update)) => {
|
|
let cur_ver = &update.current_version;
|
|
let new_ver = &update.version;
|
|
let mut msg = String::new();
|
|
msg.extend([
|
|
&format!("{cur_ver} -> {new_ver}\n\n"),
|
|
"Would you like to install it now?",
|
|
]);
|
|
|
|
app.dialog()
|
|
.message(msg)
|
|
.title("Update Available")
|
|
.ok_button_label("Install")
|
|
.cancel_button_label("Cancel")
|
|
.show(move |response| {
|
|
if !response {
|
|
return;
|
|
}
|
|
async_runtime::spawn(async move {
|
|
if let Err(e) = update.download_and_install(|_, _| {}, || {}).await {
|
|
println!("Error installing new update: {:?}", e);
|
|
app.dialog().message(
|
|
"Failed to install new update. The new update can be downloaded from Github"
|
|
).kind(MessageDialogKind::Error).show(|_| {});
|
|
}
|
|
});
|
|
});
|
|
}
|
|
Ok(None) => println!("No updates available."),
|
|
Err(e) => {
|
|
println!("Failed to check for updates: {:?}", e);
|
|
}
|
|
}
|
|
}
|