diff options
| author | plutorocks <> | 2026-02-26 16:53:24 -0500 |
|---|---|---|
| committer | plutorocks <> | 2026-02-26 16:53:24 -0500 |
| commit | 8b123f240f098b24f8e348f1f36ab3eb72599176 (patch) | |
| tree | 91a532a9a422104a667137a18137527c83c6889f /src/main/resources | |
Diffstat (limited to 'src/main/resources')
| -rw-r--r-- | src/main/resources/assets/minecraftirc/icon.png | bin | 0 -> 62171 bytes | |||
| -rw-r--r-- | src/main/resources/fabric.mod.json | 31 | ||||
| -rw-r--r-- | src/main/resources/minecraftirc.mixins.json | 14 |
3 files changed, 45 insertions, 0 deletions
diff --git a/src/main/resources/assets/minecraftirc/icon.png b/src/main/resources/assets/minecraftirc/icon.png Binary files differnew file mode 100644 index 0000000..0de3188 --- /dev/null +++ b/src/main/resources/assets/minecraftirc/icon.png diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..04ee800 --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,31 @@ +{ + "schemaVersion": 1, + "id": "minecraftirc", + "version": "${version}", + "name": "PlutoBridge Client", + "description": "Client for PlutoBridge", + "authors": [ + "plutorocks" + ], + "contact": { + "homepage": "https://plutorocks.dev/", + "sources": "https://github.com/FabricMC/fabric-example-mod" + }, + "license": "GPL-3.0-only", + "icon": "assets/minecraftirc/icon.png", + "environment": "*", + "entrypoints": { + "client": [ + "dev.plutorocks.PlutoBridge" + ] + }, + "mixins": [ + "minecraftirc.mixins.json" + ], + "depends": { + "fabricloader": ">=0.18.4", + "minecraft": "~1.21.4", + "java": ">=21", + "fabric-api": "*" + } +}
\ No newline at end of file diff --git a/src/main/resources/minecraftirc.mixins.json b/src/main/resources/minecraftirc.mixins.json new file mode 100644 index 0000000..fc6e0cd --- /dev/null +++ b/src/main/resources/minecraftirc.mixins.json @@ -0,0 +1,14 @@ +{ + "required": true, + "package": "dev.plutorocks.mixin", + "compatibilityLevel": "JAVA_21", + "mixins": [ + "ChatScreenMixin" + ], + "injectors": { + "defaultRequire": 1 + }, + "overwrites": { + "requireAnnotations": true + } +}
\ No newline at end of file |
