Comparing version 1.11.0 to 1.11.1
@@ -0,1 +1,6 @@ | ||
1.11.1 / 2013-08-17 | ||
=================== | ||
* added; proto.selectFrame(#) | ||
* fixed; getters should not ignore frame selection | ||
1.11.0 / 2013-07-23 | ||
@@ -2,0 +7,0 @@ =================== |
@@ -13,2 +13,9 @@ | ||
module.exports = function (proto) { | ||
// change the specified frame. | ||
// See #202. | ||
proto.selectFrame = function (frame) { | ||
if (typeof frame === 'number') | ||
this.sourceFrames = '[' + frame + ']'; | ||
return this; | ||
} | ||
@@ -15,0 +22,0 @@ // define the sub-command to use, http://www.graphicsmagick.org/utilities.html |
@@ -269,3 +269,3 @@ /** | ||
args.push(self.sourceStream || self.sourceBuffer ? '-' : self.source); | ||
args = args.concat(self.src()); | ||
return args; | ||
@@ -272,0 +272,0 @@ } |
{ "name": "gm" | ||
, "description": "GraphicsMagick for node.js" | ||
, "version": "1.11.0" | ||
, "version": "1.11.1" | ||
, "author": "Aaron Heckmann <aaron.heckmann+github@gmail.com>" | ||
@@ -5,0 +5,0 @@ , "keywords": ["graphics", "magick", "image", "graphicsmagick", "imagemagick", "gm", "convert", "identify", "compare"] |
@@ -1,2 +0,2 @@ | ||
# gm v1.11.0 [![Build Status](https://travis-ci.org/aheckmann/gm.png?branch=master)](https://travis-ci.org/aheckmann/gm) | ||
# gm v1.11.1 [![Build Status](https://travis-ci.org/aheckmann/gm.png?branch=master)](https://travis-ci.org/aheckmann/gm) | ||
@@ -207,2 +207,8 @@ GraphicsMagick for node | ||
which correctly yields: | ||
```bash | ||
gm "convert" "label:Offline" "PNG:-" | ||
``` | ||
### Custom Identify Format String | ||
@@ -228,8 +234,2 @@ | ||
which correctly yields: | ||
```bash | ||
gm "convert" "label:Offline" "PNG:-" | ||
``` | ||
## Getting started | ||
@@ -236,0 +236,0 @@ First download and install [GraphicsMagick](http://www.graphicsmagick.org/) or [ImageMagick](http://www.imagemagick.org/). In Mac OS X, you can simply use [Homebrew](http://mxcl.github.io/homebrew/) and do: |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
98188
1836