-
Notifications
You must be signed in to change notification settings - Fork 222
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #58 from visionmedia/no-readline
bump to version 1.1.5, added missing changelogs, make now runs all examples, removed readline dependency and a little ocd
- Loading branch information
Showing
4 changed files
with
87 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,67 @@ | ||
### 1.1.5 / 2014-03-25 | ||
|
||
1.0.0 / 2013-06-18 | ||
================== | ||
* updated documentation and various other repo maintenance | ||
* updated makefile to run examples with `make` | ||
* removed dependency on readline module | ||
|
||
* remove .version | ||
* >=. Closes #19 | ||
* Merge pull request #15 from davglass/readline-osx | ||
* On OSX revert back to terminal hack to avoid a readline bug | ||
### 1.1.4 / 2014-03-14 | ||
|
||
0.1.0 / 2012-09-19 | ||
================== | ||
* now supports streams, for example output progress bar to stderr, while piping | ||
stdout | ||
* increases performance and flicker by remembering the last drawn progress bar | ||
|
||
* 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] | ||
### 1.1.3 / 2013-12-31 | ||
|
||
0.0.5 / 2012-08-07 | ||
================== | ||
* 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 | ||
|
||
### 1.1.2 / 2013-10-17 | ||
|
||
* lets you pass an `fmt` and a `total` instead of an options object | ||
|
||
### 1.1.0 / 2013-09-18 | ||
|
||
* 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 | ||
|
||
### 1.0.1 / 2013-08-07 | ||
|
||
* on os x readline now works, reverting the terminal hack | ||
|
||
### 1.0.0 / 2013-06-18 | ||
|
||
* remove .version | ||
* merge pull request #15 from davglass/readline-osx | ||
* on OSX revert back to terminal hack to avoid a readline bug | ||
|
||
### 0.1.0 / 2012-09-19 | ||
|
||
* 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] | ||
|
||
### 0.0.5 / 2012-08-07 | ||
|
||
* add ability to tick by zero chunks - tick(0) | ||
* fix ETA. Closes #4 [lwille] | ||
|
||
0.0.4 / 2011-11-14 | ||
================== | ||
### 0.0.4 / 2011-11-14 | ||
|
||
* Allow more recent versions of node | ||
* allow more recent versions of node | ||
|
||
0.0.3 / 2011-04-20 | ||
================== | ||
### 0.0.3 / 2011-04-20 | ||
|
||
* Changed; erase the line when complete | ||
* changed; erase the line when complete | ||
|
||
0.0.2 / 2011-04-20 | ||
================== | ||
### 0.0.2 / 2011-04-20 | ||
|
||
* Added custom tokens support | ||
* Fixed; clear line before writing | ||
* added custom tokens support | ||
* fixed; clear line before writing | ||
|
||
0.0.1 / 2010-01-03 | ||
================== | ||
### 0.0.1 / 2010-01-03 | ||
|
||
* Initial release | ||
* initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Flexible CLI ASCII progress bar for Node.js. | ||
Flexible ascii progress bar. | ||
|
||
## Installation | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "progress" | ||
, "version": "1.1.4" | ||
, "version": "1.1.5" | ||
, "description": "Flexible ascii progress bar" | ||
, "keywords": ["cli", "progress"] | ||
, "author": "TJ Holowaychuk <[email protected]>" | ||
|