Skip to content

Releases: jhen0409/react-native-debugger

v0.6.0

14 Mar 12:59
Compare
Choose a tag to compare
  • Based on electron@1.6.3 (beta) (Chrome 53 -> 56)
  • React Inspector used react-devtools-core@2.0.12
  • Patch requestIdleCallback for react-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 of react-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

24 Feb 19:39
Compare
Choose a tag to compare
v0.6.0-beta2 Pre-release
Pre-release
  1. Patch requestIdleCallback for react-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 of react-native package)
  2. Add serialize option for redux enhancer 5ae0fa1 (See this release of redux-devtools-extension)
  3. Update to electron@1.6.1 (beta)

v0.6.0-beta1

16 Feb 10:36
Compare
Choose a tag to compare
v0.6.0-beta1 Pre-release
Pre-release
  1. Based on electron@1.6.0 (beta) (Chrome 53 -> 56)
  2. React Inspector used react-devtools-core@2.0.11

v0.5.6

14 Feb 09:12
Compare
Choose a tag to compare
  1. Use react-devtools-core/standalone instead of fork (#44), it's also fixed #40, #41
  2. Disable zooming for app ab59fe2
  3. Update dependencies 35150fa

v0.5.5

29 Nov 08:20
Compare
Choose a tag to compare
  1. Fix forward slash key listen for typing on Dispatcher input jhen0409/react-devtools#a1e86e4
  2. Fix filters not work if filter more than two actions for reduxAPI ea0cfae

v0.5.4

26 Nov 13:29
Compare
Choose a tag to compare
  1. Upgrade remotedev-app to v0.10.1 1e2380b (See redux-devtools-extension@2.11.0 release notes)
  2. Support more options for compatible redux-devtools-extension API e55ce2c (See documention)
    • deserializeState
    • deserializeAction
    • serializeState
    • serializeAction
    • predicate
  3. Fix export button 42ffce7

v0.5.3

25 Nov 06:50
Compare
Choose a tag to compare
  1. Fix forward slash key listen when typing on another input (jhen0409/react-devtools#6b130e0)
  2. Update remotedev-app to v0.10.0-beta4 (33e0b2e)

v0.5.2

14 Nov 11:00
Compare
Choose a tag to compare
  1. Support MobX (remotedev & mobx-remotedev) #25 (See Example)
  2. Remove global.require usage for worker (For RN 0.38) db42c04

v0.5.1

12 Nov 02:16
Compare
Choose a tag to compare

Improve

  1. Add Stay in Front menu item. (#23) @artem-russkikh
  2. Add shouldCatchErrors option for redux API of worker 058b309
  3. Add actionsBlacklist, actionsWhitelist for compatible extension API d2a86a9

Fix

  1. Pass filters to isFiltered call to satisfy expected signature (#24) @tomauty
  2. Fix filters, actionCreators, sanitizer for each instance 4951ce7

v0.5.0

05 Nov 15:33
Compare
Choose a tag to compare

New Redux DevTools features (#16)

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__ (alias reduxNativeDevTools)
  • window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ (alias reduxNativeDevToolsCompose)
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:

2016-11-03 7 47 25

Other changes