Skip to content

Commit 5a56898

Browse files
committed
Add link for the releases page in README
1 parent 9df3d7d commit 5a56898

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

README.markdown

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The project consists of
2424

2525
### Graph Structure ###
2626

27-
This is implemented in graph-visualization/Graph.js.
27+
This is implemented in graph-visualization/Graph.js.
2828

2929
Usage:
3030

@@ -40,8 +40,8 @@ Node:
4040
A node has the properties
4141

4242
- `ID`
43-
- `nodesTo`, Array with connected nodes
44-
- `nodesFrom`, Array with connected nodes
43+
- `nodesTo`, Array with connected nodes
44+
- `nodesFrom`, Array with connected nodes
4545
- `position`, Object for x, y, z position, default is {}
4646
- `data`, Object with further properties, e.g. properties for a graph layout
4747

@@ -56,7 +56,7 @@ A graph layout has the basic structure:
5656
this.init = function() {
5757
...
5858
};
59-
59+
6060
this.generate = function() {
6161
...
6262
};
@@ -68,4 +68,10 @@ The graph layout gets the created graph and calculates new positions for the nod
6868

6969
The graph layout may extend the nodes and edges with custom properties in the data object.
7070

71-
See [force-based-layout.js](https://github.com/davidpiegza/Graph-Visualization/blob/master/layouts/force-based-layout.js) for example usage.
71+
See [force-based-layout.js](https://github.com/davidpiegza/Graph-Visualization/blob/master/layouts/force-based-layout.js) for example usage.
72+
73+
74+
Changelog
75+
-------------------
76+
77+
See [releases](https://github.com/davidpiegza/Graph-Visualization/releases).

0 commit comments

Comments
 (0)