├── .gitignore ├── curse ├── help.png ├── why.png ├── changelog.png ├── permissions.png ├── whatisthis.png ├── config-editor.png └── rpc_logo_new.png ├── guide_images ├── help.png ├── info.png ├── rich.png ├── rpc.png ├── why.png ├── create.png ├── discord.png ├── new_app.png ├── perms.png ├── upload.png ├── whatis.png ├── changelog.png └── simple-rpc.jpg ├── updatechecker.json ├── changelogs ├── changelog-forge.md └── changelog-fabic.md ├── versions.json └── .github └── ISSUE_TEMPLATE ├── feature_request.md └── bug_report.md /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | -------------------------------------------------------------------------------- /curse/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypherionmc/simple-rpc-public/HEAD/curse/help.png -------------------------------------------------------------------------------- /curse/why.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypherionmc/simple-rpc-public/HEAD/curse/why.png -------------------------------------------------------------------------------- /curse/changelog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypherionmc/simple-rpc-public/HEAD/curse/changelog.png -------------------------------------------------------------------------------- /curse/permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypherionmc/simple-rpc-public/HEAD/curse/permissions.png -------------------------------------------------------------------------------- /curse/whatisthis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypherionmc/simple-rpc-public/HEAD/curse/whatisthis.png -------------------------------------------------------------------------------- /guide_images/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypherionmc/simple-rpc-public/HEAD/guide_images/help.png -------------------------------------------------------------------------------- /guide_images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypherionmc/simple-rpc-public/HEAD/guide_images/info.png -------------------------------------------------------------------------------- /guide_images/rich.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypherionmc/simple-rpc-public/HEAD/guide_images/rich.png -------------------------------------------------------------------------------- /guide_images/rpc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypherionmc/simple-rpc-public/HEAD/guide_images/rpc.png -------------------------------------------------------------------------------- /guide_images/why.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypherionmc/simple-rpc-public/HEAD/guide_images/why.png -------------------------------------------------------------------------------- /curse/config-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypherionmc/simple-rpc-public/HEAD/curse/config-editor.png -------------------------------------------------------------------------------- /curse/rpc_logo_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypherionmc/simple-rpc-public/HEAD/curse/rpc_logo_new.png -------------------------------------------------------------------------------- /guide_images/create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypherionmc/simple-rpc-public/HEAD/guide_images/create.png -------------------------------------------------------------------------------- /guide_images/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypherionmc/simple-rpc-public/HEAD/guide_images/discord.png -------------------------------------------------------------------------------- /guide_images/new_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypherionmc/simple-rpc-public/HEAD/guide_images/new_app.png -------------------------------------------------------------------------------- /guide_images/perms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypherionmc/simple-rpc-public/HEAD/guide_images/perms.png -------------------------------------------------------------------------------- /guide_images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypherionmc/simple-rpc-public/HEAD/guide_images/upload.png -------------------------------------------------------------------------------- /guide_images/whatis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypherionmc/simple-rpc-public/HEAD/guide_images/whatis.png -------------------------------------------------------------------------------- /guide_images/changelog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypherionmc/simple-rpc-public/HEAD/guide_images/changelog.png -------------------------------------------------------------------------------- /guide_images/simple-rpc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypherionmc/simple-rpc-public/HEAD/guide_images/simple-rpc.jpg -------------------------------------------------------------------------------- /updatechecker.json: -------------------------------------------------------------------------------- 1 | { 2 | "homepage": "https://www.curseforge.com/minecraft/mc-mods/simple-discord-rpc/", 3 | "1.12-forge": "2.3", 4 | "1.15-forge": "2.3", 5 | "1.16-forge": "2.3", 6 | "1.15-fabric": "2.3", 7 | "1.16-fabric": "2.3", 8 | "1.17-fabric": "2.3", 9 | "1.17-forge": "2.3" 10 | } 11 | -------------------------------------------------------------------------------- /changelogs/changelog-forge.md: -------------------------------------------------------------------------------- 1 | ## REQUIRES [CraterLib](https://www.curseforge.com/minecraft/mc-mods/craterlib) - Modrinth: [CraterLib](https://modrinth.com/mod/craterlib) 2 | 3 | **Finally ported for 1.20.4 and First NeoForge release** 4 | 5 | 6 | **Bug Fixes**: 7 | 8 | * Fixed missing config button textures 9 | * Fixed ReplayMod integration 10 | -------------------------------------------------------------------------------- /changelogs/changelog-fabic.md: -------------------------------------------------------------------------------- 1 | ## REQUIRES [CraterLib](https://www.curseforge.com/minecraft/mc-mods/craterlib) - Modrinth: [CraterLib](https://modrinth.com/mod/craterlib) 2 | 3 | **Notices**: 4 | 5 | - The in game config gui (which sucked anyway), is disabled for now. You can use our brand new [online editor](https://editor.firstdark.dev) instead 6 | - Requires CraterLib 2.1.0 and newer 7 | 8 | **Changes**: 9 | 10 | - Updated to support the new CraterLib Config system 11 | -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- 1 | { 2 | "homepage": "", 3 | "promos": { 4 | "1.12.2-latest": "1.12.2-2.5", 5 | "1.12.2-recommended": "1.12.2-2.5", 6 | "1.14.4-latest": "1.14.4-2.5", 7 | "1.14.4-recommended": "1.14.4-2.5", 8 | "1.15.2-latest": "1.15.2-2.5", 9 | "1.15.2-recommended": "1.15.2-2.5", 10 | "1.16.3-latest": "1.16.3-2.5", 11 | "1.16.3-recommended": "1.16.3-2.5", 12 | "1.17.1-latest": "1.16.3-2.5", 13 | "1.17.1-recommended": "1.16.3-2.5", 14 | "1.18-latest": "1.16.3-2.5", 15 | "1.18-recommended": "1.16.3-2.5" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: "[Suggestion]" 5 | labels: enhancement 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: "[BUG]" 5 | labels: bug 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Versions (DO NOT USE LATEST! BE SPECIFIC!):** 27 | - OS: 28 | - JAVA Version: 29 | - Mod Version: 30 | - Discord Version: 31 | - Minecraft Version: 32 | - Forge/Fabric Version: 33 | 34 | **Additional context** 35 | Add any other context about the problem here. 36 | --------------------------------------------------------------------------------