Skip to content

Releases: nklayman/vue-cli-plugin-electron-builder

RC 2 - Small fix with native modules

27 Aug 15:24
Compare
Choose a tag to compare

This release adds a small fix for native modules. Before, if a native module had an index.js it would be marked as not external whether or not the user listed it as an external or other checks marked it as one. (#57, 4df3aeb)

RC.1 - Native Modules, Latest CLI-Service, smart generator!

24 Aug 19:58
Compare
Choose a tag to compare

I am now able to move VCP-Electron-Builder into release candidate stage 🎉 as I fixed two of it's major issues:

To upgrade, you will only need to re-invoke the generator (vue invoke electron-builder) if you need native modules support. Thanks to the smart generator (d4d55c6), only missing code will be added and the rest will be left alone.

Beta.7

17 Aug 20:18
Compare
Choose a tag to compare

This is a small release, containing a few bug fixes:

  • Custom main process watchlist for electron restart (#45, e4d27ae)
  • only one electron install/missing dep for testWithSpectron (084aba7)
  • allow using --mode argument (#31 (comment), 79a1be9)

Beta.6 - bug fixes, auto reload main process

23 Jul 18:50
Compare
Choose a tag to compare

This release has 2 new bug fixes:

  • The generator now supports not having a gitignore file (#36, 0730bc7)
  • JS files are resolved properly in typescript (#34, 8934968)

Also, whenever your main process file is changed, Electron will be closed, the main process file rebundled, and Electron will be relaunched.

v1.0.0-beta.5

08 Jul 01:48
Compare
Choose a tag to compare

This release has a small fix for Vue env modes in the testWithSpectron command.

Beta.4 - New Website, New Features

07 Jul 16:33
Compare
Choose a tag to compare

First of all, I'd like to thank @bdiz and @u3u for the feature requests.

Second, we have a new website (powered by VuePress)! Check it out at https://nklayman.github.io/vue-cli-plugin-electron-builder/.

Last but not least, this release has a few new handy features:

  • Testing and debugging support. Read about how it works here
  • Vue modes (.env vars) are now supported
  • You can now customize the renderer process webpack config (docs)
  • Lodash deep merging is now used to prevent accidental default config overrides.

beta.2/3 - Me being an idiot

01 Jul 17:34
Compare
Choose a tag to compare

When I renamed the branch to master, it broke the url for the custom vue-cli-service :(. in beta 2 I made a typo for the url, and beta 3 is the only beta that doesn't break on install. Also, it appears yarn has install issues regardless.

Beta.1 - default version of vcp-electron-builder

01 Jul 17:24
Compare
Choose a tag to compare

With v1.0.0-beta.1, v1 is the default version of vue-cli-plugin-electron-builder🎉. While there are hardly any new features, it has near 100% test coverage (just missing ui interface and error logging). Thanks for all of your help reporting issues and requesting features! To upgrade from <=0.3.2, follow the upgrading guide. If you are upgrading from the v1.0.0-alpha, just update the version in your package.json, no need to re-invoke the generator.

alpha.11 - Modern mode now used

26 Jun 19:52
Compare
Choose a tag to compare
Pre-release

Modern mode is now used in electron builds. Make sure to re-invoke the generator before using this update!

v1.0.0-alpha.10: Better static assets handling

25 Jun 16:35
Compare
Choose a tag to compare

In this release, I improved handling of static assets not transpiled by webpack. Instructions are located here.