mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-04-29 12:06:01 +02:00
506ce4835b
* refactor(updater): accomodate to new tauri config restructure RFC#5 https://github.com/tauri-apps/rfcs/blob/f3e82a6b0c5390401e855850d47dc7b7d9afd684/texts/0005-tauri-config-restructure.md RFC#5 PR implementation: https://github.com/tauri-apps/tauri/pull/8723 * lint and update configs
1015 B
1015 B
updater
| updater |
|---|
| patch |
Refactored the updater plugin to accommodate to the new changes in tauri config:
-
JSON plugin config:
- Added
pubkeyoption. - Added
windowsoption which is a Windows-specific options. - Renamed
installer_argstoinstallerArgs. - Moved
installerArgsoption to the newwindowsobject.
- Added
-
Rust crate changes:
- Added
pubkeyfield forConfig. - Added
windowsfield forConfigoption which is a Windows-specific options. - Added
WindowsConfigandWindowsUpdateInstallMode. - Moved
installerArgsoption to the newwindowsobject. - Added
Builder::pubkeyandUpdaterBuilder::pubkey. - Changed
Builder::installer_argsandUpdaterBuilder::installer_argsto add to existing installer args, instead of replacing them, useBuilder/UpdaterBuilder::clear_installer_argsto clear existing args. - Added
Builder::installer_arg,Builder::clear_installer_args,UpdaterBuilder::installer_argandUpdaterBuilder::clear_installer_args.
- Added