aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources
diff options
context:
space:
mode:
authorNotNite <hi@notnite.com>2023-06-20 15:09:55 -0400
committerNotNite <hi@notnite.com>2023-06-20 15:09:55 -0400
commit20692e21107a35f5f45651f655a6a564fc570007 (patch)
tree3177242a0dffb4361dcf7ab4592fed12c4ccfb77 /src/main/resources
downloadgloppers-20692e21107a35f5f45651f655a6a564fc570007.tar.gz
gloppers-20692e21107a35f5f45651f655a6a564fc570007.tar.bz2
gloppers-20692e21107a35f5f45651f655a6a564fc570007.zip
Initial commit
Diffstat (limited to 'src/main/resources')
-rw-r--r--src/main/resources/assets/gloppers/icon.pngbin0 -> 11413 bytes
-rw-r--r--src/main/resources/fabric.mod.json37
-rw-r--r--src/main/resources/gloppers.mixins.json11
3 files changed, 48 insertions, 0 deletions
diff --git a/src/main/resources/assets/gloppers/icon.png b/src/main/resources/assets/gloppers/icon.png
new file mode 100644
index 0000000..25b7fb6
--- /dev/null
+++ b/src/main/resources/assets/gloppers/icon.png
Binary files differ
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json
new file mode 100644
index 0000000..7599de5
--- /dev/null
+++ b/src/main/resources/fabric.mod.json
@@ -0,0 +1,37 @@
+{
+ "schemaVersion": 1,
+ "id": "gloppers",
+ "version": "${version}",
+ "name": "Gloppers!",
+ "description": "Filter your hoppers by renaming them with glob patterns.",
+ "authors": [
+ "NotNite"
+ ],
+ "contact": {
+ "sources": "https://github.com/NotNite/gloppers"
+ },
+ "license": "MIT",
+ "icon": "assets/gloppers/icon.png",
+ "environment": "server",
+ "entrypoints": {
+ "server": [
+ {
+ "value": "com.notnite.gloppers.Gloppers",
+ "adapter": "kotlin"
+ }
+ ]
+ },
+ "mixins": [
+ {
+ "environment": "server",
+ "config": "gloppers.mixins.json"
+ }
+ ],
+ "depends": {
+ "fabricloader": ">=0.14.19",
+ "minecraft": "~1.20",
+ "java": ">=17",
+ "fabric-api": "*",
+ "fabric-language-kotlin": ">=1.8.22"
+ }
+}
diff --git a/src/main/resources/gloppers.mixins.json b/src/main/resources/gloppers.mixins.json
new file mode 100644
index 0000000..6ddce8d
--- /dev/null
+++ b/src/main/resources/gloppers.mixins.json
@@ -0,0 +1,11 @@
+{
+ "required": true,
+ "package": "com.notnite.gloppers.mixin",
+ "compatibilityLevel": "JAVA_17",
+ "server": [
+ "HopperBlockEntityMixin"
+ ],
+ "injectors": {
+ "defaultRequire": 1
+ }
+}