Skip to content

Releases: zalmoxisus/crossbuilder

v0.7.1

15 Feb 20:03
Compare
Choose a tag to compare
  • Use webpack-hot-middleware in order to see building in the console.
  • Add Gulp watch tasks.
  • Update ESLint rules and use enzyme@2 api.

v0.7.0

24 Jan 13:47
Compare
Choose a tag to compare

Now build also cordova apps.

v0.6.0

09 Jan 09:29
Compare
Choose a tag to compare
  • Build and develop web apps.
  • Build, compress and start Electron apps.
  • Chrome app now open web app's page in the window.
  • Add more modularity for the gulp tasks.
  • Update eslint, babel, react and other dependencies.

v0.5.1

03 Jan 10:28
Compare
Choose a tag to compare
  • Better windows manipulations:
    • Move opening window from contextMenus to a separate module.
    • If an window already exists, focus it instead of reopening.
    • Listen for the windows onRemoved and remove window from the list when it is closed
  • Use stateless components.
  • Update babel, react, redux and eslint.
  • Use reagent for testing
  • Improve tests for Travis and add AppVeyor build.
  • Enhance webpack config.
  • Add alias for the extension path.
  • Fix unsupported parameter in latest Canary.

v0.5.0

27 Nov 12:29
Compare
Choose a tag to compare

Breaking changes

  • Removed browser-redux-bg and browser-redux-sync.
  • The extension's popup, windows and tabs now refer the store from the background page. So, now we have one store for the whole application, except content scripts.
  • No more auto rehydratations.
  • Each content script has its store, and it can be synchronized with the application (background store) and other content scripts. Unlike rehydratations, we synchronize actions not states. So it may have even different structure of the states.
  • No more sending actions to the background.
  • The current implementation breaks firefox support, but hopefully will be implemented soon. It should be tracked in #12.

New modules

v0.4.1

08 Nov 09:31
Compare
Choose a tag to compare
  • Get store asynchronously with the initialValue from the storage
  • New persist store
  • Move combineReducers from browser-redux-bg
  • Fix compress tasks

v0.4.0

27 Oct 10:52
Compare
Choose a tag to compare

Breaking Changes

  • React 0.14.x support

v0.3.1

23 Oct 10:35
Compare
Choose a tag to compare
  • Build WebExtensions for Firefox.

v0.3.0

20 Oct 07:35
Compare
Choose a tag to compare

Split the functionality into modules:

  • browser-redux-sync: states syncing module.
  • browser-redux-bg: messaging module - send redux actions (from popup, windows or inject pages) to be called in the background by their function name.

v0.2.2

19 Oct 08:11
Compare
Choose a tag to compare
  • Update the internal dependencies.
  • Increase timeout for tests.