-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding project documentation and updating resources for v1.5
- Loading branch information
Showing
9 changed files
with
51 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
# Collection of next features to implement | ||
|
||
* create preferences menu | ||
* allow stylizing node labels (bold, italics, color) | ||
* allow stylizing node color (fill, border) | ||
* create presets, which can be overwritten | ||
* allow modification of category colors | ||
* allow selection of drawing method (ellipsies, rounded-rectangles) | ||
* create help dialog | ||
* create minimal handbook | ||
* create video showing off how to use rico-cluster-qt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
digraph "rico-cluster-qt-save" { | ||
node0 [label="Node A"]; | ||
node1 [label="Node B"]; | ||
node2 [label="Node C"]; | ||
node3 [label="Node D\nThis is it"]; | ||
node4 [label="Node E\nhas special size"]; | ||
node0 [label="Node A", style=filled, fillcolor="#a1e0ea"]; | ||
node1 [label="Node B", style=filled, fillcolor="#f6e3a8"]; | ||
node2 [label="Node C", style=filled, fillcolor="#a1e0ea"]; | ||
node3 [label="Node D\nThis is it", style=filled, fillcolor="#a1e0ea"]; | ||
node4 [label="Node E\nhas special size", style=filled, fillcolor="#f6e3a8"]; | ||
node5 [label="Node K", style=filled, fillcolor="#cecece"]; | ||
node2 -> node1 [dir=none]; | ||
node0 -> node1 [dir=none]; | ||
node0 -> node1; | ||
node2 -> node3; | ||
node4 -> node2; | ||
node4 -> node1; | ||
node5 -> node1 [dir=none]; | ||
node5 -> node2; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.