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)
}
})
}));