Skip to content

Commit

Permalink
Prep v0.4.16 release
Browse files Browse the repository at this point in the history
  • Loading branch information
cpettitt committed Jan 30, 2016
1 parent df1eedd commit 57d40ac
Show file tree
Hide file tree
Showing 10 changed files with 60 additions and 38 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dagre-d3",
"version": "0.4.14",
"version": "0.4.16",
"main": [
"dist/dagre-d3.core.js"
],
Expand Down
29 changes: 16 additions & 13 deletions dist/dagre-d3.core.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/dagre-d3.core.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/dagre-d3.core.min.js.map

Large diffs are not rendered by default.

29 changes: 16 additions & 13 deletions dist/dagre-d3.js

Large diffs are not rendered by default.

9 changes: 4 additions & 5 deletions dist/dagre-d3.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/dagre-d3.min.js.map

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions dist/demo/style-attrs.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@ <h1>Dagre D3 Demo: Style Attributes</h1>
fill: none;
stroke-width: 1.5px;
}

.arrowhead {
stroke: blue;
fill: blue;
stroke-width: 1.5px;
}

</style>

<svg id="svg" width=960 height=600></svg>
Expand All @@ -51,6 +58,8 @@ <h1>Dagre D3 Demo: Style Attributes</h1>

g.setNode("D", {});

g.setNode("E", {});

// Make the edge from "A" to "B" red, thick, and dashed
g.setEdge("A", "B", {
style: "stroke: #f66; stroke-width: 3px; stroke-dasharray: 5, 5;",
Expand All @@ -70,6 +79,14 @@ <h1>Dagre D3 Demo: Style Attributes</h1>
lineInterpolate: 'basis'
});

g.setEdge("E", "D", {});

// Make the arrowhead blue
g.setEdge("A", "E", {
label: "Arrowhead class",
arrowheadClass: 'arrowhead'
});

// Create the renderer
var render = new dagreD3.render();

Expand Down
2 changes: 1 addition & 1 deletion lib/version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = "0.4.14";
module.exports = "0.4.16";
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dagre-d3",
"version": "0.4.15-pre",
"version": "0.4.16",
"description": "A D3-based renderer for Dagre",
"author": "Chris Pettitt <[email protected]>",
"keywords": [
Expand Down Expand Up @@ -54,4 +54,4 @@
"url": "https://github.com/cpettitt/dagre-d3.git"
},
"license": "MIT"
}
}

0 comments on commit 57d40ac

Please sign in to comment.