Browse Source

Release 0.12.1

v1.x 0.12.1
TJ Holowaychuk 13 years ago
parent
commit
5ed27bff1f
  1. 10
      History.md
  2. 2
      lib/canvas.js
  3. 2
      package.json

10
History.md

@ -1,4 +1,14 @@
0.12.1 / 2012-06-29
==================
* fix jpeg malloc Image issue. Closes #160 [c-spencer]
* Improve Image mode API
* Add clearData method to handle reassignment of src, and clean up mime data memory handling.
* Improve how _data_len is managed and use to adjust memory, hide more of mime API behind cairo version conditional.
* Add optional mime-data tracking to Image.
* Refactor JPEG decoding into decodeJPEGIntoSurface
0.12.0 / 2012-05-02
==================

2
lib/canvas.js

@ -29,7 +29,7 @@ var Canvas = exports = module.exports = Canvas;
* Library version.
*/
exports.version = '0.12.0';
exports.version = '0.12.1';
/**
* Cairo version.

2
package.json

@ -1,6 +1,6 @@
{ "name": "canvas"
, "description": "Canvas graphics API backed by Cairo"
, "version": "0.12.0"
, "version": "0.12.1"
, "author": "TJ Holowaychuk <tj@learnboost.com>"
, "keywords": ["canvas", "graphic", "graphics", "pixman", "cairo", "image", "images", "pdf"]
, "homepage": "https://github.com/learnboost/node-canvas"

Loading…
Cancel
Save