mirror of
https://github.com/Equicord/Equicord.git
synced 2025-01-18 13:23:28 -05:00
parent
d1a417da63
commit
6f4d40ec97
2 changed files with 5 additions and 2 deletions
|
@ -10,7 +10,7 @@ You can join our [discord server](https://discord.gg/5Xh2W87egW) for commits, ch
|
||||||
|
|
||||||
### Extra included plugins
|
### Extra included plugins
|
||||||
<details>
|
<details>
|
||||||
<summary>147 additional plugins</summary>
|
<summary>150 additional plugins</summary>
|
||||||
|
|
||||||
### All Platforms
|
### All Platforms
|
||||||
- AllCallTimers by MaxHerbold & D3SOX
|
- AllCallTimers by MaxHerbold & D3SOX
|
||||||
|
@ -77,6 +77,7 @@ You can join our [discord server](https://discord.gg/5Xh2W87egW) for commits, ch
|
||||||
- Identity by Samwich
|
- Identity by Samwich
|
||||||
- IgnoreTerms by D3SOX
|
- IgnoreTerms by D3SOX
|
||||||
- ImagePreview by Creations
|
- ImagePreview by Creations
|
||||||
|
- ImgToGif by zyqunix
|
||||||
- InRole by nin0dev
|
- InRole by nin0dev
|
||||||
- IrcColors by Grzesiek11
|
- IrcColors by Grzesiek11
|
||||||
- IRememberYou by zoodogood
|
- IRememberYou by zoodogood
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { ApplicationCommandInputType, ApplicationCommandOptionType, Argument, CommandContext, sendBotMessage } from "@api/Commands";
|
import { ApplicationCommandInputType, ApplicationCommandOptionType, Argument, CommandContext, sendBotMessage } from "@api/Commands";
|
||||||
|
import { migratePluginSettings } from "@api/Settings";
|
||||||
import { EquicordDevs } from "@utils/constants";
|
import { EquicordDevs } from "@utils/constants";
|
||||||
import definePlugin from "@utils/types";
|
import definePlugin from "@utils/types";
|
||||||
import { findByPropsLazy } from "@webpack";
|
import { findByPropsLazy } from "@webpack";
|
||||||
|
@ -74,8 +75,9 @@ async function resolveImage(options: Argument[], ctx: CommandContext): Promise<{
|
||||||
return { image, width, height };
|
return { image, width, height };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
migratePluginSettings("ImgToGif", "imgtogif");
|
||||||
export default definePlugin({
|
export default definePlugin({
|
||||||
name: "imgtogif",
|
name: "ImgToGif",
|
||||||
description: "Adds a /imgtogif slash command to create a gif from any image",
|
description: "Adds a /imgtogif slash command to create a gif from any image",
|
||||||
authors: [EquicordDevs.zyqunix],
|
authors: [EquicordDevs.zyqunix],
|
||||||
commands: [
|
commands: [
|
||||||
|
|
Loading…
Reference in a new issue