Releases: zalmoxisus/redux-devtools-extension
Releases · zalmoxisus/redux-devtools-extension
v1.0.0-beta2
Added remote monitoring, which communicate with Remote Redux DevTools in order to support React Native, hybrid, desktop and server side apps. Also it is rather useful when using WebWorkers in your app. It is the same as in remotedev-app
, added here as a convenience not to install two apps.
v1.0.0-beta1
- Now it's possible to have multiple monitors at once (on left, right and bottom).
- Use different monitors. Added:
- Support for multiple instances / tabs. Before we were detecting when the tab is reactivated, and relayed the whole history tree. It worked pretty well, except the cases when the app has background actions.
- Added buttons for opening options and monitor windows.
- Lots of fixes and enhances.
v0.4.11
The extension works way faster now!
- Now it relays actions and the current state instead of the whole lifted store state (history tree).
- There's no
delay
(timeout) option anymore. - The
serialize
option is back (required for ImmutableJS states). - The monitor is used only in the extension not in the injected page (in the user's app).
- Better error catching (prevent flooding).
v0.4.10
Bug fixes release.
- Remove unsupported parameter in latest Canary.
- Serialize the payload everytime after it failed to be sent unserialized.
- Serialize the current state of background store when initializing the devpanel.
- Add an example with Redux Router, where we generate consecutive actions ("AutoTodo") in order to simulate high activity.
v0.4.9
v0.4.8
- Notify when errors occur in the app (show a clickable Chrome notification and make the page action's icon red).
- Don't use React context.
- Use Redux Devtools 3.0.0 and Redux DevTools Log Monitor Filterable.
- Updated to Babel 6.
v0.4.7
v0.4.6
- Open DevTools window to left, right, bottom or as a chrome panel.
- Choose window position from context menu.
- Add shortcuts: Alt + Shift + Arrow left / right / bottom to show the window in the corresponding position or arrow up to open DevTools in Chrome panel.
v0.4.5
- Filter actions. On the options page you may enable actions filtering and specify either actions to be hidden or shown in DevTools. If the latter is specified, other than those actions will be hidden.
- Update options without reloading the inspected page.
- Fix reopening DevTools window.
- Move devToolsInit from global variables.
- Prevent double options requesting when injecting in Chrome extensions.
v0.4.4
- Page script loading is way faster, so there won't be cases when the extension's script is injected after the store is created.
- Better options processing (get them from the background page instead of reading storage every time).
- Add the ability to open DevTools in a chrome panel.
- Focus DevTools window instead of reopening it.
- Prevent injecting script in new empty Chrome tabs.
- Fix losing source maps from DevTools.