* `--yesterday` is like `--today`, but for yesterday 😄.
* `--or` changes the behavior of filter criteria to return a union of
events matching an of the criteria than an intersection of events
matching all the criteria. Example:
ptk list --today --yesterday
Will never return results (because the criteria are mutually
exclusive).
ptk list --today --or --yesterday
Will return the marks for both today and yesterday.
13 lines
296 B
Nim
13 lines
296 B
Nim
# Package
|
|
|
|
version = "0.12.0"
|
|
author = "Jonathan Bernard"
|
|
description = "Personal Time Keeper"
|
|
license = "MIT"
|
|
bin = @["ptk"]
|
|
|
|
# Dependencies
|
|
|
|
requires @["nim >= 0.18.0", "docopt >= 0.6.4", "uuids", "langutils", "tempfile", "timeutils >= 0.2.2", "isaac >= 0.1.2"]
|
|
|