bump new version

This commit is contained in:
Mestima 2022-10-11 23:16:47 +03:00
parent b4d2691e65
commit a231eb993a
No known key found for this signature in database
GPG Key ID: 32203E72500DBC92
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ plugins {
}
group 'me.mestima'
version '1.0'
version '2.0'
mainClassName = 'me.mestima.zomboidmodscopier.ZomboidCopierKt'
repositories {

View File

@ -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()
}