Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions src/docs/plugin-faq.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Plugin FAQ

This section answers most of the "is there x plugin" and related questions about plugins.

- Aliucord plugins are subjective, there is no "best" plugins becasue it totally depends on your needs.

- Type `!fakenitro` in `#bot-spam` channel to get all fakenitro plugins.

- Don't use "Repo" plugins (PluginRepo/ThemeRepo), they are broken & outdated. Use PluginWeb/ThemeWeb instead.

- If you are looking for a plugin to fix markdown such as # headers, -# subtext, [hyperlinks](https://example.com), install MoreHighlight.

- To fix slash commands and bot embeds, install SlashCommandsFixBeta & ComponentsV2Beta.

- No, there is no plugin for RPC.

- No, there is no soundboard plugin.

- No, there is no plugin to mass/bulk delete messages/dms.

- No, a plugin for new/modern ui doesn't exist. Use [Kettu](<https://github.com/C0C0B01/KettuManager/releases/latest>) or [Rain (Beta)](<https://codeberg.org/raincord/rain>) if you want a React Native mod client.

- No, there is no plugin to bypass file size.

- TapTap is better than SwipeToReply.

- SimpleMessageLogger has less bugs and it's lighter than normal MessageLogger, but it doesn't have a database.

- Don't install original AudioPlayer, it has issues and it's outdated. Install the [fork](https://github.com/Archimedes9500/Halkiion-rushiiMachine-aliucord-plugins/raw/builds/AudioPlayer.zip) instead.

- Don't use PlayableEmbeds, it's outdated and broken. Use [Fluff](https://github.com/yutaplug/Aliucord/raw/builds/Fluff.zip) instead.

- Install [ForumChannelsFix](https://github.com/yutaplug/Aliucord/raw/builds/ForumChannelsFix.zip) to fix unread bug.

- Install [OpenLinksInApp](https://github.com/Canny1913/AliucordPlugins/raw/builds/OpenLinksInApp.zip) to fix opening message links.

- Install [AuthorizedAppsCrashFix](https://github.com/MCausc78/RNSucks/raw/builds/AuthorizedAppsCrashFix.zip) to fix crash in Authorized Apps page.

- No, we do not have a plugin to show channels you're not supposed to.
15 changes: 10 additions & 5 deletions src/lib/docs.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { markdown as pluginDev } from "@/docs/plugin-development.md";
import { markdown as themeDev } from "@/docs/theme-development.md";
import { markdown as backports } from "@/docs/backports.md";
import { markdown as beginnerGuide } from "@/docs/beginner-guide.md";
import { markdown as backports } from "@/docs/backports.md";
import { markdown as changelog } from "@/docs/changelog.md";
import { markdown as forks } from "@/docs/forks.md";
import { markdown as missingFeatures } from "@/docs/missing-features.md";
Expand All @@ -11,6 +11,7 @@ import { markdown as sounds } from "@/docs/sounds.md";
import { markdown as themerGuide } from "@/docs/themer-guide.md";
import { markdown as userPfpBg } from "@/docs/user-pfp-bg.md";
import { markdown as logcat } from "@/docs/logcat.md";
import { markdown as pluginFaq } from "@/docs/plugin-faq.md";

export interface DocSection {
title: string;
Expand All @@ -32,14 +33,14 @@ export const THEME_DOCS: DocSection[] = [
];

export const GENERAL_DOCS: DocSection[] = [
{
title: "Backports",
content: backports
},
{
title: "Beginner Guide",
content: beginnerGuide
},
{
title: "Backports",
content: backports
},
{
title: "Changelog",
content: changelog
Expand Down Expand Up @@ -75,5 +76,9 @@ export const GENERAL_DOCS: DocSection[] = [
{
title: "Logcat",
content: logcat
},
{
title: "Plugin FAQ",
content: pluginFaq
}
];
Loading