Skip to content

Commit

Permalink
Release 1.13.0.1 !
Browse files Browse the repository at this point in the history
  • Loading branch information
tommyettinger committed Nov 10, 2024
1 parent cda7619 commit c6a1bb5
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
org.gradle.daemon=false
org.gradle.jvmargs=-Xms512M -Xmx1G -Dfile.encoding=UTF-8 -Dconsole.encoding=UTF-8
liftoffVersion=1.13.0.1-SNAPSHOT
liftoffVersion=1.13.0.1
kotlinVersion=2.0.21
gdxVersion=1.12.1
lmlVersion=1.10.1.12.1
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/gdx/liftoff/config/Configuration.kt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import gdx.liftoff.views.widgets.ScrollableTextArea
@Suppress("unused") // Fields accessed via reflection.
class Configuration {
companion object {
const val VERSION = "1.13.0.1-SNAPSHOT"
const val VERSION = "1.13.0.1"
const val WIDTH = 600
const val HEIGHT = 700
const val PREFERENCES_PATH = "gdx-liftoff-prefs"
Expand Down
5 changes: 3 additions & 2 deletions src/main/kotlin/gdx/liftoff/data/platforms/Android.kt
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,10 @@ class AndroidGradleFile(val project: Project) : GradleFile(Android.ID) {
addNativeDependency("com.badlogicgames.gdx:gdx-platform:\$gdxVersion:natives-x86")
addNativeDependency("com.badlogicgames.gdx:gdx-platform:\$gdxVersion:natives-x86_64")
// TODO: This may be best if it can be removed in the version after libGDX 1.13.0, or established as a GDX dep.
val ver : GdxVersion? = GdxVersion.parseGdxVersion(project.advanced.gdxVersion)
if(ver?.major == 1 && ver.minor == 13 && ver.revision == 0)
val ver: GdxVersion? = GdxVersion.parseGdxVersion(project.advanced.gdxVersion)
if (ver?.major == 1 && ver.minor == 13 && ver.revision == 0) {
addDependency("androidx.core:core:1.13.1")
}

plugins.add("com.android.application")
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/ui-data/defaults.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
liftoffVersion=1.13.0.1-SNAPSHOT
liftoffVersion=1.13.0.1
projectNameDefault=YourProjectName
packageNameDefault=io.github.some_example_name
mainClassNameDefault=Main
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.13.0.0
1.13.0.1

0 comments on commit c6a1bb5

Please sign in to comment.