Skip to content

Releases: zalmoxisus/redux-devtools-extension

v1.0.0-beta2

01 Feb 09:02
Compare
Choose a tag to compare
v1.0.0-beta2 Pre-release
Pre-release

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.
demo

v1.0.0-beta1

29 Jan 11:45
Compare
Choose a tag to compare
v1.0.0-beta1 Pre-release
Pre-release
  • 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.

Demo

v0.4.11

27 Dec 17:08
Compare
Choose a tag to compare

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

19 Dec 09:54
Compare
Choose a tag to compare

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

17 Dec 15:13
Compare
Choose a tag to compare

errdemo

  • Show when errors occur in the app (not only reducer specific). Even in non-redux apps (by calling window.devToolsExtension.notifyErrors() explicitly).
  • Attempt to fix issues with circular references.
  • Nuke serialize option. Now the extension decides itself when the serialization is required.

v0.4.8

16 Dec 10:36
Compare
Choose a tag to compare
  • 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

09 Dec 09:25
Compare
Choose a tag to compare

Bug fixes release.

  • Fix missing page action (popup icon) on page reload (#25).
  • Add other shortcuts for OSX to fix conflicts with the default behaviour (#24).
  • Show current shortcuts in the context menu.

v0.4.6

09 Dec 08:47
Compare
Choose a tag to compare
  • 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

04 Dec 11:44
Compare
Choose a tag to compare
  • 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

30 Nov 14:19
Compare
Choose a tag to compare
  • 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.