Expand description
Tauri commands for auto-update operations.
§Commands
updater_check— checks the update endpoint; emitsupdater:statustransitions (Checking→Available/UpToDate/Error).updater_install— downloads and installs a pending update; emitsDownloading { progress }→Ready(orError).
§OCP
New updater commands are additive — each is an independent #[tauri::command]
registered in lib.rs. UpdateStatus variants in updater/mod.rs extend
without touching these handlers.
Functions§
- updater_
check - Check the configured update endpoint for a newer release.
- updater_
install - Download and install the pending update.
- updater_
restart - Restart the application after a successful
updater_install.