From 5813c4c85287e5011b6d08a849efbd58328c7cee Mon Sep 17 00:00:00 2001 From: rogermarkussen Date: Tue, 28 Jul 2015 19:42:56 +0200 Subject: [PATCH 1/3] Update README.md Tell how to monitor only a part of the state --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index b5aacdd1..9b6d5ffc 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,9 @@ open http://localhost:3000 Try clicking on actions in the log, or changing some code inside `examples/counter/reducers/counter`. For fun, you can also open `http://localhost:3000/?debug_session=123`, click around, and then refresh. +If you only would like to monitor a part of the state, you can set a select-prop on the DevTools component. +ex. state.todos} store={store} monitor={LogMonitor} /> + Oh, and you can do the same with the TodoMVC example as well. ### It's Ugly! From dda35f725813bb073ebfe8ebb144a13c27c0a98c Mon Sep 17 00:00:00 2001 From: rogermarkussen Date: Tue, 28 Jul 2015 19:55:49 +0200 Subject: [PATCH 2/3] Update README.md --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9b6d5ffc..d15ff5a5 100644 --- a/README.md +++ b/README.md @@ -31,11 +31,12 @@ open http://localhost:3000 Try clicking on actions in the log, or changing some code inside `examples/counter/reducers/counter`. For fun, you can also open `http://localhost:3000/?debug_session=123`, click around, and then refresh. -If you only would like to monitor a part of the state, you can set a select-prop on the DevTools component. -ex. state.todos} store={store} monitor={LogMonitor} /> - Oh, and you can do the same with the TodoMVC example as well. +If you only would like to monitor a part of the state, you can set a select-prop on the DevTools component. +ex. ` state.todos} store={store} monitor={LogMonitor} />` + + ### It's Ugly! The design or usability is not the point. (Although we'll have better design in the future :-) From 80e3ae54eab6af0d825b945d739689be3327e658 Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Wed, 5 Aug 2015 03:26:44 +0300 Subject: [PATCH 3/3] 0.1.3 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 97971303..d3af1f05 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "redux-devtools", - "version": "0.1.2", + "version": "0.1.3", "description": "Redux DevTools with hot reloading and time travel", "main": "lib/index.js", "scripts": {