Browse Source

Release 1.1.5

v1.x 1.1.5
Nathan Rajlich 11 years ago
parent
commit
a1bcaf376a
  1. 14
      History.md
  2. 60
      package.json

14
History.md

@ -1,3 +1,17 @@
1.1.5 / 2014-06-26
==================
* Readme: remove Contributors section
* Readme: update copyright
* On Windows, copy required DLLs next to ".node" file (#442 @pandell)
* Duplicate "msvc_settings" for "Debug" configuration
* Remove unneeded #include <nan.h>
* Use float constants to prevent double->float conversion warning
* Ignore Visual C++ 2013 warnings (#441 @pandell)
* Add algorithm include to CanvasRenderingContext2d.cc for std::min (#435 @kkoopa)
* Updated NAN to 1.2.0 (#434 @kkoopa)
1.1.4 / 2014-06-08 1.1.4 / 2014-06-08
================== ==================

60
package.json

@ -1,27 +1,39 @@
{ "name": "canvas" {
, "description": "Canvas graphics API backed by Cairo" "name": "canvas",
, "version": "1.1.4" "description": "Canvas graphics API backed by Cairo",
, "author": "TJ Holowaychuk <tj@learnboost.com>" "version": "1.1.5",
, "contributors": [ "author": "TJ Holowaychuk <tj@learnboost.com>",
"Nathan Rajlich <nathan@tootallnate.net>" "contributors": [
, "Rod Vagg <r@va.gg>" "Nathan Rajlich <nathan@tootallnate.net>",
, "Juriy Zaytsev <kangax@gmail.com>" "Rod Vagg <r@va.gg>",
] "Juriy Zaytsev <kangax@gmail.com>"
, "keywords": ["canvas", "graphic", "graphics", "pixman", "cairo", "image", "images", "pdf"] ],
, "homepage": "https://github.com/learnboost/node-canvas" "keywords": [
, "repository": "git://github.com/learnboost/node-canvas" "canvas",
, "scripts": { "graphic",
"graphics",
"pixman",
"cairo",
"image",
"images",
"pdf"
],
"homepage": "https://github.com/learnboost/node-canvas",
"repository": "git://github.com/learnboost/node-canvas",
"scripts": {
"test": "make test" "test": "make test"
} },
, "dependencies": { "dependencies": {
"nan": "~1.2.0" "nan": "~1.2.0"
} },
, "devDependencies": { "devDependencies": {
"express": "3.0" "express": "3.0",
, "jade": "0.28.1" "jade": "0.28.1",
, "mocha": "*" "mocha": "*",
, "should": "*" "should": "*"
} },
, "engines": { "node": ">= 0.6.0" } "engines": {
, "main": "./lib/canvas.js" "node": ">= 0.6.0"
},
"main": "./lib/canvas.js"
} }

Loading…
Cancel
Save