Skip to content

Commit

Permalink
Merge pull request #3 from imgix/update-to-4.4.0-spec
Browse files Browse the repository at this point in the history
Update to 4.4.0
  • Loading branch information
paulstraw authored Sep 2, 2016
2 parents 9192355 + 8f64287 commit 1c5c568
Show file tree
Hide file tree
Showing 4 changed files with 140 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "image-api-spec",
"version": "4.3.0",
"version": "4.4.0",
"homepage": "https://github.com/imgix/image-api-spec",
"authors": [
"Jason Eberle <[email protected]>"
Expand Down
70 changes: 69 additions & 1 deletion dist/parameters.js
Original file line number Diff line number Diff line change
Expand Up @@ -1312,6 +1312,74 @@ return {
"url": "https://docs.imgix.com/apis/url/mask",
"short_description": "Specifies the location of the mask image."
},
"max-h": {
"display_name": "maximum height",
"category": "size",
"available_in": [
"url"
],
"expects": [
{
"type": "number"
}
],
"depends": [
"fit=crop"
],
"url": "https://docs.imgix.com/apis/url/size/max-h",
"short_description": "Specifies the maximum height of the output image in pixels."
},
"max-w": {
"display_name": "maximum width",
"category": "size",
"available_in": [
"url"
],
"expects": [
{
"type": "number"
}
],
"depends": [
"fit=crop"
],
"url": "https://docs.imgix.com/apis/url/size/max-w",
"short_description": "Specifies the maximum width of the output image in pixels."
},
"min-h": {
"display_name": "minimum height",
"category": "size",
"available_in": [
"url"
],
"expects": [
{
"type": "number"
}
],
"depends": [
"fit=crop"
],
"url": "https://docs.imgix.com/apis/url/size/min-h",
"short_description": "Specifies the minimum height of the output image in pixels."
},
"min-w": {
"display_name": "minimum width",
"category": "size",
"available_in": [
"url"
],
"expects": [
{
"type": "number"
}
],
"depends": [
"fit=crop"
],
"url": "https://docs.imgix.com/apis/url/size/min-w",
"short_description": "Specifies the minimum width of the output image in pixels."
},
"mono": {
"display_name": "monochrome",
"category": "stylize",
Expand Down Expand Up @@ -2644,7 +2712,7 @@ return {
"tsz": "txtsize",
"tt": "txttrack"
},
"version": "4.3.0"
"version": "4.4.0"
};

}));
70 changes: 69 additions & 1 deletion dist/parameters.json
Original file line number Diff line number Diff line change
Expand Up @@ -1296,6 +1296,74 @@
"url": "https://docs.imgix.com/apis/url/mask",
"short_description": "Specifies the location of the mask image."
},
"max-h": {
"display_name": "maximum height",
"category": "size",
"available_in": [
"url"
],
"expects": [
{
"type": "number"
}
],
"depends": [
"fit=crop"
],
"url": "https://docs.imgix.com/apis/url/size/max-h",
"short_description": "Specifies the maximum height of the output image in pixels."
},
"max-w": {
"display_name": "maximum width",
"category": "size",
"available_in": [
"url"
],
"expects": [
{
"type": "number"
}
],
"depends": [
"fit=crop"
],
"url": "https://docs.imgix.com/apis/url/size/max-w",
"short_description": "Specifies the maximum width of the output image in pixels."
},
"min-h": {
"display_name": "minimum height",
"category": "size",
"available_in": [
"url"
],
"expects": [
{
"type": "number"
}
],
"depends": [
"fit=crop"
],
"url": "https://docs.imgix.com/apis/url/size/min-h",
"short_description": "Specifies the minimum height of the output image in pixels."
},
"min-w": {
"display_name": "minimum width",
"category": "size",
"available_in": [
"url"
],
"expects": [
{
"type": "number"
}
],
"depends": [
"fit=crop"
],
"url": "https://docs.imgix.com/apis/url/size/min-w",
"short_description": "Specifies the minimum width of the output image in pixels."
},
"mono": {
"display_name": "monochrome",
"category": "stylize",
Expand Down Expand Up @@ -2628,5 +2696,5 @@
"tsz": "txtsize",
"tt": "txttrack"
},
"version": "4.3.0"
"version": "4.4.0"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "image-api-spec",
"version": "4.3.0",
"version": "4.4.0",
"description": "A single source of truth for the imgix URL API.",
"main": "dist/manifest.json",
"scripts": {
Expand Down

0 comments on commit 1c5c568

Please sign in to comment.