From 2ee090748a209a621460e8616105bfdb9c8e853e Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sat, 12 Oct 2019 11:37:21 +0300 Subject: Change: finished steps are now octagons, circles were too big --- legend.svg | 92 +++++++++++++++++++++++++++++++------------------------------- src/map.rs | 2 +- 2 files changed, 47 insertions(+), 47 deletions(-) diff --git a/legend.svg b/legend.svg index a7856d6..645c64d 100644 --- a/legend.svg +++ b/legend.svg @@ -4,75 +4,75 @@ - - + + roadmap - - + + +goal + +This is the end goal: +if we reach here, there +is nothing more to be +done in the project + + + +finished + +This task is finished; +the arrow indicates what +follows this task (unless +it's blocked) + + + +finished->goal + + + + + next - -This task is chosen -to be done next + +This task is chosen +to be done next blocked - -This task is blocked -and can't be done until -something happens + +This task is blocked +and can't be done until +something happens next->blocked - - - - - -finished - -This task is finished; -the arrow indicates what -follows this task (unless -it's blocked) - - - -goal - -This is the end goal: -if we reach here, there -is nothing more to be -done in the project - - - -finished->goal - - + + blocked->goal - - + + ready - -This task is ready -to be done: it is not -blocked by anything + +This task is ready +to be done: it is not +blocked by anything ready->blocked - - + + diff --git a/src/map.rs b/src/map.rs index be81216..ff7e4f9 100644 --- a/src/map.rs +++ b/src/map.rs @@ -191,7 +191,7 @@ impl Roadmap { fn get_status_shape(step: &Step) -> &str { match step.status() { Status::Blocked => "rectangle", - Status::Finished => "circle", + Status::Finished => "octagon", Status::Ready => "ellipse", Status::Next => "ellipse", Status::Goal => "diamond", -- cgit v1.2.1