progressbar icon indicating copy to clipboard operation
progressbar copied to clipboard

A really basic thread-safe progress bar for Golang applications

Results 44 progressbar issues
Sort by recently updated
recently updated
newest added

The current implementation of the `Finish()` function sets `currentNum` and invokes `Add(0)`. While this correctly updates `currentNum`, it does not correctly update `currentBytes`. As a result, if `OptionShowBytes`, `OptionShowIts`, or...

I realized that we have this method https://github.com/schollz/progressbar/blob/03fc4e907750adc6f00a004986a63c80616923b8/progressbar.go#L361-L368 it was called by `NewOption64` https://github.com/schollz/progressbar/blob/03fc4e907750adc6f00a004986a63c80616923b8/progressbar.go#L319-L334 So even we didn't render it, the lastShown time was set to time.Now() which is not...

This pr is created to resolve https://github.com/schollz/progressbar/issues/176. You can using this new feature like this: ```go package main import ( "fmt" "github.com/schollz/progressbar/v3" "time" ) func main(){ bar := progressbar.NewOptions(100,progressbar.OptionSetMaxDetailRow(10)) for...

fix https://github.com/schollz/progressbar/issues/147. And more explanation can be seen at pr https://github.com/schollz/progressbar/pull/192 ,which was accidentally closed by me.🥲