Add start
as an alias for add
.
This commit is contained in:
parent
4a878026d8
commit
72c332fa45
8
ptk.nim
8
ptk.nim
@ -344,8 +344,8 @@ when isMainModule:
|
|||||||
let doc = """
|
let doc = """
|
||||||
Usage:
|
Usage:
|
||||||
ptk init [options]
|
ptk init [options]
|
||||||
ptk add [options]
|
ptk (add | start) [options]
|
||||||
ptk add [options] <summary>
|
ptk (add | start) [options] <summary>
|
||||||
ptk resume [options] [<id>]
|
ptk resume [options] [<id>]
|
||||||
ptk amend [options] [<id>] [<summary>]
|
ptk amend [options] [<id>] [<summary>]
|
||||||
ptk merge <timeline> [<timeline>...]
|
ptk merge <timeline> [<timeline>...]
|
||||||
@ -387,7 +387,7 @@ Options:
|
|||||||
let now = getLocalTime(getTime())
|
let now = getLocalTime(getTime())
|
||||||
|
|
||||||
# Parse arguments
|
# Parse arguments
|
||||||
let args = docopt(doc, version = "ptk 0.11.1")
|
let args = docopt(doc, version = "ptk 0.11.2")
|
||||||
|
|
||||||
if args["--echo-args"]: echo $args
|
if args["--echo-args"]: echo $args
|
||||||
|
|
||||||
@ -507,7 +507,7 @@ Options:
|
|||||||
|
|
||||||
saveTimeline(timeline, timelineLocation)
|
saveTimeline(timeline, timelineLocation)
|
||||||
|
|
||||||
if args["add"]:
|
if args["add"] or args["start"]:
|
||||||
|
|
||||||
var newMark: Mark = (
|
var newMark: Mark = (
|
||||||
id: genUUID(),
|
id: genUUID(),
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# Package
|
# Package
|
||||||
|
|
||||||
version = "0.11.1"
|
version = "0.11.2"
|
||||||
author = "Jonathan Bernard"
|
author = "Jonathan Bernard"
|
||||||
description = "Personal Time Keeper"
|
description = "Personal Time Keeper"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user