Add native app installers with jDeploy #25
Merged
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.
Summary
I discovered the LLMFX project on Reddit and was impressed by how usable and well-designed it already is! After playing around with it, I decided to contribute by adding native app installers to make it easier for users to get started.
This PR adds jDeploy configuration to automatically build and distribute native app installers for Windows, macOS, and Linux with each release.
Full disclosure: I'm the developer of jDeploy, but I genuinely think this project would benefit from native installers.
What's Added
package.jsonfor cross-platform app bundling.github/workflows/jdeploy.yml) that automatically builds native installers on every push/tagNative Bundle Features
The native installers provide several benefits over manual JAR execution:
Sample Release
You can see the native installers in action at: https://github.com/shannah/LLMFX/releases/tag/main
The workflow automatically creates installers for all platforms and uploads them to GitHub releases.
Testing
The setup has been tested with the existing Quarkus + JavaFX configuration and works with the 67MB runner JAR that's already being built.
This should make LLMFX more accessible to end users who want to try it without having to set up a Java development environment.