feat: add updater permissions and functionality#164
Merged
felix-schultz merged 2 commits intoalphafrom Aug 10, 2025
Merged
Conversation
- Updated desktop and macOS schemas to include new updater permissions: - `updater:default` - `updater:allow-check` - `updater:allow-download` - `updater:allow-install` - `updater:allow-download-and-install` - `updater:deny-check` - `updater:deny-download` - `updater:deny-install` - `updater:deny-download-and-install` - Implemented update command in lib.rs to handle update checks, downloads, and installations. - Configured updater endpoints in tauri.conf.json for update management. - Added tauri_plugin_updater and tauri_plugin_dialog dependencies in bun.lock. - Enhanced settings loading log for better debugging. - Removed unnecessary debug print statement in hub.rs.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Updated desktop and macOS schemas to include new updater permissions:
updater:defaultupdater:allow-checkupdater:allow-downloadupdater:allow-installupdater:allow-download-and-installupdater:deny-checkupdater:deny-downloadupdater:deny-installupdater:deny-download-and-installImplemented update command in lib.rs to handle update checks, downloads, and installations.
Configured updater endpoints in tauri.conf.json for update management.
Added tauri_plugin_updater and tauri_plugin_dialog dependencies in bun.lock.
Enhanced settings loading log for better debugging.
Removed unnecessary debug print statement in hub.rs.