From 74e8d7f5104b08d1598693602979b29cfcd146e9 Mon Sep 17 00:00:00 2001 From: GeckoEidechse Date: Sat, 27 Aug 2022 23:55:33 +0200 Subject: Show version number in UI --- src-tauri/src/main.rs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'src-tauri/src') diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index 9f1229f7..cbf10065 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -50,6 +50,21 @@ fn main() { } }); + let app_handle = app.app_handle(); + tauri::async_runtime::spawn(async move { + // Sending current version inside a timed loop is a bad idea as it shouldn't change at runtime + // The reason this is currently done like this is cause I haven't figure out yet how to just send it once / read it in front-end + let version = env!("CARGO_PKG_VERSION"); + loop { + sleep(Duration::from_millis(1000)).await; + println!("sending install location"); + println!("{}", version); + app_handle + .emit_all("current-version-ping", version) + .unwrap(); + } + }); + Ok(()) }) .manage(Counter(Default::default())) -- cgit v1.2.3