Bozon Versions Save

🛠 Command line tool for building, testing and publishing modern Electron applications

v0.10.6

4 years ago

0.10.5

4 years ago
  • Update Electron to 7.1.2
  • Dependencies update

0.10.4

4 years ago

0.10.2

4 years ago

v0.10.1

4 years ago

v0.10.0

4 years ago
  • SETTINGS object is now renamed to CONFIG to match directory name
  • src directory structure is changed to contain 2 namespaces main and renderer. Each of them now contain only files related to corresponding process.
  • Images now should be required to js files to be loaded via webpack

v0.9.1

5 years ago

v0.9.0

5 years ago

Changes

  • Get rid of gulp which was used for running build tasks. Build using webpack programmatically instead
  • Both renderer and main process javascripts are built with webpack from now on
  • Remove app/package.json it is now generated automatically. All app dependencies should be specified in root package.json
  • Introduce global SETTINGS object which is accessible in main process.
  • Make Electron a dependency of bozon
  • Make electron-builder a dependency of bozon
  • Update console output styling

Breaking Changes

  • webpack.config.js now contains configuration for both renderer and main process javascripts. Thus it corresponding configuration should be scoped under renderer and main keys:
module.exports = {
  renderer: {},
  main: {}
}
  • Removed gulp style helpers for build. Next helpers are not available bozon.task, bozon.src, bozon.dest
  • Settings are now unavailable via app/package.json use global SETTINGS variable instead
  • Change app directory to src as main source code directory
  • Change spec directory to test as tests directory

v0.8.9

5 years ago

v0.8.7

5 years ago
  • Update Electron to v2.0.9
  • Update spectron to 4.0.0
  • Update electron-builder to 2.28.4
  • Update bozon dependencies