diff --git a/src/docs/plugin-faq.md b/src/docs/plugin-faq.md new file mode 100644 index 0000000..a7adf9d --- /dev/null +++ b/src/docs/plugin-faq.md @@ -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]() or [Rain (Beta)]() 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. diff --git a/src/lib/docs.ts b/src/lib/docs.ts index cb6b20c..fb79f63 100644 --- a/src/lib/docs.ts +++ b/src/lib/docs.ts @@ -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"; @@ -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; @@ -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 @@ -75,5 +76,9 @@ export const GENERAL_DOCS: DocSection[] = [ { title: "Logcat", content: logcat + }, + { + title: "Plugin FAQ", + content: pluginFaq } ];