diff --git a/private/version.nim b/private/version.nim index 388a931..398a81c 100644 --- a/private/version.nim +++ b/private/version.nim @@ -1 +1 @@ -const PTK_VERSION* = "1.0.4" \ No newline at end of file +const PTK_VERSION* = "1.0.5" \ No newline at end of file diff --git a/ptk.nim b/ptk.nim index 843c37f..d303b84 100644 --- a/ptk.nim +++ b/ptk.nim @@ -152,17 +152,18 @@ proc edit(mark: Mark): Mark = discard os.execShellCmd "$EDITOR " & tempFileName & " /dev/tty" var markPart = Time + var notes: seq[string] = @[] for line in lines tempFileName: - if strip(line)[0] == '#': continue + if strip(line).len > 0 and strip(line)[0] == '#': continue elif markPart == Time: result.time = parseTime(line); markPart = Summary elif markPart == Summary: result.summary = line; markPart = Tags elif markPart == Tags: result.tags = line.split({',', ';'}); - result.notes = "" markPart = Notes - else: result.notes &= line & "\x0D\x0A" + else: notes.add(line) + result.notes = notes.join("\n") finally: close(tempFile) proc filterMarkIndices(timeline: Timeline, args: Table[string, Value]): seq[int] = diff --git a/ptk.nimble b/ptk.nimble index 5bb70fb..53d3366 100644 --- a/ptk.nimble +++ b/ptk.nimble @@ -1,6 +1,6 @@ # Package -version = "1.0.4" +version = "1.0.5" author = "Jonathan Bernard" description = "Personal Time Keeper" license = "MIT"