Skip to content

Releases: ctongfei/progressbar

0.7.4

20 May 02:56
Compare
Choose a tag to compare

0.7.3

31 Mar 05:43
Compare
Choose a tag to compare

Added support for customizing the decimal format of speed display (PR #49). Thanks @wfxr !

0.7.2

02 Oct 04:39
Compare
Choose a tag to compare
  • Added support for wrapping around Spliterators and Streams. Streams could be either sequential or parallel (#44). Thanks @michaelmior !
  • Added support for displaying speed with unit (PR #43). Thanks @Dani909 !

0.7.1

30 Jul 04:07
Compare
Choose a tag to compare
  • Fixed the problem of not properly closing the JLine Terminal object (#40). Thanks @voseldop !
  • Suppressed JLine warning if a dumb terminal is created (partially fixed #42). Thanks @BuZZ-dEE !
  • Documentation:
    • Moved CHANGELOG.md to the home directory and created a symlink in the docs/ folder to it (#41). Thanks @koppor !
    • Fixed bug (demo code was wrong) in the declarative usage section (#39). Thanks @AbhinavVishak !

0.7.0

15 May 18:44
e5b7e13
Compare
Choose a tag to compare
  • Utilized the try-with-resource pattern for the Java imperative syntax, deprecating ProgressBar#start and ProgressBar#stop.
  • Introduced units for progress bar that enables showing the total amount of work in some unit (e.g. MB / GB).
  • Introduced the builder pattern for constructing progress bars (instead of lots of different constructors).
  • Added declarative usage that wraps around InputStream, which enables tracking the progress of reading a large file or stream.
  • Progress bars are now colorful by default using ANSI color codes.

0.6.0

11 Mar 17:10
15f22d6
Compare
Choose a tag to compare

0.5.5

25 Apr 15:18
Compare
Choose a tag to compare

Fixed the problem of the progress bar being stuck if it finishes too fast. Fixed the problem of StringIndexOutOfBoundsException error when the console width is too small.

0.5.4

15 Apr 21:36
Compare
Choose a tag to compare

Added support for indefinite progress bars.

0.5.3

23 Jan 17:36
Compare
Choose a tag to compare

Type of current/max is changed from int to long.

0.5.2

22 Jan 02:54
Compare
Choose a tag to compare

Fixed line wrapping problem when the extra message is too long; Simplified start method.