- fixed a bug that occurs when a progress bar attempts to draw itself on a console with very few columns
- now prevents progress bar from exceeding TTY width by limiting its width to the with of the TTY
- updated documentation and various other repo maintenance
- updated makefile to run examples with
make
- removed dependency on readline module
- now supports streams, for example output progress bar to stderr, while piping stdout
- increases performance and flicker by remembering the last drawn progress bar
- fixes a bug where bar would bug when initializing
- allows to pass updated tokens when ticking or updating the bar
- fixes a bug where the bar would throw if skipping to far
- lets you pass an
fmt
and atotal
instead of an options object
- eta and elapsed tokens default to 0.0 instead of ?.?
- better JSDocs
- added back and forth example
- added method to update the progress bar to a specific percentage
- added an option to hide the bar on completion
- on os x readline now works, reverting the terminal hack
- remove .version
- merge pull request #15 from davglass/readline-osx
- on OSX revert back to terminal hack to avoid a readline bug
- fixed logic bug that caused bar to jump one extra space at the end [davglass]
- working with readline impl, even on Windows [davglass]
- using readline instead of the \r hack [davglass]
- add ability to tick by zero chunks - tick(0)
- fix ETA. Closes #4 [lwille]
- allow more recent versions of node
- changed; erase the line when complete
- added custom tokens support
- fixed; clear line before writing
- initial release