diff --git a/pit.nimble b/pit.nimble index 6c60834..999aac8 100644 --- a/pit.nimble +++ b/pit.nimble @@ -1,6 +1,6 @@ # Package -version = "4.24.0" +version = "4.24.1" author = "Jonathan Bernard" description = "Personal issue tracker." license = "MIT" diff --git a/src/pit.nim b/src/pit.nim index 0572aec..c0edccc 100644 --- a/src/pit.nim +++ b/src/pit.nim @@ -463,7 +463,7 @@ when isMainModule: ) cmd &= " -g \"" & tags.join(",") & "\"" cmd &= " -n \"pit-id: " & $issue.id & "\"" - cmd &= " \"" & issue.summary & "\"" + cmd &= " \"[" & ($issue.id)[0..<6] & "] " & issue.summary & "\"" discard execShellCmd(cmd) elif targetState == Done or targetState == Pending: discard execShellCmd("ptk stop") diff --git a/src/pitpkg/cliconstants.nim b/src/pitpkg/cliconstants.nim index c9bcd64..3592484 100644 --- a/src/pitpkg/cliconstants.nim +++ b/src/pitpkg/cliconstants.nim @@ -1,4 +1,4 @@ -const PIT_VERSION* = "4.24.0" +const PIT_VERSION* = "4.24.1" const USAGE* = """Usage: pit ( new | add) [] [options] @@ -185,4 +185,4 @@ Issue Properties: If present, expected to be a comma-delimited list of text tags. The -g option is a short-hand for '-p tags:'. -""" +""" \ No newline at end of file