From 367644e38ef24da98df32d8a278b1d2bbb5f8097 Mon Sep 17 00:00:00 2001 From: le king fu Date: Tue, 17 Feb 2026 19:12:10 -0500 Subject: [PATCH] fix: change Windows updater installMode to basicUi Passive mode prevented NSIS installer from requesting UAC elevation, causing updates to silently fail and roll back to the last installed version. Co-Authored-By: Claude Opus 4.6 --- package.json | 2 +- src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index b17e102..303c26b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "simpl_result_scaffold", "private": true, - "version": "0.3.5", + "version": "0.3.6", "type": "module", "scripts": { "dev": "vite", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 81e1e88..8e3faec 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "simpl-result" -version = "0.3.5" +version = "0.3.6" description = "Personal finance management app" authors = ["you"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 3517cf1..0f0858d 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "Simpl Resultat", - "version": "0.3.5", + "version": "0.3.6", "identifier": "com.simpl.resultat", "build": { "beforeDevCommand": "npm run dev", @@ -40,7 +40,7 @@ "https://github.com/Le-King-Fu/simpl-resultat/releases/latest/download/latest.json" ], "windows": { - "installMode": "passive" + "installMode": "basicUi" } } }