diff options
| author | inyourwalls <inyourwalls@tutanota.com> | 2024-01-01 16:56:02 -0500 |
|---|---|---|
| committer | inyourwalls <inyourwalls@tutanota.com> | 2024-01-01 16:56:02 -0500 |
| commit | 6141360d03e07220aa720ccfa891489cde270b81 (patch) | |
| tree | 4d6fa21383d598c5133475090ebba3e16d43be03 | |
| parent | e7ce6082830c5b2b941d60464a467031dd7e5ad5 (diff) | |
add link to matrix room for support
| -rw-r--r-- | README.md | 10 | ||||
| -rw-r--r-- | src/main/resources/assets/frank/lang/en_us.json | 3 | ||||
| -rw-r--r-- | src/main/resources/fabric.mod.json | 9 |
3 files changed, 18 insertions, 4 deletions
@@ -9,7 +9,13 @@ Simple Minecraft mod that displays a bit of extra information in furnaces. ## Installation The mod can be downloaded from [Modrinth](https://modrinth.com/mod/frank). -Alternatively, you can clone the mod [source code](https://gitlab.com/programmersocks/frank) -and compile it yourself. +Alternatively, you can clone the mod +[source code](https://gitlab.com/programmersocks/frank) and compile it +yourself. Frank requires [Fabric API](https://modrinth.com/mod/fabric-api). + +## Support + +If you require support, you can join the Matrix room at +[`#mod-support:inyourwalls.net`](https://matrix.to/#/#mod-support:inyourwalls.net). diff --git a/src/main/resources/assets/frank/lang/en_us.json b/src/main/resources/assets/frank/lang/en_us.json index 9303bff..ca2862d 100644 --- a/src/main/resources/assets/frank/lang/en_us.json +++ b/src/main/resources/assets/frank/lang/en_us.json @@ -1,4 +1,5 @@ { "ui.frank.time_left": "Time remaining: %sm %ss", - "ui.frank.smeltable": "Items smeltable: %s" + "ui.frank.smeltable": "Items smeltable: %s", + "frank.matrix": "Matrix" } diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index d2a9d50..5c676c5 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -24,5 +24,12 @@ "minecraft": "~1.20.2", "java": ">=17" }, - "suggests": {} + "suggests": {}, + "custom": { + "modmenu": { + "links": { + "frank.matrix": "https://matrix.to/#/#mod-support:inyourwalls.net" + } + } + } } |
