From 950c1c3fa52a083b23f6a8b2e6b86fe451784ca6 Mon Sep 17 00:00:00 2001 From: GeckoEidechse Date: Wed, 7 Sep 2022 23:28:10 +0200 Subject: Show host OS next to FlightCore version --- src-tauri/src/main.rs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'src-tauri') diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index d6cdbd63..c83ddaeb 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -4,6 +4,7 @@ )] use std::{ + env, sync::{Arc, Mutex}, time::Duration, }; @@ -48,7 +49,8 @@ fn main() { get_version_number, get_northstar_version_number_caller, check_is_northstar_outdated, - verify_install_location + verify_install_location, + get_host_os ]) .run(tauri::generate_context!()) .expect("error while running tauri application"); @@ -146,3 +148,9 @@ fn verify_install_location(game_path: String) -> bool { } } } + +#[tauri::command] +/// Returns identifier of host OS FlightCore is running on +fn get_host_os() -> String { + env::consts::OS.to_string() +} -- cgit v1.2.3