From 87efcec09dc2fb370f9d2e7c9275e3ab4f123eba Mon Sep 17 00:00:00 2001 From: Rohit C Prasad Date: Tue, 21 Jul 2026 23:16:40 -0700 Subject: [PATCH] updater: passive install mode on Windows MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Progress bar only — no NSIS dialogs during auto-update (takes effect updating FROM 0.1.5). --- surfaces/gui/src-tauri/tauri.conf.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/surfaces/gui/src-tauri/tauri.conf.json b/surfaces/gui/src-tauri/tauri.conf.json index 329e9bf0..c288dac8 100644 --- a/surfaces/gui/src-tauri/tauri.conf.json +++ b/surfaces/gui/src-tauri/tauri.conf.json @@ -49,7 +49,10 @@ "https://download.openworker.com/latest.json", "https://github.com/andrewyng/openworker/releases/latest/download/latest.json" ], - "pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDVCNzEzRjY5OTkzNUNBNjkKUldScHlqV1phVDl4VzBvTnFLLytzaDkzNVd3WWNuUm8yNE95WTBFNnBtcGF1RENxeTRuNVhQeloK" + "pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDVCNzEzRjY5OTkzNUNBNjkKUldScHlqV1phVDl4VzBvTnFLLytzaDkzNVd3WWNuUm8yNE95WTBFNnBtcGF1RENxeTRuNVhQeloK", + "windows": { + "installMode": "passive" + } } } }