From 57880fc2c7c24f4ebe6b256705c009a40ab3a706 Mon Sep 17 00:00:00 2001 From: Jamie Pine Date: Sun, 25 Jan 2026 17:47:18 -0800 Subject: [PATCH] Update Tauri configuration for autoupdater with new signing key - Replaced the existing public key in the updater configuration with a new key for enhanced security. - Maintained the endpoint for fetching update information from the GitHub releases. --- tauri/src-tauri/tauri.conf.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tauri/src-tauri/tauri.conf.json b/tauri/src-tauri/tauri.conf.json index 7a008bb0..6cb7d2e2 100644 --- a/tauri/src-tauri/tauri.conf.json +++ b/tauri/src-tauri/tauri.conf.json @@ -57,10 +57,8 @@ "open": true }, "updater": { - "pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEJDQzc3OTEwRkQyNkNDNUQKUldSZHpDYjlFSG5IdlBpL2tGMXo4N1IzWlJLdUpTNFQyZ1FGZTEzQmVTZzY5elZTYVpMNnFwTUoK", - "endpoints": [ - "https://github.com/jamiepine/voicebox/releases/latest/download/latest.json" - ] + "pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEUxRENBQkRBQjdBNTM1OTIKUldTU05hVzMycXZjNGJGcUxmcVVocll2QjdSaTJNdlFxR2M3VDJsMnVvbDdyZGRPMmRlOW9aWTcK", + "endpoints": ["https://github.com/jamiepine/voicebox/releases/latest/download/latest.json"] } } }