- We now always protect the left margin when printing task details (including tags) to make it easier to skim down that line. - Also made the actual summary always follow immediately after the ID, to align to that skimmable line. - Moved the information about the delegatee to the end of the summary, next to the tags, and changed the color of the delegatee to make it easier to distinguish. - Added the `-G` option, to allow filtering out issues matching any of the provided tags. - We now allow options to be passed to both the `delegate` and `help` command. Any options are ignored, but this allows the use of tools like `cmd_shell` which always wrap commands with the pre-given options.
26 lines
760 B
Nim
26 lines
760 B
Nim
# Package
|
|
|
|
version = "4.21.0"
|
|
author = "Jonathan Bernard"
|
|
description = "Personal issue tracker."
|
|
license = "MIT"
|
|
srcDir = "src"
|
|
bin = @["pit", "pit_api"]
|
|
|
|
# Dependencies
|
|
|
|
requires @[
|
|
"nim >= 1.4.0",
|
|
"docopt 0.6.8",
|
|
"jester 0.5.0",
|
|
"uuids 0.1.10",
|
|
|
|
"https://git.jdb-software.com/jdb/nim-cli-utils.git >= 0.6.4",
|
|
"https://git.jdb-software.com/jdb/nim-lang-utils.git >= 0.4.0",
|
|
"https://git.jdb-software.com/jdb/nim-time-utils.git >= 0.4.0",
|
|
"https://git.jdb-software.com/jdb/nim-data-uri.git >= 1.0.0",
|
|
"https://git.jdb-software.com/jdb/update-nim-package-version >= 0.2.0"
|
|
]
|
|
|
|
task updateVersion, "Update the version of this package.":
|
|
exec "update_nim_package_version pit 'src/pitpkg/cliconstants.nim'" |