Stop no longer appends extra stop messages if we're already stopped.

This commit is contained in:
Jonathan Bernard 2018-05-16 11:50:08 -05:00
parent 75f74c3a0a
commit 56be47f7e1
2 changed files with 6 additions and 2 deletions

View File

@ -413,7 +413,7 @@ Options:
let now = getTime().local
# Parse arguments
let args = docopt(doc, version = "ptk 0.12.1")
let args = docopt(doc, version = "ptk 0.12.2")
if args["--echo-args"]: echo $args
@ -493,6 +493,10 @@ Options:
if args["stop"]:
if timeline.marks.last.summary == STOP_MSG:
echo "no current task, nothing to stop"
quit(0)
let newMark: Mark = (
id: genUUID(),
time: if args["--time"]: parseTime($args["--time"]) else: now,

View File

@ -1,6 +1,6 @@
# Package
version = "0.12.1"
version = "0.12.2"
author = "Jonathan Bernard"
description = "Personal Time Keeper"
license = "MIT"