Releases: hschneider/neutralino-ext-bun
v1.1.1
v1.1.0
Fixed run.cmd to work with Neutralino 5.3.0 under Windows 11.
v1.0.9
Fixed a bug in extension's termination.
v1.0.8
Added kill-switch just to make sure the extension is terminated when the parent app quits.
v1.0.7
Cloud-Mode: Auto-terminates the extension, when browser tab is closed.
v1.0.6
Optimized run and install scripts.
Thanks to Antonis Triantafyllopoulos.
v1.0.5
Optimized run scripts for single-file deployment.
v1.0.4
All platforms: Create a Bun single-file executable
Bun allows to build single-file executables, containing all dependencies. The run-scripts in extensions/bun will automatically start binaries called main-app (macOS, Linux) or main.exe (Windows), when main.js is missing.
So for distributing a binary bundle, all you have to do is:
cd extensions/bun
bun build main.js --compile --outfile main-app
After this you can delete theses files and folders from the extensions/bun folder:
- *.js
- *.sh
- _runtime
v1.0.3
Adapted Extension binding to NeutralinoJS > 4.15.0
The class is now async and needs to be initialized like this:
const ext = await new NeutralinoExtension(DEBUG);
v1.0.2
Simplified extension config in the Neutralino conf file.