Stop no longer appends extra stop messages if we're already stopped.
This commit is contained in:
parent
75f74c3a0a
commit
56be47f7e1
6
ptk.nim
6
ptk.nim
@ -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,
|
||||
|
@ -1,6 +1,6 @@
|
||||
# Package
|
||||
|
||||
version = "0.12.1"
|
||||
version = "0.12.2"
|
||||
author = "Jonathan Bernard"
|
||||
description = "Personal Time Keeper"
|
||||
license = "MIT"
|
||||
|
Loading…
x
Reference in New Issue
Block a user