Skip to content

Releases: hschneider/neutralino-ext-bun

v1.1.1

10 Sep 08:12
Compare
Choose a tag to compare

NL_PATH with spaces is handled correctly now.
Thanks to CoMiGo!

v1.1.0

05 Aug 14:51
Compare
Choose a tag to compare

Fixed run.cmd to work with Neutralino 5.3.0 under Windows 11.

v1.0.9

09 Apr 18:19
Compare
Choose a tag to compare

Fixed a bug in extension's termination.

v1.0.8

08 Apr 16:36
Compare
Choose a tag to compare

Added kill-switch just to make sure the extension is terminated when the parent app quits.

v1.0.7

02 Mar 19:08
Compare
Choose a tag to compare

Cloud-Mode: Auto-terminates the extension, when browser tab is closed.

v1.0.6

14 Feb 21:17
Compare
Choose a tag to compare

Optimized run and install scripts.
Thanks to Antonis Triantafyllopoulos.

v1.0.5

14 Feb 07:22
1b6ffcc
Compare
Choose a tag to compare

Optimized run scripts for single-file deployment.

v1.0.4

13 Feb 21:05
Compare
Choose a tag to compare

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

14 Jan 14:09
Compare
Choose a tag to compare

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

05 Dec 17:10
Compare
Choose a tag to compare

Simplified extension config in the Neutralino conf file.