fix(updater): do not run in dialog mode on .deb, closes #4573 (#4577)

This commit is contained in:
Lucas Fernandes Nogueira 2022-07-05 10:22:47 -03:00 committed by GitHub
parent 64416100c6
commit e29fff2566
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 33 additions and 22 deletions

View File

@ -0,0 +1,5 @@
---
"tauri": patch
---
Only run the updater default dialog mode in supported platforms or development mode.

View File

@ -794,21 +794,27 @@ impl<R: Runtime> App<R> {
// check if updater is active or not
if updater_config.active {
if updater_config.dialog {
// if updater dialog is enabled spawn a new task
self.run_updater_dialog();
// When dialog is enabled, if user want to recheck
// if an update is available after first start
// invoke the Event `tauri://update` from JS or rust side.
handle.listen_global(updater::EVENT_CHECK_UPDATE, move |_msg| {
let handle = handle_.clone();
// re-spawn task inside tokyo to launch the download
// we don't need to emit anything as everything is handled
// by the process (user is asked to restart at the end)
// and it's handled by the updater
crate::async_runtime::spawn(
async move { updater::check_update_with_dialog(handle).await },
);
});
#[cfg(not(target_os = "linux"))]
let updater_enabled = true;
#[cfg(target_os = "linux")]
let updater_enabled = cfg!(dev) || self.state::<Env>().appimage.is_some();
if updater_enabled {
// if updater dialog is enabled spawn a new task
self.run_updater_dialog();
// When dialog is enabled, if user want to recheck
// if an update is available after first start
// invoke the Event `tauri://update` from JS or rust side.
handle.listen_global(updater::EVENT_CHECK_UPDATE, move |_msg| {
let handle = handle_.clone();
// re-spawn task inside tokyo to launch the download
// we don't need to emit anything as everything is handled
// by the process (user is asked to restart at the end)
// and it's handled by the updater
crate::async_runtime::spawn(
async move { updater::check_update_with_dialog(handle).await },
);
});
}
} else {
// we only listen for `tauri://update`
// once we receive the call, we check if an update is available or not

View File

@ -2622,7 +2622,7 @@ dependencies = [
[[package]]
name = "tauri"
version = "1.0.0"
version = "1.0.2"
dependencies = [
"anyhow",
"attohttpc",
@ -2671,7 +2671,7 @@ dependencies = [
[[package]]
name = "tauri-build"
version = "1.0.0"
version = "1.0.2"
dependencies = [
"anyhow",
"cargo_toml",
@ -2686,7 +2686,7 @@ dependencies = [
[[package]]
name = "tauri-codegen"
version = "1.0.0"
version = "1.0.2"
dependencies = [
"base64",
"brotli",
@ -2708,7 +2708,7 @@ dependencies = [
[[package]]
name = "tauri-macros"
version = "1.0.0"
version = "1.0.2"
dependencies = [
"heck 0.4.0",
"proc-macro2",
@ -2720,7 +2720,7 @@ dependencies = [
[[package]]
name = "tauri-runtime"
version = "0.9.0"
version = "0.10.1"
dependencies = [
"gtk",
"http",
@ -2738,7 +2738,7 @@ dependencies = [
[[package]]
name = "tauri-runtime-wry"
version = "0.9.0"
version = "0.10.1"
dependencies = [
"cocoa",
"gtk",
@ -2756,7 +2756,7 @@ dependencies = [
[[package]]
name = "tauri-utils"
version = "1.0.0"
version = "1.0.2"
dependencies = [
"brotli",
"ctor",