├── .eslintrc.json ├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── bootstrap ├── arrayBuffer.js ├── index.d.ts └── index.ts ├── data.json ├── package.json ├── pnpm-lock.yaml ├── rollup.config.ts ├── src ├── Aliucord.ts ├── aliucord-version.d.ts ├── aliuhermes.d.ts ├── api │ ├── Commands.ts │ ├── Patcher.ts │ ├── PluginManager.ts │ ├── Settings.ts │ ├── Themer.ts │ └── index.ts ├── core-plugins │ ├── Badges.tsx │ ├── ChatGuard.tsx │ ├── CommandHandler.ts │ ├── CoreCommands.ts │ └── NoTrack.ts ├── entities │ ├── Plugin.ts │ ├── index.ts │ └── types.ts ├── global.d.ts ├── index.ts ├── metro │ ├── constants.d.ts │ └── index.ts ├── native │ ├── AliucordNative.ts │ ├── fs.ts │ ├── index.ts │ └── permissions.ts ├── patches │ ├── patchNavigator.ts │ ├── patchSettings.tsx │ └── patchTheme.ts ├── react-devtools-core.d.ts ├── themerInit.ts ├── ui │ ├── components │ │ ├── Card.tsx │ │ └── index.ts │ ├── index.ts │ ├── pages │ │ ├── AliucordPage.tsx │ │ ├── ErrorsPage.tsx │ │ ├── PluginsPage.tsx │ │ ├── ThemesPage.tsx │ │ └── UpdaterPage.tsx │ └── utils │ │ ├── createScreen.tsx │ │ └── index.ts └── utils │ ├── Logger.ts │ ├── constants.ts │ ├── debug │ ├── DebugInfo.ts │ ├── DebugWS.ts │ ├── ReactDevTools.ts │ └── index.ts │ ├── findInReactTree.ts │ ├── getAssetId.ts │ ├── index.ts │ ├── misc.ts │ └── patcher.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | lib 4 | .idea 5 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap/arrayBuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/bootstrap/arrayBuffer.js -------------------------------------------------------------------------------- /bootstrap/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/bootstrap/index.d.ts -------------------------------------------------------------------------------- /bootstrap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/bootstrap/index.ts -------------------------------------------------------------------------------- /data.json: -------------------------------------------------------------------------------- 1 | { 2 | "targetDiscordVersion": "167211" 3 | } 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /rollup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/rollup.config.ts -------------------------------------------------------------------------------- /src/Aliucord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/Aliucord.ts -------------------------------------------------------------------------------- /src/aliucord-version.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/aliucord-version.d.ts -------------------------------------------------------------------------------- /src/aliuhermes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/aliuhermes.d.ts -------------------------------------------------------------------------------- /src/api/Commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/api/Commands.ts -------------------------------------------------------------------------------- /src/api/Patcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/api/Patcher.ts -------------------------------------------------------------------------------- /src/api/PluginManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/api/PluginManager.ts -------------------------------------------------------------------------------- /src/api/Settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/api/Settings.ts -------------------------------------------------------------------------------- /src/api/Themer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/api/Themer.ts -------------------------------------------------------------------------------- /src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/api/index.ts -------------------------------------------------------------------------------- /src/core-plugins/Badges.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/core-plugins/Badges.tsx -------------------------------------------------------------------------------- /src/core-plugins/ChatGuard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/core-plugins/ChatGuard.tsx -------------------------------------------------------------------------------- /src/core-plugins/CommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/core-plugins/CommandHandler.ts -------------------------------------------------------------------------------- /src/core-plugins/CoreCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/core-plugins/CoreCommands.ts -------------------------------------------------------------------------------- /src/core-plugins/NoTrack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/core-plugins/NoTrack.ts -------------------------------------------------------------------------------- /src/entities/Plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/entities/Plugin.ts -------------------------------------------------------------------------------- /src/entities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/entities/index.ts -------------------------------------------------------------------------------- /src/entities/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/entities/types.ts -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/global.d.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/metro/constants.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/metro/constants.d.ts -------------------------------------------------------------------------------- /src/metro/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/metro/index.ts -------------------------------------------------------------------------------- /src/native/AliucordNative.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/native/AliucordNative.ts -------------------------------------------------------------------------------- /src/native/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/native/fs.ts -------------------------------------------------------------------------------- /src/native/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/native/index.ts -------------------------------------------------------------------------------- /src/native/permissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/native/permissions.ts -------------------------------------------------------------------------------- /src/patches/patchNavigator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/patches/patchNavigator.ts -------------------------------------------------------------------------------- /src/patches/patchSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/patches/patchSettings.tsx -------------------------------------------------------------------------------- /src/patches/patchTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/patches/patchTheme.ts -------------------------------------------------------------------------------- /src/react-devtools-core.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/react-devtools-core.d.ts -------------------------------------------------------------------------------- /src/themerInit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/themerInit.ts -------------------------------------------------------------------------------- /src/ui/components/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/ui/components/Card.tsx -------------------------------------------------------------------------------- /src/ui/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/ui/components/index.ts -------------------------------------------------------------------------------- /src/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/ui/index.ts -------------------------------------------------------------------------------- /src/ui/pages/AliucordPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/ui/pages/AliucordPage.tsx -------------------------------------------------------------------------------- /src/ui/pages/ErrorsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/ui/pages/ErrorsPage.tsx -------------------------------------------------------------------------------- /src/ui/pages/PluginsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/ui/pages/PluginsPage.tsx -------------------------------------------------------------------------------- /src/ui/pages/ThemesPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/ui/pages/ThemesPage.tsx -------------------------------------------------------------------------------- /src/ui/pages/UpdaterPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/ui/pages/UpdaterPage.tsx -------------------------------------------------------------------------------- /src/ui/utils/createScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/ui/utils/createScreen.tsx -------------------------------------------------------------------------------- /src/ui/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/ui/utils/index.ts -------------------------------------------------------------------------------- /src/utils/Logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/utils/Logger.ts -------------------------------------------------------------------------------- /src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/utils/constants.ts -------------------------------------------------------------------------------- /src/utils/debug/DebugInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/utils/debug/DebugInfo.ts -------------------------------------------------------------------------------- /src/utils/debug/DebugWS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/utils/debug/DebugWS.ts -------------------------------------------------------------------------------- /src/utils/debug/ReactDevTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/utils/debug/ReactDevTools.ts -------------------------------------------------------------------------------- /src/utils/debug/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/utils/debug/index.ts -------------------------------------------------------------------------------- /src/utils/findInReactTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/utils/findInReactTree.ts -------------------------------------------------------------------------------- /src/utils/getAssetId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/utils/getAssetId.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/utils/misc.ts -------------------------------------------------------------------------------- /src/utils/patcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/src/utils/patcher.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aliucord/AliucordRN/HEAD/tsconfig.json --------------------------------------------------------------------------------