Skip to content

Commit

Permalink
fix YACL
Browse files Browse the repository at this point in the history
  • Loading branch information
isXander committed Dec 15, 2022
1 parent d07d4da commit 15bb043
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 11 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ plugins {
}

group = "dev.isxander"
version = "2.9.0"
version = "2.9.1"

repositories {
mavenCentral()
Expand Down Expand Up @@ -45,10 +45,10 @@ dependencies {
include(libs.settxi.serialization.kotlinx)
include(libs.settxi.gui)
modImplementation(libs.settxi.gui.yacl) {
artifact { classifier = "fabric-1.19.2" }
artifact { classifier = "fabric-1.19.3" }
}
include(libs.settxi.gui.yacl) {
artifact { classifier = "fabric-1.19.2" }
artifact { classifier = "fabric-1.19.3" }
}

modImplementation(libs.mod.menu)
Expand Down
1 change: 1 addition & 0 deletions changelogs/2.9.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Re-compile with latest version of YetAnotherConfigLib as new version JAR isn't backwards compatible
6 changes: 3 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ fabric_loader = "0.14.11"
fabric_api = "0.68.1+1.19.3"
fabric_language_kotlin = "1.8.6+kotlin.1.7.21"
ktoml = "0.3.0"
yet_another_config_lib = "2.0.0"
mod_menu = "5.0.0-alpha.4"
yet_another_config_lib = "2.1.1"
mod_menu = "5.0.0"
mixin_extras = "0.1.1"

settxi = "2.10.5"
settxi = "2.10.6"

[libraries]
minecraft = { module = "com.mojang:minecraft", version.ref = "minecraft" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,5 @@ object ZoomifySettings : SettxiFileConfig(
}

fun gui(parent: Screen? = null): Screen =
yetAnotherConfigLib(Text.translatable("zoomify.gui.title"), parent) {

}
yetAnotherConfigLib(Text.translatable("zoomify.gui.title"), parent)
}
4 changes: 2 additions & 2 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
"fabric-language-kotlin": ">=1.8.6+kotlin.1.7.21",
"minecraft": "1.19.x",
"java": ">=17",
"yet-another-config-lib": ">=0.1.2",
"settxi-gui-yacl": ">=2.10.0"
"yet-another-config-lib": ">=2.1.1",
"settxi-gui-yacl": ">=2.10.6"
},
"suggests": {
"modmenu": ">=4.0.0"
Expand Down

0 comments on commit 15bb043

Please sign in to comment.