When completing an issue, print info about any new issue created by recurrence.

This commit is contained in:
2021-09-21 10:14:49 -05:00
parent 7bccd83e23
commit df854f864c
4 changed files with 10 additions and 4 deletions

View File

@ -315,8 +315,8 @@ proc nextRecurrence*(tasksDir: string, rec: Recurrence, defaultIssue: Issue): Is
let newProps = newTable[string,string]()
for k, v in baseIssue.properties:
if k != "created" and k != "completed":
newProps[k] = v
if k != "completed": newProps[k] = v
newProps["prev-recurrence"] = $baseIssue.id
result = Issue(
id: genUUID(),

View File

@ -1 +1 @@
const PIT_VERSION* = "4.16.0"
const PIT_VERSION* = "4.17.0"