Skip to content

Commit

Permalink
Update to 4.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
paulstraw committed Aug 25, 2016
1 parent da07d75 commit 9192355
Show file tree
Hide file tree
Showing 4 changed files with 209 additions and 217 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.2.0",
"version": "4.3.0",
"homepage": "https://github.com/imgix/image-api-spec",
"authors": [
"Jason Eberle <[email protected]>"
Expand Down
210 changes: 103 additions & 107 deletions dist/parameters.js
Original file line number Diff line number Diff line change
Expand Up @@ -766,6 +766,108 @@ return {
"url": "https://docs.imgix.com/apis/url/format/fm",
"short_description": "Changes the format of the output image."
},
"fp-debug": {
"display_name": "focal point crosshairs",
"category": "focal_point_crop",
"available_in": [
"url"
],
"expects": [
{
"type": "integer",
"possible_values": [
0,
1
]
},
{
"type": "string",
"possible_values": [
"false",
"true"
]
}
],
"depends": [
"fit=crop",
"crop=focalpoint"
],
"url": "https://www.imgix.com/docs/reference/focalpoint-crop#param-fp-debug",
"short_description": "Displays crosshairs identifying the location of the set focal point"
},
"fp-x": {
"display_name": "focal point x value",
"category": "focal_point_crop",
"available_in": [
"url"
],
"expects": [
{
"type": "unit_scalar",
"default": 0.5,
"strict_range": {
"min": 0,
"max": 1
}
}
],
"depends": [
"fit=crop",
"crop=focalpoint"
],
"url": "https://www.imgix.com/docs/reference/focalpoint-crop#param-fp-x",
"short_description": "Sets the relative horizontal value for the focal point of an image"
},
"fp-y": {
"display_name": "focal point y value",
"category": "focal_point_crop",
"available_in": [
"url"
],
"expects": [
{
"type": "unit_scalar",
"default": 0.5,
"strict_range": {
"min": 0,
"max": 1
}
}
],
"depends": [
"fit=crop",
"crop=focalpoint"
],
"url": "https://www.imgix.com/docs/reference/focalpoint-crop#param-fp-y",
"short_description": "Sets the relative vertical value for the focal point of an image"
},
"fp-z": {
"display_name": "focal point zoom value",
"category": "focal_point_crop",
"available_in": [
"url"
],
"expects": [
{
"type": "number",
"default": 1,
"suggested_range": {
"min": 1,
"max": 10
},
"strict_range": {
"min": 1,
"max": 100
}
}
],
"depends": [
"fit=crop",
"crop=focalpoint"
],
"url": "https://www.imgix.com/docs/reference/focalpoint-crop#param-fp-z",
"short_description": "Sets the relative zoom value for the focal point of an image"
},
"gam": {
"display_name": "gamma",
"category": "adjustment",
Expand Down Expand Up @@ -2396,112 +2498,6 @@ return {
}
},
"experimentalParameters": {
"fp-debug": {
"display_name": "focal point crosshairs",
"category": "focal_point_crop",
"available_in": [
"url"
],
"expects": [
{
"type": "integer",
"possible_values": [
0,
1
]
},
{
"type": "string",
"possible_values": [
"false",
"true"
]
}
],
"depends": [
"fit=crop",
"crop=focalpoint"
],
"experimental": true,
"url": "https://www.imgix.com/docs/reference/focalpoint-crop#param-fp-debug",
"short_description": "Displays crosshairs identifying the location of the set focal point"
},
"fp-x": {
"display_name": "focal point x value",
"category": "focal_point_crop",
"available_in": [
"url"
],
"expects": [
{
"type": "unit_scalar",
"default": 0.5,
"strict_range": {
"min": 0,
"max": 1
}
}
],
"depends": [
"fit=crop",
"crop=focalpoint"
],
"experimental": true,
"url": "https://www.imgix.com/docs/reference/focalpoint-crop#param-fp-x",
"short_description": "Sets the relative horizontal value for the focal point of an image"
},
"fp-y": {
"display_name": "focal point y value",
"category": "focal_point_crop",
"available_in": [
"url"
],
"expects": [
{
"type": "unit_scalar",
"default": 0.5,
"strict_range": {
"min": 0,
"max": 1
}
}
],
"depends": [
"fit=crop",
"crop=focalpoint"
],
"experimental": true,
"url": "https://www.imgix.com/docs/reference/focalpoint-crop#param-fp-y",
"short_description": "Sets the relative vertical value for the focal point of an image"
},
"fp-z": {
"display_name": "focal point zoom value",
"category": "focal_point_crop",
"available_in": [
"url"
],
"expects": [
{
"type": "number",
"default": 1,
"suggested_range": {
"min": 1,
"max": 10
},
"strict_range": {
"min": 1,
"max": 100
}
}
],
"depends": [
"fit=crop",
"crop=focalpoint"
],
"experimental": true,
"url": "https://www.imgix.com/docs/reference/focalpoint-crop#param-fp-z",
"short_description": "Sets the relative zoom value for the focal point of an image"
},
"fps": {
"display_name": "frames per second",
"category": "animation",
Expand Down Expand Up @@ -2648,7 +2644,7 @@ return {
"tsz": "txtsize",
"tt": "txttrack"
},
"version": "4.2.0"
"version": "4.3.0"
};

}));
Loading

0 comments on commit 9192355

Please sign in to comment.