aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources
diff options
context:
space:
mode:
authorinyourwalls <inyourwalls@tutanota.com>2024-01-29 12:30:52 -0500
committerinyourwalls <inyourwalls@tutanota.com>2024-01-29 12:30:52 -0500
commit9b8c377e785208e0b53c1b82cc99ebee94df7f66 (patch)
tree607f472a9bfef8242ccf9c1e7044969cae016b09 /src/main/resources
parent3f01599a3e61af1d3f49f986ad9ecb210d4d4b47 (diff)
parent3567fea6ca8749d66e0ad4f62ba5efd5ea705d9f (diff)
merge amazing-config-update into 1.20.1-backport
Diffstat (limited to 'src/main/resources')
-rw-r--r--src/main/resources/assets/frank/lang/en_ca.json4
-rw-r--r--src/main/resources/assets/frank/lang/en_us.json12
-rw-r--r--src/main/resources/fabric.mod.json7
3 files changed, 21 insertions, 2 deletions
diff --git a/src/main/resources/assets/frank/lang/en_ca.json b/src/main/resources/assets/frank/lang/en_ca.json
new file mode 100644
index 0000000..07f9fda
--- /dev/null
+++ b/src/main/resources/assets/frank/lang/en_ca.json
@@ -0,0 +1,4 @@
+{
+ "ui.frank.config.text_colour": "Text Colour",
+ "ui.frank.config.text_colour.tooltip": "Hexadecimal RGB value for the text colour."
+}
diff --git a/src/main/resources/assets/frank/lang/en_us.json b/src/main/resources/assets/frank/lang/en_us.json
index ca2862d..1a7471d 100644
--- a/src/main/resources/assets/frank/lang/en_us.json
+++ b/src/main/resources/assets/frank/lang/en_us.json
@@ -1,5 +1,17 @@
{
"ui.frank.time_left": "Time remaining: %sm %ss",
"ui.frank.smeltable": "Items smeltable: %s",
+
+ "ui.frank.config": "Configuration - Frank",
+ "ui.frank.config.preview": "Preview",
+ "ui.frank.config.time_left_first": "Time Left First",
+ "ui.frank.config.time_left_only": "Time Left Only",
+ "ui.frank.config.items_smeltable_first": "Items Smeltable First",
+ "ui.frank.config.items_smeltable_only": "Items Smeltable Only",
+ "ui.frank.config.disabled": "Disabled",
+ "ui.frank.config.display_mode": "Display Mode",
+ "ui.frank.config.text_colour": "Text Color",
+ "ui.frank.config.text_colour.tooltip": "Hexadecimal RGB value for the text color.",
+
"frank.matrix": "Matrix"
}
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json
index 047001e..0a46f48 100644
--- a/src/main/resources/fabric.mod.json
+++ b/src/main/resources/fabric.mod.json
@@ -3,7 +3,7 @@
"id": "frank",
"version": "${version}",
"name": "Frank",
- "description": "Mod that displays additional info about furnaces and fuels.",
+ "description": "Mod that displays additional info in furnaces.",
"authors": [
"InYourWalls"
],
@@ -16,6 +16,9 @@
"entrypoints": {
"client": [
"net.inyourwalls.frank.Frank"
+ ],
+ "modmenu": [
+ "net.inyourwalls.frank.ModMenuIntegration"
]
},
"mixins": [
@@ -23,8 +26,8 @@
],
"depends": {
"fabricloader": ">=0.14.22",
- "fabric-api": ">=0.90.4+1.20.1",
"minecraft": "1.20.1",
+ "fabric-screen-api-v1": ">=0.90.4+1.20.1",
"java": ">=17"
},
"suggests": {},