-
Notifications
You must be signed in to change notification settings - Fork 25
How to include additional files #21
Description
From what I understood, your package builds the flutter app as if done by the IDE, then using hashes determines which files bust be downloaded in order to update an installation.
But what if I have some additional files to include in the build path? In my case, I have a full-fledged desktop application with PDF manuals, language files (external to flutter) and other stuff unrelated to Flutter's build process that (sometimes) need to be updated: would be possible with your package to put additional files to be updated?
I'm making a wild guess that these files could be added to the dist folder after running desktop_updater:release but before running desktop_updater:archive, so that they can be parsed for hashes, but I have not tested it yet.
This is kinda a crucial feature for me: I'm exploring the possibility to have a macOs version of our windows app, and having an auto-updater feature also on macOs is an important feature