├── .babelrc ├── .eslintrc.json ├── .gitignore ├── .vscode └── settings.json ├── LibModHook.dll ├── ModHookInjection.dll ├── README.md ├── assets └── DiscordModLoader_oe47GnVQI7.png ├── forge.config.ts ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── resource.template.js ├── src ├── components │ ├── App.tsx │ ├── Home.tsx │ └── ManageProfile.tsx ├── favicon.ico ├── global.d.ts ├── index.css ├── index.html ├── index.ts ├── main.ipc.ts ├── preload.ts ├── renderer.tsx └── types.ts ├── tailwind.config.js ├── tsconfig.json ├── webpack.main.config.ts ├── webpack.plugins.ts ├── webpack.renderer.config.ts └── webpack.rules.ts /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeguminSama/Discord-ModLoader-Legacy/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeguminSama/Discord-ModLoader-Legacy/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeguminSama/Discord-ModLoader-Legacy/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeguminSama/Discord-ModLoader-Legacy/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LibModHook.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeguminSama/Discord-ModLoader-Legacy/HEAD/LibModHook.dll -------------------------------------------------------------------------------- /ModHookInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeguminSama/Discord-ModLoader-Legacy/HEAD/ModHookInjection.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeguminSama/Discord-ModLoader-Legacy/HEAD/README.md -------------------------------------------------------------------------------- /assets/DiscordModLoader_oe47GnVQI7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeguminSama/Discord-ModLoader-Legacy/HEAD/assets/DiscordModLoader_oe47GnVQI7.png -------------------------------------------------------------------------------- /forge.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeguminSama/Discord-ModLoader-Legacy/HEAD/forge.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeguminSama/Discord-ModLoader-Legacy/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeguminSama/Discord-ModLoader-Legacy/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeguminSama/Discord-ModLoader-Legacy/HEAD/postcss.config.js -------------------------------------------------------------------------------- /resource.template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeguminSama/Discord-ModLoader-Legacy/HEAD/resource.template.js -------------------------------------------------------------------------------- /src/components/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeguminSama/Discord-ModLoader-Legacy/HEAD/src/components/App.tsx -------------------------------------------------------------------------------- /src/components/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeguminSama/Discord-ModLoader-Legacy/HEAD/src/components/Home.tsx -------------------------------------------------------------------------------- /src/components/ManageProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeguminSama/Discord-ModLoader-Legacy/HEAD/src/components/ManageProfile.tsx -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeguminSama/Discord-ModLoader-Legacy/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeguminSama/Discord-ModLoader-Legacy/HEAD/src/global.d.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeguminSama/Discord-ModLoader-Legacy/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeguminSama/Discord-ModLoader-Legacy/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeguminSama/Discord-ModLoader-Legacy/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/main.ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeguminSama/Discord-ModLoader-Legacy/HEAD/src/main.ipc.ts -------------------------------------------------------------------------------- /src/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeguminSama/Discord-ModLoader-Legacy/HEAD/src/preload.ts -------------------------------------------------------------------------------- /src/renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeguminSama/Discord-ModLoader-Legacy/HEAD/src/renderer.tsx -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeguminSama/Discord-ModLoader-Legacy/HEAD/src/types.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeguminSama/Discord-ModLoader-Legacy/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeguminSama/Discord-ModLoader-Legacy/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.main.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeguminSama/Discord-ModLoader-Legacy/HEAD/webpack.main.config.ts -------------------------------------------------------------------------------- /webpack.plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeguminSama/Discord-ModLoader-Legacy/HEAD/webpack.plugins.ts -------------------------------------------------------------------------------- /webpack.renderer.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeguminSama/Discord-ModLoader-Legacy/HEAD/webpack.renderer.config.ts -------------------------------------------------------------------------------- /webpack.rules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MeguminSama/Discord-ModLoader-Legacy/HEAD/webpack.rules.ts --------------------------------------------------------------------------------