diff options
author | Vendicated <vendicated@riseup.net> | 2023-04-17 01:37:55 +0200 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2023-04-17 01:37:55 +0200 |
commit | a56dfe269c47a8df820235b03ddbbfe22b122e81 (patch) | |
tree | 191c5ee24e866b9ef9ba38f5ae4a3bd834cd8cde /src/plugins | |
parent | 7d55a81bac69552f0a227395653c429a9f351fbb (diff) | |
download | Vencord-a56dfe269c47a8df820235b03ddbbfe22b122e81.tar.gz Vencord-a56dfe269c47a8df820235b03ddbbfe22b122e81.tar.bz2 Vencord-a56dfe269c47a8df820235b03ddbbfe22b122e81.zip |
Improve unintuitive plugin descriptions
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/fakeProfileThemes.tsx | 4 | ||||
-rw-r--r-- | src/plugins/petpet.ts | 2 | ||||
-rw-r--r-- | src/plugins/spotifyControls/index.tsx | 2 | ||||
-rw-r--r-- | src/plugins/urbanDictionary.ts (renamed from src/plugins/dictionary.ts) | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/src/plugins/fakeProfileThemes.tsx b/src/plugins/fakeProfileThemes.tsx index ede0e72..8a0db1d 100644 --- a/src/plugins/fakeProfileThemes.tsx +++ b/src/plugins/fakeProfileThemes.tsx @@ -83,7 +83,7 @@ const settings = definePluginSettings({ export default definePlugin({ name: "FakeProfileThemes", - description: "Allows profile theming by hiding the colors in your bio thanks to invisible 3y3 encoding.", + description: "Allows profile theming by hiding the colors in your bio thanks to invisible 3y3 encoding", authors: [Devs.Alyxia, Devs.Remty], patches: [ { @@ -112,7 +112,7 @@ export default definePlugin({ <li>• click the "Copy 3y3" button</li> <li>• paste the invisible text anywhere in your bio</li> </ul><br /> - <b>Please note:</b> if you are using a theme which hides nitro upsells, you should disable it temporarily to set colors. + <b>Please note:</b> if you are using a theme which hides nitro ads, you should disable it temporarily to set colors. </Forms.FormText> </Forms.FormSection>), settings, diff --git a/src/plugins/petpet.ts b/src/plugins/petpet.ts index 0d9a3d0..472c6c9 100644 --- a/src/plugins/petpet.ts +++ b/src/plugins/petpet.ts @@ -83,7 +83,7 @@ async function resolveImage(options: Argument[], ctx: CommandContext, noServerPf export default definePlugin({ name: "petpet", - description: "headpet a cutie", + description: "Adds a /petpet slash command to create headpet gifs from any image", authors: [Devs.Ven], dependencies: ["CommandsAPI"], commands: [ diff --git a/src/plugins/spotifyControls/index.tsx b/src/plugins/spotifyControls/index.tsx index f321516..280efce 100644 --- a/src/plugins/spotifyControls/index.tsx +++ b/src/plugins/spotifyControls/index.tsx @@ -30,7 +30,7 @@ function toggleHoverControls(value: boolean) { export default definePlugin({ name: "SpotifyControls", - description: "Spotify Controls", + description: "Adds a Spotify player above the account panel", authors: [Devs.Ven, Devs.afn, Devs.KraXen72], options: { hoverControls: { diff --git a/src/plugins/dictionary.ts b/src/plugins/urbanDictionary.ts index 14ee37b..0adf8a5 100644 --- a/src/plugins/dictionary.ts +++ b/src/plugins/urbanDictionary.ts @@ -23,7 +23,7 @@ import definePlugin from "@utils/types"; export default definePlugin({ name: "UrbanDictionary", - description: "Searches for a word on Urban Dictionary", + description: "Search for a word on Urban Dictionary via /urban slash command", authors: [Devs.jewdev], dependencies: ["CommandsAPI"], commands: [ |