auto_updater
auto_updater copied to clipboard
This plugin allows Flutter desktop apps to automatically update themselves (based on sparkle and winsparkle).
Especially for beta releases it would be great being able to set different channels. On macOS Sparkle 2 supports [channels](https://sparkle-project.org/documentation/publishing/#channels). Winsparkle does not support this feature yet. See this open...
Hello I run `dart run auto_updater:sign_update dist/0.1.0/test.exe` in windows then length ="0" ```log sparkle:dsaSignature="MDwCHBsFd2w9n9+3hr2AVITURIxCA1Jq/VAsdKrZd8ECHH/JEBveX3/iOip3ZBloC2jLSuHDvssakSDVCMY=" length="0" ```
Hi, I need a solution to implement updating desktop without user interaction. But this package did not do that, hope the author can add this feature. Thanks
- Support isCriticalUpdate flag - Add user-update-choice callback - Format code
The usage example in the README calls the API this way: ```dart void main() async { // Must add this line. WidgetsFlutterBinding.ensureInitialized(); String feedURL = 'http://localhost:5002/appcast.xml'; await autoUpdater.setFeedURL(feedURL); await autoUpdater.checkForUpdates();...