diff --git a/README.md b/README.md index 4d5fa995..5b3969bc 100644 --- a/README.md +++ b/README.md @@ -1150,6 +1150,16 @@ here. * ifunny (Logo) - [Illumination](http://www.illumination.com/) * gru-plan ([Original "Despicable Me" Movie](http://www.despicable.me/)) +- [ImageMagick](https://imagemagick.org/index.php) + * charcoal (Image Manipulation) + * emboss (Image Manipulation) + * implode (Image Manipulation) + * liquid-rescale (Image Manipulation) + * noise (Image Manipulation) + * oil-painting (Image Manipulation) + * sketch (Image Manipulation) + * squish (Image Manipulation) + * swirl (Image Manipulation) - [Imgur](https://imgur.com/) * blush ([API](https://apidocs.imgur.com/)) * bro-hoof ([API](https://apidocs.imgur.com/)) diff --git a/commands/edit-image/charcoal.js b/commands/edit-image/charcoal.js index 302f59ab..1181523d 100644 --- a/commands/edit-image/charcoal.js +++ b/commands/edit-image/charcoal.js @@ -14,6 +14,13 @@ module.exports = class CharcoalCommand extends Command { duration: 60 }, clientPermissions: ['ATTACH_FILES'], + credit: [ + { + name: 'ImageMagick', + url: 'https://imagemagick.org/index.php', + reason: 'Image Manipulation' + } + ], args: [ { key: 'image', diff --git a/commands/edit-image/emboss.js b/commands/edit-image/emboss.js index 653f4261..66a14e44 100644 --- a/commands/edit-image/emboss.js +++ b/commands/edit-image/emboss.js @@ -14,6 +14,13 @@ module.exports = class EmbossCommand extends Command { duration: 60 }, clientPermissions: ['ATTACH_FILES'], + credit: [ + { + name: 'ImageMagick', + url: 'https://imagemagick.org/index.php', + reason: 'Image Manipulation' + } + ], args: [ { key: 'image', diff --git a/commands/edit-image/implode.js b/commands/edit-image/implode.js index 0634c312..df7a64f5 100644 --- a/commands/edit-image/implode.js +++ b/commands/edit-image/implode.js @@ -14,6 +14,13 @@ module.exports = class ImplodeCommand extends Command { duration: 60 }, clientPermissions: ['ATTACH_FILES'], + credit: [ + { + name: 'ImageMagick', + url: 'https://imagemagick.org/index.php', + reason: 'Image Manipulation' + } + ], args: [ { key: 'level', diff --git a/commands/edit-image/liquid-rescale.js b/commands/edit-image/liquid-rescale.js index 2260575a..53e7b7c4 100644 --- a/commands/edit-image/liquid-rescale.js +++ b/commands/edit-image/liquid-rescale.js @@ -15,6 +15,13 @@ module.exports = class LiquidRescaleCommand extends Command { duration: 60 }, clientPermissions: ['ATTACH_FILES'], + credit: [ + { + name: 'ImageMagick', + url: 'https://imagemagick.org/index.php', + reason: 'Image Manipulation' + } + ], args: [ { key: 'image', diff --git a/commands/edit-image/noise.js b/commands/edit-image/noise.js index b1a86ae5..85f41177 100644 --- a/commands/edit-image/noise.js +++ b/commands/edit-image/noise.js @@ -17,6 +17,13 @@ module.exports = class NoiseCommand extends Command { duration: 60 }, clientPermissions: ['ATTACH_FILES'], + credit: [ + { + name: 'ImageMagick', + url: 'https://imagemagick.org/index.php', + reason: 'Image Manipulation' + } + ], args: [ { key: 'type', diff --git a/commands/edit-image/oil-painting.js b/commands/edit-image/oil-painting.js index 31c81219..a8702e30 100644 --- a/commands/edit-image/oil-painting.js +++ b/commands/edit-image/oil-painting.js @@ -15,6 +15,13 @@ module.exports = class OilPaintingCommand extends Command { duration: 60 }, clientPermissions: ['ATTACH_FILES'], + credit: [ + { + name: 'ImageMagick', + url: 'https://imagemagick.org/index.php', + reason: 'Image Manipulation' + } + ], args: [ { key: 'image', diff --git a/commands/edit-image/sketch.js b/commands/edit-image/sketch.js index 8bc14353..700a0339 100644 --- a/commands/edit-image/sketch.js +++ b/commands/edit-image/sketch.js @@ -15,6 +15,13 @@ module.exports = class SketchCommand extends Command { duration: 60 }, clientPermissions: ['ATTACH_FILES'], + credit: [ + { + name: 'ImageMagick', + url: 'https://imagemagick.org/index.php', + reason: 'Image Manipulation' + } + ], args: [ { key: 'image', diff --git a/commands/edit-image/squish.js b/commands/edit-image/squish.js index e84126d3..1aa4b2ed 100644 --- a/commands/edit-image/squish.js +++ b/commands/edit-image/squish.js @@ -15,6 +15,13 @@ module.exports = class SquishCommand extends Command { duration: 60 }, clientPermissions: ['ATTACH_FILES'], + credit: [ + { + name: 'ImageMagick', + url: 'https://imagemagick.org/index.php', + reason: 'Image Manipulation' + } + ], args: [ { key: 'axis', diff --git a/commands/edit-image/swirl.js b/commands/edit-image/swirl.js index 2fc1512a..0eb132fe 100644 --- a/commands/edit-image/swirl.js +++ b/commands/edit-image/swirl.js @@ -14,6 +14,13 @@ module.exports = class SwirlCommand extends Command { duration: 60 }, clientPermissions: ['ATTACH_FILES'], + credit: [ + { + name: 'ImageMagick', + url: 'https://imagemagick.org/index.php', + reason: 'Image Manipulation' + } + ], args: [ { key: 'degrees', diff --git a/package.json b/package.json index 93c9e446..5ccfa56d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "119.4.0", + "version": "119.4.1", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {