Browse Source

Release 0.0.5

v1.x 0.0.5
Tj Holowaychuk 14 years ago
parent
commit
0a5aa4cbd0
  1. 14
      History.md
  2. 2
      lib/canvas.js
  3. 2
      package.json

14
History.md

@ -1,4 +1,18 @@
0.0.5 / 2010-11-10
==================
* Added custom port support to _test/server.js_
* Added more global composite operator support
* Added `Context2d#antialias=`
* Added _voronoi_ example
* Added -D__NDEBUG__ to default build
* Added __BUFFER_DATA__ macro for backwards compat buffer data access [Don Park]
* Fixed getter bug preventing patterns from being returned via `fillStyle` etc
* Fixed; __CAIRO_STATUS_NO_MEMORY___ on failed {re,m}alloc()
* Fixed; free `Canvas::ToBuffer()` closure data
0.0.4 / 2010-11-09
==================

2
lib/canvas.js

@ -26,7 +26,7 @@ var Canvas = exports = module.exports = Canvas;
* Library version.
*/
exports.version = '0.0.4';
exports.version = '0.0.5';
/**
* Cairo version.

2
package.json

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

Loading…
Cancel
Save