Browse Source

Release 0.5.0

v1.x 0.5.0
Tj Holowaychuk 14 years ago
parent
commit
8d3eb635bc
  1. 11
      History.md
  2. 2
      lib/canvas.js
  3. 2
      package.json

11
History.md

@ -1,4 +1,15 @@
0.5.0 / 2011-03-14
==================
* Added several more operators (color-dodge, color-burn, difference, etc)
* Performance; no longer re-allocating `closure->data` for each png write
* Fixed freeing of `Context2d` states
* Fixed text alignment / baseline [Olaf]
* Fixed HandleScopes [Olaf]
* Fixed small misc memory leaks
* Fixed `Buffer` usage for node 0.4.x
0.4.3 / 2011-01-11
==================

2
lib/canvas.js

@ -28,7 +28,7 @@ var Canvas = exports = module.exports = Canvas;
* Library version.
*/
exports.version = '0.4.3';
exports.version = '0.5.0';
/**
* Cairo version.

2
package.json

@ -1,6 +1,6 @@
{ "name": "canvas"
, "description": "Canvas graphics API backed by Cairo"
, "version": "0.4.3"
, "version": "0.5.0"
, "author": "TJ Holowaychuk <tj@learnboost.com>"
, "keywords": ["canvas", "graphic", "graphics", "pixman", "cairo"]
, "scripts": {

Loading…
Cancel
Save