Browse Source

Release 0.3.3

v1.x 0.3.3
Tj Holowaychuk 14 years ago
parent
commit
86cc3e80f8
  1. 7
      History.md
  2. 2
      lib/canvas.js
  3. 2
      package.json

7
History.md

@ -1,4 +1,11 @@
0.3.3 / 2010-11-30
==================
* Added `CanvasRenderingContext2d#patternQuality` accessor, accepting _fast_, _good_, and _best_
* Fixed; pre-multiply `putImageData()` components
* Fixed; `PixelArray` data is not premultiplied
0.3.2 / 2010-11-26
==================

2
lib/canvas.js

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

2
package.json

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

Loading…
Cancel
Save