This commit is contained in:
2024-05-05 11:12:48 +02:00
commit ae478b96ec
14 changed files with 725 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
{
"schemaVersion": 1,
"id": "regexinghoppers",
"version": "${version}",
"name": "RegexingHoppers",
"description": "Adds advanced item filtering capabilities to hoppers using regular expressions.",
"authors": [
"BRNSystems"
],
"contact": {
"repo": "https://git.brn.systems/BRNSystems/RegexingHoppers"
},
"license": "MIT",
"icon": "icon.png",
"environment": "*",
"entrypoints": {
"main": [
"systems.brn.regexinghoppers.RegexingHoppers"
]
},
"mixins": [
"regexinghoppers.mixins.json"
],
"depends": {
"fabricloader": ">=${loader_version}",
"fabric": "*",
"minecraft": "${minecraft_version}"
}
}

BIN
src/main/resources/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

View File

@@ -0,0 +1,14 @@
{
"required": true,
"minVersion": "0.8",
"package": "systems.brn.regexinghoppers.mixin",
"compatibilityLevel": "JAVA_21",
"mixins": [
"RegexingHopperMixin"
],
"client": [
],
"injectors": {
"defaultRequire": 1
}
}