ansi-canvas-render
Advanced tools
Comparing version 1.0.0 to 1.0.1
@@ -0,3 +1,8 @@ | ||
v1.0.1 2016-07-07 | ||
* [[`141f888a51`](https://github.com/TooTallNate/ansi-canvas-render/commit/141f888a51)] - **index**: always reset fg after each row (Nathan Rajlich) | ||
* [[`9be3161013`](https://github.com/TooTallNate/ansi-canvas-render/commit/9be3161013)] - **package**: update "description" (Nathan Rajlich) | ||
v1.0.0 2016-07-06 | ||
* [[`ae769a1718`](https://github.com/TooTallNate/ansi-canvas-render/commit/ae769a1718)] - initial commit (Nathan Rajlich) |
@@ -119,2 +119,3 @@ /** | ||
// beginning of the row | ||
cursor.fg.reset(); | ||
cursor.bg.reset(); | ||
@@ -124,6 +125,3 @@ cursor.write('\n'); | ||
cursor.fg.reset(); | ||
cursor.bg.reset(); | ||
cursor.flush(); | ||
} |
{ | ||
"name": "ansi-canvas-render", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Renders a <canvas> instance to a Writable stream with ANSI codes", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
3782
99