Updated to Nim v1.4.0
h3rald h3rald@h3rald.com
Sun, 25 Oct 2020 16:38:32 +0100
4 files changed,
8 insertions(+),
6 deletions(-)
M
nifty.nimble
→
nifty.nimble
@@ -22,7 +22,7 @@ installExt = @["nim"]
# Dependencies -requires "nim >= 0.19.0" +requires "nim >= 1.4.0" const compile = "nim c -d:release" const linux_x64 = "--cpu:amd64 --os:linux -o:nifty"
M
src/niftypkg/config.nim
→
src/niftypkg/config.nim
@@ -1,5 +1,5 @@
const pkgTitle* = "nifty" - pkgVersion* = "1.2.1" + pkgVersion* = "1.2.2" pkgAuthor* = "Fabio Cevasco" pkgDescription* = "A decentralized (pseudo) package manager and script runner."
M
src/niftypkg/minimline.nim
→
src/niftypkg/minimline.nim
@@ -1,8 +1,9 @@
import critbits, - terminal + terminal, + std/exitprocs -system.addQuitProc(resetAttributes) +addExitProc(resetAttributes) when defined(windows): proc getchr*(): cint {.header: "<conio.h>", importc: "_getch".}
M
src/niftypkg/niftylogger.nim
→
src/niftypkg/niftylogger.nim
@@ -1,9 +1,10 @@
import logging, strutils, - terminal + terminal, + std/exitprocs -system.addQuitProc(resetAttributes) +addExitProc(resetAttributes) type NiftyLogger* = ref object of Logger