v0.5.0
New Redux DevTools features (#16)
- Pausing and locking (See redux-devtools-extension v2.7.0)
- Better time travelling with changes right in the Graph Monitor (See redux-devtools-extension v2.8.0)
- Print the graph view of the app state or the changes log (See redux-devtools-extension v2.8.1) (NOTE It's doesn't have preview on Electron)
- ......
New Redux enhancer / compose API
Refer to redux-devtools-extension, we provide a new way instead of reduxNativeDevTools and reduxNativeDevTools.updateStore:
window.__REDUX_DEVTOOLS_EXTENSION__(aliasreduxNativeDevTools)window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__(aliasreduxNativeDevToolsCompose)
const composeEnhancers = window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ ?
window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__({
/* options */
}) :
compose;
const enhancer = composeEnhancers(
applyMiddleware(...middlewares)
);See README.md for more information.
Multi-store support
Now we can use the redux enhancer for each store, and we can switch instances on monitor:
Other changes
- React Developer Tools commit is now bacc514a31f1b78f34c2761e9d0910ec3264b496
- Persist app state e036eaf 0de1409
- Auto update support for macOS 262a86c
Check for Updates...on menu 560c7f3- Rename
RNDebuggerWorker.jsfromdebugger.worker.js(improve contexts name of console tab) e2af22f - Shortcuts for Linux / Windows 2067f51
- Update debugger worker from upstream 69a73b7
- Optimize b3dbd69
