Default output to stdout.

This commit is contained in:
Jonathan Bernard 2023-01-08 16:52:48 -06:00
parent 57e9419565
commit a5dae03897
3 changed files with 4 additions and 5 deletions

View File

@ -2,7 +2,7 @@ apply plugin: "groovy"
apply plugin: "maven"
group = "com.jdbernard"
version = "1.2.1"
version = "1.2.2"
repositories {
mavenLocal()

View File

@ -1,6 +1,6 @@
# Package
version = "1.2.1"
version = "1.2.2"
author = "Jonathan Bernard"
description = "Utility for writing dynamic progress bars to the console."
license = "BSD"
@ -9,4 +9,3 @@ srcDir = "src/main/nim"
# Dependencies
requires "nim >= 0.13.0"

View File

@ -13,7 +13,7 @@ proc getMax*(pd: Progress): BiggestInt =
proc setMax*(pd: Progress, maxValue: BiggestInt) =
pd.maxValue = max(maxValue, 1)
proc newProgress*(sout: File, maxValue: BiggestInt): Progress =
proc newProgress*(maxValue: BiggestInt, sout: File = stdout): Progress =
return Progress(sout: sout,
startTime: cpuTime(),
lastStep: 0,
@ -46,7 +46,7 @@ proc updateProgress*(pd: Progress, newValue: BiggestInt, info: string): void =
'='.repeat(displayedSteps) & (if curStep > 0: "0" else: "") &
'-'.repeat(pd.maxSteps - curStep) & " " &
displayedInfo & " -- (" &
(curPercent * 100).formatFloat(ffDecimal, 2) & "%"
(curPercent * 100).formatFloat(ffDecimal, 2) & "%"
if curPercent > 0.05:
line &= ", "