chore: upgraded mod to 1.20.2
This commit is contained in:
parent
1af524352c
commit
fbb2c9f4fa
4 changed files with 9 additions and 9 deletions
|
@ -11,7 +11,7 @@ plugins {
|
||||||
id("org.jetbrains.gradle.plugin.idea-ext")
|
id("org.jetbrains.gradle.plugin.idea-ext")
|
||||||
}
|
}
|
||||||
|
|
||||||
val mavenVersion = System.getenv("CI_COMMIT_TAG") ?: System.getenv("CI_COMMIT_SHORT_SHA")?.let { "$it-dev" } ?: "0.3.0-snap"
|
val mavenVersion = System.getenv("CI_COMMIT_TAG") ?: System.getenv("CI_COMMIT_SHORT_SHA")?.let { "$it-dev" } ?: "0.4.0-snap"
|
||||||
val modId: String by project
|
val modId: String by project
|
||||||
val modName: String by project
|
val modName: String by project
|
||||||
|
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
#Wed Jul 26 02:02:24 CEST 2023
|
#Wed Jul 26 02:02:24 CEST 2023
|
||||||
fabric.loom.version=1.+
|
fabric.loom.version=1.+
|
||||||
kotlin.version=1.9.0
|
kotlin.version=1.9.0
|
||||||
fabric.api.version=0.86.1+1.20.1
|
fabric.api.version=0.91.1+1.20.2
|
||||||
yarn.version=1.20.1+build.10
|
yarn.version=1.20.2+build.4
|
||||||
configlib.version=3.0.0-beta
|
configlib.version=e89c979e-dev
|
||||||
idea-ext.version=1.1.6
|
idea-ext.version=1.1.6
|
||||||
org.gradle.jvmargs=-Xmx1G
|
org.gradle.jvmargs=-Xmx1G
|
||||||
modId=etaorion
|
modId=etaorion
|
||||||
|
@ -12,7 +12,7 @@ kotlinx.serialization.version=1.5.1
|
||||||
fabric.kotlin.version=1.10.8+kotlin.1.9.0
|
fabric.kotlin.version=1.10.8+kotlin.1.9.0
|
||||||
mavenGroup=net.moonleay
|
mavenGroup=net.moonleay
|
||||||
kotlin.code.style=official
|
kotlin.code.style=official
|
||||||
minecraft.version=1.20.1
|
minecraft.version=1.20.2
|
||||||
modName=EtaOrionFabric2
|
modName=EtaOrionFabric2
|
||||||
fabric.loader.version=0.14.21
|
fabric.loader.version=0.15.0
|
||||||
mavenArtifact=etaorionfabric
|
mavenArtifact=etaorionfabric
|
||||||
|
|
|
@ -68,7 +68,7 @@ class AutoTextScreen(val parent: Screen) : Screen(Text.of("AutoText Manager")) {
|
||||||
|
|
||||||
|
|
||||||
override fun tick() {
|
override fun tick() {
|
||||||
addressField!!.tick()
|
// addressField!!.tick()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun keyPressed(keyCode: Int, scanCode: Int, modifiers: Int): Boolean {
|
override fun keyPressed(keyCode: Int, scanCode: Int, modifiers: Int): Boolean {
|
||||||
|
|
|
@ -38,8 +38,8 @@ class OptionScreen(val parent: Screen) : Screen(Text.of("EtaOrion Fabric Options
|
||||||
MinecraftClient.getInstance().setScreen(parent)
|
MinecraftClient.getInstance().setScreen(parent)
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun render(context: DrawContext?, mouseX: Int, mouseY: Int, delta: Float) {
|
override fun render(context: DrawContext, mouseX: Int, mouseY: Int, delta: Float) {
|
||||||
this.renderBackground(context)
|
this.renderBackground(context, mouseX, mouseY, delta)
|
||||||
//drawCenteredText(matrices, this.textRenderer, this.title, this.width / 2, 15, 0xFFFFFF);
|
//drawCenteredText(matrices, this.textRenderer, this.title, this.width / 2, 15, 0xFFFFFF);
|
||||||
optionList!!.render(context, mouseX, mouseY, delta)
|
optionList!!.render(context, mouseX, mouseY, delta)
|
||||||
context?.drawCenteredTextWithShadow(
|
context?.drawCenteredTextWithShadow(
|
||||||
|
|
Loading…
Reference in a new issue