auto_updater icon indicating copy to clipboard operation
auto_updater copied to clipboard

This plugin allows Flutter desktop apps to automatically update themselves (based on sparkle and winsparkle).

Results 16 auto_updater issues
Sort by recently updated
recently updated
newest added

Tested on both windows and macos

I see various useful methods available in winsparkle.h like `win_sparkle_set_update_check_interval` `win_sparkle_get_last_check_time` `win_sparkle_check_update_without_ui` Which are pretty much useful to set custom values.

If I create appcast like in the example with relative update files urls, then download procedure fails on windows. Everything works well if url is an absolute one like https://you.com/update.exe...

"Skip This Version" button in the macos update dialog doesn't do anything. After I restart the app and call `autoUpdater.checkForUpdates()` function update app dialog appears again. I wonder, if the...

I use CI pipeline to automatically release the version, so I need to be able to automatically update appcast.xml. Hope to support generate_ appcast.

Okay, so this looks really good so far, but it would be wonderful if this package would support all 3 platforms. In the case of Linux, we could use AppImage...

autoUpdater.checkForUpdates(inBackground: false); 使用false时,在开发模式下启动应用程序会提示程序更新 。 ![image](https://github.com/leanflutter/auto_updater/assets/4578080/3c8e37f7-a737-4779-95d7-fbc6b5e06ecd) 但是如果使用inBackground: true, 程序就不会有任何提示。 这是为何?

The following warning is printed during build ``` /Users/ben/.pub-cache/hosted/pub.dev/auto_updater-0.1.7/macos/Classes/AutoUpdater.swift:25:19: warning: 'setFeedURL' is deprecated: Please call -[SPUUpdater clearFeedURLFromUserDefaults] to migrate away from using this API and transition to either specifying the...

Building package executable... Built auto_updater:generate_keys. Unhandled exception: FormatException: Unexpected extension byte (at offset 10) #0 _Utf8Decoder.convertChunked (dart:convert-patch/convert_patch.dart:1851:7) #1 _Utf8ConversionSink.addSlice (dart:convert/string_conversion.dart:304:28) #2 _Utf8ConversionSink.add (dart:convert/string_conversion.dart:300:5) #3 _ConverterStreamEventSink.add (dart:convert/chunked_conversion.dart:69:18) #4 _SinkTransformerStreamSubscription._handleData (dart:async/stream_transformers.dart:111:24) #5...

Duplicate #18 I am getting the same issue with `msi` and as per win sparkle, it supports `msi` with this [documentation](https://github.com/vslavik/winsparkle/wiki/Appcast-Feeds) Can anyone please help me to set up this,...