mrow
Some checks failed
Build & Release / build-windows (push) Has been cancelled

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
bits 2026-04-28 06:13:23 +03:00
parent 3e51a44e30
commit 5b9646ff75

View File

@ -182,7 +182,10 @@ async fn save_config(config_data: String, state: State<'_, AppState>) -> Result<
fs::write(&temp_path, config_data).await.map_err(|e| e.to_string())?; fs::write(&temp_path, config_data).await.map_err(|e| e.to_string())?;
fs::rename(temp_path, config_path).await.map_err(|e| e.to_string()) fs::rename(temp_path, config_path).await.map_err(|e| e.to_string())
} }
#[tauri::command]
fn get_app_version(app: tauri::AppHandle) -> String {
app.package_info().version.to_string()
}
#[tauri::command] #[tauri::command]
fn minimize_to_tray(window: WebviewWindow) { fn minimize_to_tray(window: WebviewWindow) {
let _ = window.hide(); let _ = window.hide();
@ -210,7 +213,8 @@ pub fn run() {
check_status, check_status,
get_hwid, get_hwid,
download_assets, download_assets,
save_config save_config,
get_app_version
]) ])
.setup(|app| { .setup(|app| {
let window = app.get_webview_window("main").unwrap(); let window = app.get_webview_window("main").unwrap();