Update to 1.19.1

This commit is contained in:
Johannes Frohnmeyer 2022-07-28 15:43:08 +02:00
parent 2702bab886
commit 36d1415292
Signed by: Johannes
GPG Key ID: E76429612C2929F4
6 changed files with 25 additions and 13 deletions

View File

@ -4,7 +4,7 @@ dependencies {
modImplementation("io.gitlab.jfronny.libjf:libjf-config-v0:${project.jfapi_version}") modImplementation("io.gitlab.jfronny.libjf:libjf-config-v0:${project.jfapi_version}")
modRuntimeOnly("io.gitlab.jfronny.libjf:libjf-devutil-v0:${project.jfapi_version}") modRuntimeOnly("io.gitlab.jfronny.libjf:libjf-devutil-v0:${project.jfapi_version}")
modImplementation "com.terraformersmc:modmenu:4.0.0-beta.4" modImplementation "com.terraformersmc:modmenu:4.0.5"
// Compat fix // Compat fix
include modImplementation(fabricApi.module("fabric-command-api-v2", "${project.fabric_version}")) include modImplementation(fabricApi.module("fabric-command-api-v2", "${project.fabric_version}"))

View File

@ -1,17 +1,17 @@
# https://fabricmc.net/develop/ # https://fabricmc.net/develop/
minecraft_version=1.19 minecraft_version=1.19.1
yarn_mappings=build.1 yarn_mappings=build.1
loader_version=0.14.6 loader_version=0.14.8
maven_group=io.gitlab.jfronny maven_group=io.gitlab.jfronny
archives_base_name=combit archives_base_name=combit
fabric_version=0.55.1+1.19 fabric_version=0.58.5+1.19.1
jfapi_version=2.9.1 jfapi_version=2.10.0
modrinth_id=oPRrsg3M modrinth_id=combit
modrinth_required_dependencies=WKwQAwke modrinth_required_dependencies=libjf
modrinth_optional_dependencies=mOgUt4GM modrinth_optional_dependencies=modmenu, cloth-config
curseforge_id=561742 curseforge_id=561742
curseforge_required_dependencies=libjf curseforge_required_dependencies=libjf
curseforge_optional_dependencies=modmenu, cloth-config curseforge_optional_dependencies=modmenu, cloth-config

View File

@ -0,0 +1,12 @@
{
"required": true,
"minVersion": "0.8",
"package": "io.gitlab.jfronny.combit.mixin",
"compatibilityLevel": "JAVA_17",
"client": [
"InGameHudMixin"
],
"injectors": {
"defaultRequire": 1
}
}

View File

@ -15,9 +15,6 @@
"SnowballEntityMixin", "SnowballEntityMixin",
"ZombieEntityMixin" "ZombieEntityMixin"
], ],
"client": [
"InGameHudMixin"
],
"injectors": { "injectors": {
"defaultRequire": 1 "defaultRequire": 1
} }

View File

@ -20,12 +20,15 @@
] ]
}, },
"mixins": [ "mixins": [
"combit.mixins.json" "combit.mixins.json",
{
"config": "combit.client.mixins.json",
"environment": "client"
}
], ],
"depends": { "depends": {
"fabricloader": ">=0.12.12", "fabricloader": ">=0.12.12",
"minecraft": "*", "minecraft": "*",
"libjf-unsafe-v0": ">=2.7.2",
"libjf-config-v0": ">=2.7.2" "libjf-config-v0": ">=2.7.2"
} }
} }