Skip to content

Commit

Permalink
Release 2.0.0-rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
danielcaldas committed Nov 18, 2018
1 parent 0374b09 commit f95eb4f
Show file tree
Hide file tree
Showing 20 changed files with 6,270 additions and 3,958 deletions.
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,43 @@
# Change Log

## [2.0.0-rc2](https://github.com/danielcaldas/react-d3-graph/tree/2.0.0-rc2)

[Full Changelog](https://github.com/danielcaldas/react-d3-graph/compare/2.0.0-rc1...2.0.0-rc2)

**Implemented enhancements:**

* Allow nodes to override strokeColor [\#122](https://github.com/danielcaldas/react-d3-graph/issues/122)

**Fixed bugs:**

* Custom onNodeClick handler not triggering on collapsible nodes [\#136](https://github.com/danielcaldas/react-d3-graph/issues/136)
* 🐛 Global `viewGenerator` not been applied to the nodes [\#130](https://github.com/danielcaldas/react-d3-graph/issues/130)

**Closed issues:**

* graph constantly re-rendering even when app is idle? [\#145](https://github.com/danielcaldas/react-d3-graph/issues/145)
* Allow users to pass in a function in node.labelProperty [\#133](https://github.com/danielcaldas/react-d3-graph/issues/133)
* Drop yarn support for development \(stick to npm only\) [\#127](https://github.com/danielcaldas/react-d3-graph/issues/127)
* Link mouse cursor property [\#119](https://github.com/danielcaldas/react-d3-graph/issues/119)
* Center graph on a specific node [\#102](https://github.com/danielcaldas/react-d3-graph/issues/102)
* Links with directional arrow [\#88](https://github.com/danielcaldas/react-d3-graph/issues/88)

**Merged pull requests:**

* Fix/right clicks [\#140](https://github.com/danielcaldas/react-d3-graph/pull/140) ([danielcaldas](https://github.com/danielcaldas))
* Refactor/clean link component [\#139](https://github.com/danielcaldas/react-d3-graph/pull/139) ([danielcaldas](https://github.com/danielcaldas))
* fix: Trigger custom click handler in collapsible nodes [\#137](https://github.com/danielcaldas/react-d3-graph/pull/137) ([LonelyPrincess](https://github.com/LonelyPrincess))
* Add Support to pass a function to node.labelProperty [\#135](https://github.com/danielcaldas/react-d3-graph/pull/135) ([dgautsch](https://github.com/dgautsch))
* Support Development on Windows Machines [\#134](https://github.com/danielcaldas/react-d3-graph/pull/134) ([dgautsch](https://github.com/dgautsch))
* Feature/directional graph [\#132](https://github.com/danielcaldas/react-d3-graph/pull/132) ([danielcaldas](https://github.com/danielcaldas))
* Global `viewGenerator` included in default config object [\#131](https://github.com/danielcaldas/react-d3-graph/pull/131) ([LonelyPrincess](https://github.com/LonelyPrincess))
* Remove Yarn [\#128](https://github.com/danielcaldas/react-d3-graph/pull/128) ([sasalx](https://github.com/sasalx))
* Feature/right clicking [\#124](https://github.com/danielcaldas/react-d3-graph/pull/124) ([ghardin137](https://github.com/ghardin137))
* Allow nodes to override strokeColor [\#123](https://github.com/danielcaldas/react-d3-graph/pull/123) ([Andras-Simon](https://github.com/Andras-Simon))
* fix: \#119 Add mouseCursor prop to \<Link\> [\#120](https://github.com/danielcaldas/react-d3-graph/pull/120) ([kaungmyatlwin](https://github.com/kaungmyatlwin))
* Add onClick handler to the canvas, for use in eg. unselecting nodes [\#113](https://github.com/danielcaldas/react-d3-graph/pull/113) ([smilykoch](https://github.com/smilykoch))
* Focus view on a node [\#107](https://github.com/danielcaldas/react-d3-graph/pull/107) ([LonelyPrincess](https://github.com/LonelyPrincess))

## [2.0.0-rc1](https://github.com/danielcaldas/react-d3-graph/tree/2.0.0-rc1)

[Full Changelog](https://github.com/danielcaldas/react-d3-graph/compare/2.0.0-rc0...2.0.0-rc1)
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@

You can also load different datasets and configurations via URL query parameter, here are the links:

* [small dataset](https://goodguydaniel.com/react-d3-graph/sandbox/index.html?data=small)
* [custom node dataset](https://goodguydaniel.com/react-d3-graph/sandbox/index.html?data=custom-node)
* [small dataset](https://goodguydaniel.com/react-d3-graph/sandbox/index.html?data=small) - small example.
* [custom node dataset](https://goodguydaniel.com/react-d3-graph/sandbox/index.html?data=custom-node) - sample config with custom views.
* [marvel dataset!](https://goodguydaniel.com/react-d3-graph/sandbox/index.html?data=marvel) - sample config with directed collapsible graph and custom svg nodes.

Do you want to visualize your own data set on the live sandbox? Just submit a PR! You're welcome 😁

Expand Down
2 changes: 1 addition & 1 deletion docs/0.3.0.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ <h4><a href="https://github.com/danielcaldas/react-d3-graph" target="_blank">
<h4><a href="https://danielcaldas.github.io/react-d3-graph/sandbox/index.html" target="_blank">🔗 Live Demo</a></h4>
<h5>Versions</h5>
<ul>
<li><a href="./index.html">2.0.0-rc1 (latest) 🚀</a></li>
<li><a href="./index.html">2.0.0-rc2 (latest) 🚀</a></li>
<li><a href="./1.3.0.html">1.3.0</a></li>
<li><a href="./1.2.2.html">1.2.2</a></li>
<li><a href="./1.2.0.html">1.2.0</a></li>
Expand Down
2 changes: 1 addition & 1 deletion docs/0.4.0.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ <h4><a href="https://github.com/danielcaldas/react-d3-graph" target="_blank">
<h4><a href="https://danielcaldas.github.io/react-d3-graph/sandbox/index.html" target="_blank">🔗 Live Demo</a></h4>
<h5>Versions</h5>
<ul>
<li><a href="./index.html">2.0.0-rc1 (latest) 🚀</a></li>
<li><a href="./index.html">2.0.0-rc2 (latest) 🚀</a></li>
<li><a href="./1.3.0.html">1.3.0</a></li>
<li><a href="./1.2.2.html">1.2.2</a></li>
<li><a href="./1.2.0.html">1.2.0</a></li>
Expand Down
2 changes: 1 addition & 1 deletion docs/1.0.0.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ <h4><a href="https://github.com/danielcaldas/react-d3-graph" target="_blank">
<h4><a href="https://danielcaldas.github.io/react-d3-graph/sandbox/index.html" target="_blank">🔗 Live Demo</a></h4>
<h5>Versions</h5>
<ul>
<li><a href="./index.html">2.0.0-rc1 (latest) 🚀</a></li>
<li><a href="./index.html">2.0.0-rc2 (latest) 🚀</a></li>
<li><a href="./1.3.0.html">1.3.0</a></li>
<li><a href="./1.2.2.html">1.2.2</a></li>
<li><a href="./1.2.0.html">1.2.0</a></li>
Expand Down
2 changes: 1 addition & 1 deletion docs/1.0.1.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ <h4><a href="https://github.com/danielcaldas/react-d3-graph" target="_blank">
<h4><a href="https://danielcaldas.github.io/react-d3-graph/sandbox/index.html" target="_blank">🔗 Live Demo</a></h4>
<h5>Versions</h5>
<ul>
<li><a href="./index.html">2.0.0-rc1 (latest) 🚀</a></li>
<li><a href="./index.html">2.0.0-rc2 (latest) 🚀</a></li>
<li><a href="./1.3.0.html">1.3.0</a></li>
<li><a href="./1.2.2.html">1.2.2</a></li>
<li><a href="./1.2.0.html">1.2.0</a></li>
Expand Down
2 changes: 1 addition & 1 deletion docs/1.2.0.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ <h4><a href="https://github.com/danielcaldas/react-d3-graph" target="_blank">
<h4><a href="https://danielcaldas.github.io/react-d3-graph/sandbox/index.html" target="_blank">🔗 Live Demo</a></h4>
<h5>Versions</h5>
<ul>
<li><a href="./index.html">2.0.0-rc1 (latest) 🚀</a></li>
<li><a href="./index.html">2.0.0-rc2 (latest) 🚀</a></li>
<li><a href="./1.3.0.html">1.3.0</a></li>
<li><a href="./1.2.2.html">1.2.2</a></li>
<li><a href="./1.2.0.html">1.2.0</a></li>
Expand Down
2 changes: 1 addition & 1 deletion docs/1.2.2.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ <h4><a href="https://github.com/danielcaldas/react-d3-graph" target="_blank">
<h4><a href="https://danielcaldas.github.io/react-d3-graph/sandbox/index.html" target="_blank">🔗 Live Demo</a></h4>
<h5>Versions</h5>
<ul>
<li><a href="./index.html">2.0.0-rc1 (latest) 🚀</a></li>
<li><a href="./index.html">2.0.0-rc2 (latest) 🚀</a></li>
<li><a href="./1.3.0.html">1.3.0</a></li>
<li><a href="./1.2.2.html">1.2.2</a></li>
<li><a href="./1.2.0.html">1.2.0</a></li>
Expand Down
2 changes: 1 addition & 1 deletion docs/1.3.0.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ <h4><a href="https://github.com/danielcaldas/react-d3-graph" target="_blank">
<h4><a href="https://danielcaldas.github.io/react-d3-graph/sandbox/index.html" target="_blank">🔗 Live Demo</a></h4>
<h5>Versions</h5>
<ul>
<li><a href="./index.html">2.0.0-rc1 (latest) 🚀</a></li>
<li><a href="./index.html">2.0.0-rc2 (latest) 🚀</a></li>
<li><a href="./1.3.0.html">1.3.0</a></li>
<li><a href="./1.2.2.html">1.2.2</a></li>
<li><a href="./1.2.0.html">1.2.0</a></li>
Expand Down
Loading

0 comments on commit f95eb4f

Please sign in to comment.