diff options
author | SHsuperCM <shsupercm@gmail.com> | 2022-01-21 18:22:27 +0200 |
---|---|---|
committer | SHsuperCM <shsupercm@gmail.com> | 2022-01-21 18:22:27 +0200 |
commit | 818f912fc038b84a3dd855892d619af3325bc163 (patch) | |
tree | 58bfdfe96b8ec9f576f185a473b6fa13a830ffee | |
parent | c48e23a8949eaa89d06908201357b53fa7eaedbe (diff) | |
download | CITResewn-818f912fc038b84a3dd855892d619af3325bc163.tar.gz CITResewn-818f912fc038b84a3dd855892d619af3325bc163.tar.bz2 CITResewn-818f912fc038b84a3dd855892d619af3325bc163.zip |
Improved mod metadata
-rw-r--r-- | defaults/src/main/resources/fabric.mod.json | 8 | ||||
-rw-r--r-- | src/main/resources/fabric.mod.json | 14 |
2 files changed, 21 insertions, 1 deletions
diff --git a/defaults/src/main/resources/fabric.mod.json b/defaults/src/main/resources/fabric.mod.json index 0f8e566..c140556 100644 --- a/defaults/src/main/resources/fabric.mod.json +++ b/defaults/src/main/resources/fabric.mod.json @@ -9,6 +9,11 @@ ], "license": "MIT", "icon": "assets/citresewn-defaults/logo.png", + "contact": { + "homepage": "https://citresewn.shcm.io/", + "sources": "https://github.com/SHsuperCM/CITResewn", + "issues": "https://github.com/SHsuperCM/CITResewn/issues" + }, "environment": "client", "entrypoints": { @@ -32,5 +37,8 @@ }, "depends": { "citresewn": "${version}" + }, + "conflicts": { + "eatinganimationid": "*" } } diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 3ab2b9b..b00baa4 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -2,13 +2,18 @@ "schemaVersion": 1, "id": "citresewn", "version": "${version}", - "name": "CITResewn", + "name": "CIT Resewn", "description": "Re-implements MCPatcher's CIT", "authors": [ "SHsuperCM" ], "license": "MIT", "icon": "assets/citresewn/logo.png", + "contact": { + "homepage": "https://citresewn.shcm.io/", + "sources": "https://github.com/SHsuperCM/CITResewn", + "issues": "https://github.com/SHsuperCM/CITResewn/issues" + }, "environment": "client", "entrypoints": { @@ -27,5 +32,12 @@ "fabric": "*", "fabricloader": "*", "minecraft": "1.18.x" + }, + "recommends": { + "modmenu": "*", + "cloth-config2": "*" + }, + "breaks": { + "canvas": "*" } } |