Releases: vbauerster/mpb
Releases · vbauerster/mpb
Release list
v7.1.5
v7.1.4
v7.1.3
v7.1.2
Added:
If you prefer bar with inclusive ending tip, like [=====>] 100%, then do:
bar := p.Add(int64(total),
mpb.NewBarFiller(mpb.BarStyle().TipOnComplete(">")),
mpb.AppendDecorators(decor.Percentage()),
)v7.0.6
v7.0.5
This release fixes bar.Abort() method behavior, see #93.
It also contains optimizations which reduce flickering if many bars are used.
v7.0.2
v7 released to support complex filler 'runes', see #86.
Breaking change:
Signature of NewBarFiller function has changed. If you never used that function before, it's safe to migrate to v7.
Related examples that use features of v7:
mexicanBar
spinTipBar
singleBar
v6.0.2
Removed:
- func BarStyle(style string) BarOption
- func BarReverse() BarOption
- func SpinnerStyle(frames []string) BarOption
- func TrimSpace() BarOption
To set bar style use BarFiller constructors.
Added:
v5.4.0
- Fixed issue #85.
- BarFillerTrim same as TrimSpace but for better discoverability.
- One more test
TestMaxWidthDistributor
v5.3.0
Decorators added: