Update to reflect stdlib changes in Nim 1.2
This commit is contained in:
parent
9de8a39d9e
commit
a58c7923cb
@ -1 +1 @@
|
|||||||
const PTK_VERSION* = "1.0.5"
|
const PTK_VERSION* = "1.0.6"
|
6
ptk.nim
6
ptk.nim
@ -3,8 +3,8 @@
|
|||||||
##
|
##
|
||||||
## Simple time keeping CLI
|
## Simple time keeping CLI
|
||||||
|
|
||||||
import algorithm, docopt, json, langutils, logging, os, nre, sequtils,
|
import algorithm, docopt, json, langutils, logging, os, nre, std/wordwrap,
|
||||||
sets, strutils, tempfile, terminal, times, uuids
|
sequtils, sets, strutils, tempfile, terminal, times, uuids
|
||||||
|
|
||||||
import timeutils except `-`;
|
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:
|
if includeNotes and len(w.mark.notes.strip) > 0:
|
||||||
writeLine(stdout, "")
|
writeLine(stdout, "")
|
||||||
let wrappedNotes = wordWrap(s = w.mark.notes,
|
let wrappedNotes = wrapWords(s = w.mark.notes,
|
||||||
maxLineWidth = colWidth)
|
maxLineWidth = colWidth)
|
||||||
for line in splitLines(wrappedNotes):
|
for line in splitLines(wrappedNotes):
|
||||||
writeLine(stdout, spaces(notesPrefixLen) & line)
|
writeLine(stdout, spaces(notesPrefixLen) & line)
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# Package
|
# Package
|
||||||
|
|
||||||
version = "1.0.5"
|
version = "1.0.6"
|
||||||
author = "Jonathan Bernard"
|
author = "Jonathan Bernard"
|
||||||
description = "Personal Time Keeper"
|
description = "Personal Time Keeper"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user