Releases: vbauerster/mpb
Releases · vbauerster/mpb
Release list
mpb v4.7.0
mpb v4.6.0
Added:
Deprecated:
Removed:
func (p *Progress) Abort(b *Bar, remove bool)func WithContext(context.Context) ContainerOption
mpb v4.5.0
Added:
- func NewWithContext(ctx context.Context, options ...ContainerOption) *Progress
- func BarParkTo(runningBar *Bar) BarOption
Deprecated:
- func WithContext(ctx context.Context) ContainerOption
- func BarReplaceOnComplete(runningBar *Bar) BarOption
Fixed bug in func (b *Bar) SetRefill(amount int64) and changed its signature from int to int64.
mpb v4.4.0
mpb v4.3.0
mpb v4.2.0
- better windows support
- for posix terminals, ANSI sequence change from
CUU1,EL\rfor each line to singleCUUn,EDwhere n is line count. Hopefully should fix blinking effect. - for infrequent (long) refresh rates, there is no latency on bar complete event, i.e. bar quits as soon as it has been completed.
- added spinner decorator
- as usual it is go module
mpb v4.0.0
mpb v4 requires Go 1.10.3+ (or Go 1.9.7+)
mpb v4 is a Go module and thus breaks the import path; use "github.com/vbauerster/mpb/v4" and "github.com/vbauerster/mpb/v4/decor"
mpb 3.3.4
Make SetTotal non-blocking, to prevent misuse, such in #34
Some performance optimisations
mpb 3.3.3
mpb 3.3.2
New Bar option BarNewLineExtend.
TimeNormalizer, to be used directly with MovingAverageETA.
Signature of Abort method has been changed a bit.
RefillBy deprecated, use SetRefill instead.