diff --git a/build.gradle b/build.gradle index 940f61a..2bef6f8 100644 --- a/build.gradle +++ b/build.gradle @@ -8,7 +8,7 @@ plugins { } group 'me.mestima' -version '1.0' +version '2.0' mainClassName = 'me.mestima.zomboidmodscopier.ZomboidCopierKt' repositories { diff --git a/src/main/kotlin/me/mestima/zomboidmodscopier/ZomboidCopier.kt b/src/main/kotlin/me/mestima/zomboidmodscopier/ZomboidCopier.kt index 0853927..2aed4dd 100644 --- a/src/main/kotlin/me/mestima/zomboidmodscopier/ZomboidCopier.kt +++ b/src/main/kotlin/me/mestima/zomboidmodscopier/ZomboidCopier.kt @@ -9,7 +9,7 @@ class ZomboidCopier : Application() { override fun start(stage: Stage) { val fxmlLoader = FXMLLoader(ZomboidCopier::class.java.getResource("main.fxml")) val scene = Scene(fxmlLoader.load(), 483.0, 281.0) - stage.title = "Zomboid mods copier v1.0" + stage.title = "Zomboid mods copier v2.0" stage.scene = scene stage.show() }