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
==================

60
package.json

@ -1,27 +1,39 @@
{ "name": "canvas"
, "description": "Canvas graphics API backed by Cairo"
, "version": "1.1.4"
, "author": "TJ Holowaychuk <tj@learnboost.com>"
, "contributors": [
"Nathan Rajlich <nathan@tootallnate.net>"
, "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"
, "repository": "git://github.com/learnboost/node-canvas"
, "scripts": {
{
"name": "canvas",
"description": "Canvas graphics API backed by Cairo",
"version": "1.1.5",
"author": "TJ Holowaychuk <tj@learnboost.com>",
"contributors": [
"Nathan Rajlich <nathan@tootallnate.net>",
"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",
"repository": "git://github.com/learnboost/node-canvas",
"scripts": {
"test": "make test"
}
, "dependencies": {
},
"dependencies": {
"nan": "~1.2.0"
}
, "devDependencies": {
"express": "3.0"
, "jade": "0.28.1"
, "mocha": "*"
, "should": "*"
}
, "engines": { "node": ">= 0.6.0" }
, "main": "./lib/canvas.js"
},
"devDependencies": {
"express": "3.0",
"jade": "0.28.1",
"mocha": "*",
"should": "*"
},
"engines": {
"node": ">= 0.6.0"
},
"main": "./lib/canvas.js"
}

Loading…
Cancel
Save