diff --git a/private/version.nim b/private/version.nim index 398a81c..7c65ce4 100644 --- a/private/version.nim +++ b/private/version.nim @@ -1 +1 @@ -const PTK_VERSION* = "1.0.5" \ No newline at end of file +const PTK_VERSION* = "1.0.6" \ No newline at end of file diff --git a/ptk.nim b/ptk.nim index d303b84..e277b7e 100644 --- a/ptk.nim +++ b/ptk.nim @@ -3,8 +3,8 @@ ## ## Simple time keeping CLI -import algorithm, docopt, json, langutils, logging, os, nre, sequtils, - sets, strutils, tempfile, terminal, times, uuids +import algorithm, docopt, json, langutils, logging, os, nre, std/wordwrap, + sequtils, sets, strutils, tempfile, terminal, times, uuids import timeutils except `-`; @@ -98,7 +98,7 @@ proc writeMarks(timeline: Timeline, indices: seq[int], includeNotes = false): vo if includeNotes and len(w.mark.notes.strip) > 0: writeLine(stdout, "") - let wrappedNotes = wordWrap(s = w.mark.notes, + let wrappedNotes = wrapWords(s = w.mark.notes, maxLineWidth = colWidth) for line in splitLines(wrappedNotes): writeLine(stdout, spaces(notesPrefixLen) & line) diff --git a/ptk.nimble b/ptk.nimble index 53d3366..1f39b1e 100644 --- a/ptk.nimble +++ b/ptk.nimble @@ -1,6 +1,6 @@ # Package -version = "1.0.5" +version = "1.0.6" author = "Jonathan Bernard" description = "Personal Time Keeper" license = "MIT"