Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: zalmoxisus/redux-devtools-extension
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.8.1
Choose a base ref
...
head repository: zalmoxisus/redux-devtools-extension
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
Showing with 17,689 additions and 1,277 deletions.
  1. +8 −0 .bookignore
  2. +1 −1 .eslintignore
  3. +1 −1 .gitignore
  4. +8 −7 .travis.yml
  5. +63 −0 CODE_OF_CONDUCT.md
  6. +1 −2 LICENSE
  7. +234 −111 README.md
  8. +1 −0 SUMMARY.md
  9. +6 −7 appveyor.yml
  10. +18 −0 book.json
  11. +233 −54 docs/API/Arguments.md
  12. +0 −12 docs/API/CreateStore.md
  13. +51 −63 docs/API/Methods.md
  14. +0 −1 docs/API/README.md
  15. +5 −0 docs/Articles.md
  16. +9 −49 docs/FAQ.md
  17. +13 −0 docs/Features/Trace.md
  18. +3 −1 docs/Feedback.md
  19. +258 −0 docs/Integrations.md
  20. +19 −28 docs/README.md
  21. +70 −0 docs/Recipes.md
  22. +94 −0 docs/Troubleshooting.md
  23. +1 −0 docs/Videos.md
  24. +0 −13 docs/docpress.json
  25. +1 −2 examples/counter/.babelrc
  26. +10 −7 examples/counter/actions/counter.js
  27. +6 −10 examples/counter/components/Counter.js
  28. +15 −23 examples/counter/package.json
  29. +6 −10 examples/counter/store/configureStore.js
  30. +6 −8 examples/counter/webpack.config.js
  31. +1 −2 examples/react-counter-messaging/.babelrc
  32. +4 −4 examples/react-counter-messaging/components/Counter.js
  33. +11 −21 examples/react-counter-messaging/package.json
  34. +0 −23 examples/react-counter-messaging/server.js
  35. +8 −11 examples/react-counter-messaging/webpack.config.js
  36. +0 −4 examples/react-counter/.babelrc
  37. +0 −62 examples/react-counter/components/Counter.js
  38. +0 −11 examples/react-counter/index.html
  39. +0 −8 examples/react-counter/index.js
  40. +0 −43 examples/react-counter/package.json
  41. +0 −23 examples/react-counter/server.js
  42. +0 −28 examples/react-counter/webpack.config.js
  43. +3 −0 examples/saga-counter/.babelrc
  44. +1 −1 examples/saga-counter/index.html
  45. +15 −27 examples/saga-counter/package.json
  46. +0 −23 examples/saga-counter/server.js
  47. +2 −2 examples/saga-counter/src/components/Counter.js
  48. +3 −7 examples/saga-counter/src/main.js
  49. +0 −29 examples/saga-counter/test/sagas.js
  50. +11 −17 examples/saga-counter/webpack.config.js
  51. +1 −2 examples/todomvc/.babelrc
  52. +2 −1 examples/todomvc/components/Footer.js
  53. +2 −1 examples/todomvc/components/Header.js
  54. +2 −1 examples/todomvc/components/MainSection.js
  55. +2 −1 examples/todomvc/components/TodoItem.js
  56. +3 −2 examples/todomvc/components/TodoTextInput.js
  57. +2 −1 examples/todomvc/containers/App.js
  58. +14 −22 examples/todomvc/package.json
  59. +5 −3 examples/todomvc/reducers/todos.js
  60. +10 −6 examples/todomvc/store/configureStore.js
  61. +7 −9 examples/todomvc/webpack.config.js
  62. +25 −17 gulpfile.babel.js
  63. +38 −0 npm-package/README.md
  64. +1 −0 npm-package/developmentOnly.d.ts
  65. +9 −1 npm-package/developmentOnly.js
  66. +170 −0 npm-package/index.d.ts
  67. +8 −1 npm-package/index.js
  68. +1 −0 npm-package/logOnly.d.ts
  69. +56 −0 npm-package/logOnly.js
  70. +1 −0 npm-package/logOnlyInProduction.d.ts
  71. +25 −0 npm-package/logOnlyInProduction.js
  72. +3 −3 npm-package/package.json
  73. +22 −0 npm-package/utils/assign.js
  74. +48 −42 package.json
  75. +98 −32 src/app/api/filters.js
  76. +5 −0 src/app/api/generateInstanceId.js
  77. +29 −6 src/app/api/importState.js
  78. +246 −37 src/app/api/index.js
  79. +49 −16 src/app/containers/App.js
  80. +77 −17 src/app/middlewares/api.js
  81. +35 −0 src/app/middlewares/instanceSelector.js
  82. +5 −4 src/app/middlewares/panelSync.js
  83. +0 −25 src/app/middlewares/popupSelector.js
  84. +1 −1 src/app/middlewares/windowSync.js
  85. +3 −1 src/app/reducers/background/index.js
  86. +4 −0 src/app/reducers/background/persistStates.js
  87. +2 −0 src/app/reducers/window/index.js
  88. +1 −1 src/app/service/Monitor.js
  89. +11 −0 src/app/stores/backgroundStore.js
  90. +3 −1 src/app/stores/enhancerStore.js
  91. +2 −1 src/app/stores/panelStore.js
  92. +15 −10 src/app/stores/windowStore.js
  93. BIN src/assets/img/logo/gray.png
  94. +5 −1 src/browser/extension/background/contextMenus.js
  95. +8 −1 src/browser/extension/background/getPreloadedState.js
  96. +14 −3 src/browser/extension/background/index.js
  97. +13 −3 src/browser/extension/background/logging.js
  98. +1 −1 src/browser/extension/background/openWindow.js
  99. +21 −2 src/browser/extension/chromeAPIMock.js
  100. +28 −27 src/browser/extension/devpanel/index.js
  101. +14 −3 src/browser/extension/devtools/index.js
  102. +64 −12 src/browser/extension/inject/contentScript.js
  103. +7 −0 src/browser/extension/inject/deprecatedWarn.js
  104. +2 −2 src/browser/extension/inject/index.js
  105. +252 −71 src/browser/extension/inject/pageScript.js
  106. +1 −1 src/browser/extension/inject/pageScriptWrap.js
  107. +13 −20 src/browser/extension/manifest.json
  108. +21 −0 src/browser/extension/options/ContextMenuGroup.js
  109. +59 −0 src/browser/extension/options/EditorGroup.js
  110. +0 −14 src/browser/extension/options/MiscellaneousGroup.js
  111. +5 −0 src/browser/extension/options/Options.js
  112. +8 −3 src/browser/extension/options/syncOptions.js
  113. +6 −1 src/browser/extension/window/index.js
  114. +10 −17 src/browser/firefox/manifest.json
  115. +2 −2 src/browser/views/{devpanel.jade → devpanel.pug}
  116. 0 src/browser/views/{devtools.jade → devtools.pug}
  117. +9 −5 src/browser/views/includes/{style.jade → style.pug}
  118. 0 src/browser/views/{options.jade → options.pug}
  119. +1 −1 src/browser/views/{remote.jade → remote.pug}
  120. +1 −1 src/browser/views/{window.jade → window.pug}
  121. +4 −1 test/.eslintrc
  122. +4 −4 test/app/containers/App.spec.js
  123. +20 −19 test/app/inject/api.spec.js
  124. +6 −6 test/app/inject/enhancer.spec.js
  125. +1 −0 test/app/setup.js
  126. +22 −12 test/chrome/extension.spec.js
  127. +11 −7 test/electron/devpanel.spec.js
  128. +1 −1 test/electron/fixture/renderer.js
  129. +5,083 −0 test/perf/data.js
  130. +23 −0 test/perf/send.spec.js
  131. +1 −1 test/utils/e2e.js
  132. +28 −12 webpack/base.config.js
  133. +1 −2 webpack/dev.config.js
  134. +9,676 −0 yarn.lock
8 changes: 8 additions & 0 deletions .bookignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
src/
build/
dev/
examples/
npm-package/
test/
package.json
webpack/
2 changes: 1 addition & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -5,4 +5,4 @@ webpack/replace
examples
test/app/setup.js
npm-package
_docpress
_book
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -6,4 +6,4 @@ dist/
build/
dev/
tmp/
_docpress
_book
15 changes: 8 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -2,7 +2,11 @@ sudo: required
dist: trusty
language: node_js
node_js:
- "5"
- "6"
cache:
directories:
- $HOME/.yarn-cache
- node_modules
env:
- CXX=g++-4.8
addons:
@@ -13,19 +17,16 @@ addons:
packages:
- google-chrome-stable
- g++-4.8
cache:
directories:
- node_modules

install:
- "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16"
- npm install
- npm install -g yarn
- yarn install

before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start &
- sleep 3

script:
- npm run lint
- npm test
- yarn test
63 changes: 63 additions & 0 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# Contributor Covenant Code of Conduct

## Our Pledge

In the interest of fostering an open and welcoming environment, we as
contributors and maintainers pledge to making participation in our project and
our community a harassment-free experience for everyone, regardless of age, body
size, disability, ethnicity, sex characteristics, gender identity and expression,
level of experience, education, socio-economic status, nationality, personal
appearance, race, religion, or sexual identity and orientation.

## Our Standards

Examples of behavior that contributes to creating a positive environment
include:

* Using welcoming and inclusive language
* Being respectful of differing viewpoints and experiences
* Gracefully accepting constructive criticism
* Focusing on what is best for the community
* Showing empathy towards other community members

Examples of unacceptable behavior by participants include:

* The use of sexualized language or imagery and unwelcome sexual attention or
advances
* Trolling, insulting/derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or electronic
address, without explicit permission
* Other conduct which could reasonably be considered inappropriate in a
professional setting

## Our Responsibilities

Project maintainers are responsible for clarifying the standards of acceptable
behavior and are expected to take appropriate and fair corrective action in
response to any instances of unacceptable behavior.

Project maintainers have the right and responsibility to remove, edit, or
reject comments, commits, code, wiki edits, issues, and other contributions
that are not aligned to this Code of Conduct, or to ban temporarily or
permanently any contributor for other behaviors that they deem inappropriate,
threatening, offensive, or harmful.

## Scope

This Code of Conduct applies both within project spaces and in public spaces
when an individual is representing the project or its community. Examples of
representing a project or community include using an official project e-mail
address, posting via an official social media account, or acting as an appointed
representative at an online or offline event. Representation of a project may be
further defined and clarified by project maintainers.

## Attribution

This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html

[homepage]: https://www.contributor-covenant.org

For answers to common questions about this code of conduct, see
https://www.contributor-covenant.org/faq
3 changes: 1 addition & 2 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015 Mihail Diordiev
Copyright (c) 2015 Dan Abramov
Copyright (c) 2015-present Mihail Diordiev

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Loading