Skip to content

Releases: vbauerster/mpb

mpb 3.0.4

07 Jan 11:02
Compare
Choose a tag to compare

Some new features:

  • Dynamic total, thanks to @mozillazg and @cognusion for the idea.
  • Adaptive bar resize (not supported in windows)

Improvements:

  • Reduced screen blinking, thanks to @lanwen for his pr.
  • Other minor improvements.

mpb 3.0.2

mpb 3.0.1

07 Jul 07:09
Compare
Choose a tag to compare

New ProgressOption: OutputInterceptors. See issue #8.

mpb 3.0.0

06 Jun 12:35
Compare
Choose a tag to compare

mpb v3 release is incompatible with mpb v2!!!

Api changed to favour functional options pattern.

mpb 2.1.1

06 Jun 08:11
Compare
Choose a tag to compare

Last release of v2

mpb 2.1.0

23 May 11:54
Compare
Choose a tag to compare

Huge update. Many bugs related to cancelation have been fixed.

Public API change:

removed:

  • b.GetAppenders
  • b.GetPrependers

modified signature:

  • b.IncrWithReFill(n int, r *Refill)

deprecated method, use b.Complete():

  • b.Completed()

mpb 2.0.7

15 May 08:47
Compare
Choose a tag to compare

Minor refactoring, which doesn't affect any API.
Add goreportcard to README

mpb 2.0.6

21 Apr 07:37
Compare
Choose a tag to compare

More Statistics fields:

type Statistics struct {
	Completed           bool
	Total               int64
	Current             int64
	IncrAmount          int64
	StartTime           time.Time
	TimeElapsed         time.Duration
	TimePerItemEstimate time.Duration
}

mpb 2.0.5

08 Apr 12:04
Compare
Choose a tag to compare

License update to BSD 3-Clause

mpb 2.0.4

31 Mar 07:14
Compare
Choose a tag to compare

Fix issue #7

Bug fixed:

  • Negative percentage display when total <= 0