Skip to content

Commit

Permalink
Updates version and adds super res
Browse files Browse the repository at this point in the history
  • Loading branch information
vuryanh committed Sep 19, 2023
1 parent 8b0b48b commit c34eef3
Show file tree
Hide file tree
Showing 4 changed files with 75 additions and 9 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "imgix-url-params",
"version": "11.15.4",
"version": "11.16.0",
"homepage": "https://github.com/imgix/imgix-url-params",
"authors": ["Jason Eberle <jason@imgix.com>"],
"description": "Organized, machine-friendly documentation of imgix's URL parameters",
Expand Down
41 changes: 36 additions & 5 deletions dist/parameters.js
Original file line number Diff line number Diff line change
@@ -1,25 +1,21 @@
(function (root, factory) {
if (typeof define === 'function' && define.amd) {
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module unless amdModuleId is set
define([], function () {
return (factory());
return (factory());
});
} else if (typeof exports === 'object') {
} else if (typeof exports === 'object') {
// Node. Does not work with strict CommonJS, but
// only CommonJS-like environments that support module.exports,
// like Node.
module.exports = factory();
} else {
root['imgixParameters'] = factory();
root['imgixParameters'] = factory();
}
}(this, function () {

return {
"version": "11.15.4",
"version": "11.16.0",
"parameters": {
"ar": {
"display_name": "aspect ratio",
Expand Down Expand Up @@ -3293,6 +3289,40 @@ return {
"url": "https://docs.imgix.com/apis/url/text/txt",
"short_description": "Sets the text string to render."
},
"upscale-fallback": {
"display_name": "super resolution fallback",
"category": "super-resolution",
"available_in": [
"url",
"graph",
"output"
],
"expects": [
{
"type": "boolean"
}
],
"default": true,
"url": "https://docs.imgix.com/apis/rendering/super-resolution/upscale-fallback",
"short_description": "Overrides default fallback behavior for super resolution failures"
},
"upscale": {
"display_name": "super resolution",
"category": "super-resolution",
"available_in": [
"url",
"graph",
"output"
],
"expects": [
{
"type": "boolean"
}
],
"default": false,
"url": "https://docs.imgix.com/apis/rendering/super-resolution/upscale",
"short_description": "Uses generative AI fill to upscale low resolution images."
},
"usm": {
"display_name": "unsharp mask",
"category": "adjustment",
Expand Down Expand Up @@ -3505,6 +3535,7 @@ return {
"rotation",
"size",
"stylize",
"super-resolution",
"text",
"typesetting",
"trim",
Expand Down
39 changes: 37 additions & 2 deletions dist/parameters.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "11.15.4",
"version": "11.16.0",
"parameters": {
"ar": {
"display_name": "aspect ratio",
Expand Down Expand Up @@ -3273,6 +3273,40 @@
"url": "https://docs.imgix.com/apis/url/text/txt",
"short_description": "Sets the text string to render."
},
"upscale-fallback": {
"display_name": "super resolution fallback",
"category": "super-resolution",
"available_in": [
"url",
"graph",
"output"
],
"expects": [
{
"type": "boolean"
}
],
"default": true,
"url": "https://docs.imgix.com/apis/rendering/super-resolution/upscale-fallback",
"short_description": "Overrides default fallback behavior for super resolution failures"
},
"upscale": {
"display_name": "super resolution",
"category": "super-resolution",
"available_in": [
"url",
"graph",
"output"
],
"expects": [
{
"type": "boolean"
}
],
"default": false,
"url": "https://docs.imgix.com/apis/rendering/super-resolution/upscale",
"short_description": "Uses generative AI fill to upscale low resolution images."
},
"usm": {
"display_name": "unsharp mask",
"category": "adjustment",
Expand Down Expand Up @@ -3485,6 +3519,7 @@
"rotation",
"size",
"stylize",
"super-resolution",
"text",
"typesetting",
"trim",
Expand Down Expand Up @@ -4639,4 +4674,4 @@
"ZenOldMincho-Regular",
"ZenOldMincho-SemiBold"
]
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "imgix-url-params",
"version": "11.15.4",
"version": "11.16.0",
"description": "Organized, machine-friendly documentation of imgix's URL parameters",
"main": "dist/manifest.json",
"scripts": {
Expand Down

0 comments on commit c34eef3

Please sign in to comment.