diff options
| author | Rosa <rosaontheweb@proton.me> | 2026-03-10 22:23:19 -0400 |
|---|---|---|
| committer | Rosa <rosaontheweb@proton.me> | 2026-03-10 22:23:19 -0400 |
| commit | 2d1e0699f290afaf9430ff446e0c60bed4e5be1a (patch) | |
| tree | 75afd7509062969a867bfdbbfc39699beb34d5ec /src/main/resources | |
init
Diffstat (limited to 'src/main/resources')
| -rw-r--r-- | src/main/resources/assets/rosas-chat-tweaks/icon.png | bin | 0 -> 1221 bytes | |||
| -rw-r--r-- | src/main/resources/fabric.mod.json | 23 | ||||
| -rw-r--r-- | src/main/resources/rosas-chat-tweaks.mixins.json | 9 |
3 files changed, 32 insertions, 0 deletions
diff --git a/src/main/resources/assets/rosas-chat-tweaks/icon.png b/src/main/resources/assets/rosas-chat-tweaks/icon.png Binary files differnew file mode 100644 index 0000000..6f0db0a --- /dev/null +++ b/src/main/resources/assets/rosas-chat-tweaks/icon.png diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..b5fc634 --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,23 @@ +{ + "schemaVersion": 1, + "id": "rosas-chat-tweaks", + "version": "${version}", + "name": "Rosa's Chat Tweaks", + "description": "A collection of small tweaks to the chat UI", + "authors": [ + "Rosa (girlonthe.net)" + ], + "contact": { + "issues": "TODO", + "sources": "TODO" + }, + "license": "Unlicense", + "icon": "assets/rosas-chat-tweaks/icon.png", + "environment": "client", + "mixins": ["rosas-chat-tweaks.mixins.json"], + "depends": { + "fabricloader": ">=0.18.4", + "minecraft": ">=1.21.11" + }, + "suggests": {} +} diff --git a/src/main/resources/rosas-chat-tweaks.mixins.json b/src/main/resources/rosas-chat-tweaks.mixins.json new file mode 100644 index 0000000..9bd762f --- /dev/null +++ b/src/main/resources/rosas-chat-tweaks.mixins.json @@ -0,0 +1,9 @@ +{ + "compatibilityLevel": "JAVA_21", + "injectors": { + "defaultRequire": 1 + }, + "package": "net.girlonthe.chattweaks.mixin", + "mixins": ["ChatComponentMixin"], + "required": true +} |
