aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorinyourwalls <inyourwalls@tutanota.com>2024-01-01 16:56:02 -0500
committerinyourwalls <inyourwalls@tutanota.com>2024-01-01 16:56:02 -0500
commit6141360d03e07220aa720ccfa891489cde270b81 (patch)
tree4d6fa21383d598c5133475090ebba3e16d43be03
parente7ce6082830c5b2b941d60464a467031dd7e5ad5 (diff)
add link to matrix room for support
-rw-r--r--README.md10
-rw-r--r--src/main/resources/assets/frank/lang/en_us.json3
-rw-r--r--src/main/resources/fabric.mod.json9
3 files changed, 18 insertions, 4 deletions
diff --git a/README.md b/README.md
index 5758521..4cc4c01 100644
--- a/README.md
+++ b/README.md
@@ -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"
+ }
+ }
+ }
}