Skip to content

Commit

Permalink
1.13.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanong committed Oct 18, 2013
1 parent a329883 commit 7ee3347
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
4 changes: 4 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1.13.2 / 2013-10-18
===================
* fixed; density is a setting not an operator

1.13.1 / 2013-09-15
===================
* added; boolean for % crop
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# gm v1.13.1 [![Build Status](https://travis-ci.org/aheckmann/gm.png?branch=master)](https://travis-ci.org/aheckmann/gm)
# gm v1.13.2 [![Build Status](https://travis-ci.org/aheckmann/gm.png?branch=master)](https://travis-ci.org/aheckmann/gm)

GraphicsMagick and ImageMagick for node

Expand Down
2 changes: 1 addition & 1 deletion lib/args.js
Original file line number Diff line number Diff line change
Expand Up @@ -719,7 +719,7 @@ module.exports = function (proto) {

// http://www.graphicsmagick.org/GraphicsMagick.html#details-density
proto.density = function density (w, h) {
return this.out("-density", w +"x"+ h);
return this.in("-density", w +"x"+ h);
}

// http://www.graphicsmagick.org/GraphicsMagick.html#details-profile
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "gm",
"description": "GraphicsMagick and ImageMagick for node.js",
"version": "1.13.1",
"version": "1.13.2",
"author": "Aaron Heckmann <[email protected]>",
"keywords": [
"graphics",
Expand Down
1 change: 0 additions & 1 deletion test/getterIdentify.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ module.exports = function (_, dir, finish, gm) {

if (im) {
assert.equal(d.Orientation, 'TopLeft');
assert.equal(d['Quality'], 96);
assert.equal(d['Geometry'], '430x488+0+0');
assert.equal(d['Print size'], '5.97222x6.77778');
assert.equal(d['Channel depth'].red, '8-bit');
Expand Down

0 comments on commit 7ee3347

Please sign in to comment.