Releases: jhen0409/react-native-debugger
Releases · jhen0409/react-native-debugger
v0.6.0
- Based on
electron@1.6.3
(beta) (Chrome 53 -> 56) - React Inspector used
react-devtools-core@2.0.12
- Patch
requestIdleCallback
forreact-devtools-core
3d3da36 0aacac7
(It's for this troubleshoot, but it just patch the legacy vendor bundle, the devtools backend will included in new version ofreact-native
package) - Add
serialize
option for redux enhancer 5ae0fa1 (See this release of redux-devtools-extension) - [macOS] Add TouchBar integration #55
- Save window bounds when the app window closed 5758efd
v0.6.0-beta2
- Patch
requestIdleCallback
forreact-devtools-core
3d3da36 0aacac7
(It's for this troubleshoot, but it just patch the legacy vendor bundle, the devtools backend will included in new version ofreact-native
package) - Add
serialize
option for redux enhancer 5ae0fa1 (See this release of redux-devtools-extension) - Update to
electron@1.6.1
(beta)
v0.6.0-beta1
- Based on
electron@1.6.0
(beta) (Chrome 53 -> 56) - React Inspector used
react-devtools-core@2.0.11
v0.5.6
v0.5.5
v0.5.4
- Upgrade remotedev-app to v0.10.1 1e2380b (See redux-devtools-extension@2.11.0 release notes)
- Support more options for compatible redux-devtools-extension API e55ce2c (See documention)
- deserializeState
- deserializeAction
- serializeState
- serializeAction
- predicate
- Fix export button 42ffce7
v0.5.3
v0.5.2
v0.5.1
Improve
- Add
Stay in Front
menu item. (#23) @artem-russkikh - Add
shouldCatchErrors
option for redux API of worker 058b309 - Add
actionsBlacklist
,actionsWhitelist
for compatible extension API d2a86a9
Fix
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.js
fromdebugger.worker.js
(improve contexts name of console tab) e2af22f - Shortcuts for Linux / Windows 2067f51
- Update debugger worker from upstream 69a73b7
- Optimize b3dbd69