Skip to content

v1.3.0

Compare
Choose a tag to compare
@zalmoxisus zalmoxisus released this 15 May 17:47
· 595 commits to master since this release

v1 3 0

Switch monitors

Now monitors are selected directly in the monitor window, Chrome devtools panel or browser action popup. Options page becomes simple again.

Slide monitor can be included in any window by toggling the corresponding button.
Diff monitor is removed as discussed in #97.

Monitors are moved to remotedev-app, as it's just a simple web app, it's easier to add and test custom monitors. It's just one file to be changed.

Import / Export

Fixed importing from a file.
Added support for immutable structures. Example of usage with immutable-js:

const store = createStore(rootReducer, window.devToolsExtension && window.devToolsExtension({
  deserializeState: (state) => ({
    todos: {
      ...state.todos,
      todoList: Immutable.fromJS(state.todos.todoList)
    }
  })
}));

Fixes and improvements

  • Fix missing messages after devtools panel is opened (#109).
  • Prevent applying listener multiple times (#112).
  • The code is not uglified anymore, so it's easier to deal with exceptions (#114).