fix: remove updater plugin — missing pubkey crashes on startup
All checks were successful
Build & Sign Wraith / Build Windows + Sign (push) Successful in 2m41s

Will re-enable after generating Tauri signing keypair.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Vantz Stockwell 2026-03-18 02:40:55 -04:00
parent 8602f1779b
commit 9cf64f99c7
2 changed files with 0 additions and 9 deletions

View File

@ -150,7 +150,6 @@ pub fn run() {
tauri::Builder::default() tauri::Builder::default()
.plugin(tauri_plugin_shell::init()) .plugin(tauri_plugin_shell::init())
.plugin(tauri_plugin_updater::Builder::new().build())
.manage(app_state) .manage(app_state)
.invoke_handler(tauri::generate_handler![ .invoke_handler(tauri::generate_handler![
commands::vault::is_first_run, commands::vault::is_first_run,

View File

@ -43,14 +43,6 @@
} }
}, },
"plugins": { "plugins": {
"updater": {
"endpoints": [
"https://git.command.vigilcyber.com/api/v1/repos/vstockwell/wraith/releases/latest"
],
"windows": {
"installMode": "passive"
}
},
"shell": { "shell": {
"open": true "open": true
} }