Skip to content

Releases: zalmoxisus/mobx-remotedev

v0.2.8

26 Jun 18:40
Compare
Choose a tag to compare

Fixed mobx ES6 import. #26 by @pastelsky

v0.2.6

24 Feb 16:48
Compare
Choose a tag to compare

v0.2.5

04 Jan 19:15
Compare
Choose a tag to compare

Add support for jump to state, introduced in redux-devtools-extension@2.12.0.

v0.2.4

02 Dec 14:09
Compare
Choose a tag to compare

Fix import state for 2.11.1 version of the extension.

v0.2.3

14 Nov 17:08
Compare
Choose a tag to compare

Apply as a decorator

@remotedev({ /* config */ })
export default class Counter {
  @observable counter = 0

  ...
}

Thanks to @jhen0409 for implementing it!

v0.2.2

09 Sep 07:53
Compare
Choose a tag to compare
  • Fix deprecated: useStrict without argument (#7)
  • Support elder versions of mobx.

v0.2.1

24 Aug 16:41
Compare
Choose a tag to compare

Show actions for nested classes / observables (#6)

Just set the global parameter to truein order to assign dispatching of all unhandled actions to this store. Useful for nested classes / observables or when having async actions without specifying the scope explicitly. Like: remotedev(store, { global: true }). Big thanks to @antitoxic for working on this!

If you want more details about the nested tree, see #5.

Use WSS for remote debugging

v0.2.0

23 Aug 16:47
Compare
Choose a tag to compare

Added support for React Native, hybrid, desktop and server side apps

Just specify remote parameter (remotedev(appState, { remote: true })), and optionally hostname and port. See the API for details.

screen shot 2016-08-23 at 6 20 36 pm

Changed the default values of onlyActions and name parameter

  • When in strict mode, onlyActions is by default true.
  • When name is not specified, the class name will be used.

v0.1.0

01 Aug 18:44
Compare
Choose a tag to compare

Better actions display

Now for actions you see the start and end of all intermediate changes, so you also know the initial and final state. Also there's a new option onlyActions, set it to true to have a clear log only with actions. Usually you want to use it in strict mode. And don't forget about async actions.

Support for all Redux DevTools Extension features:

  • Reset, commit, rollback, sweep
  • Cancel / skip (toggle) actions
  • Export / Import state
  • Dispatch actions remotely:

xbqsguyybk

v0.0.2

21 Jul 14:41
Compare
Choose a tag to compare
  • More details in action's payload.
  • Fixed time traveling in strict mode.
  • Fixed umd build.