Skip to content

Commit

Permalink
Release 1.13.1.1 !
Browse files Browse the repository at this point in the history
  • Loading branch information
tommyettinger committed Jan 19, 2025
1 parent 6056f23 commit 49e3d2f
Show file tree
Hide file tree
Showing 6 changed files with 6 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.1.1-SNAPSHOT
liftoffVersion=1.13.1.1
kotlinVersion=2.1.0
gdxVersion=1.13.1
lmlVersion=1.10.1.12.1
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/gdx/liftoff/ui/panels/SocialPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public void populate(boolean fullscreen) {
add(textButton);
addHandListener(textButton);
addTooltip(textButton, Align.top, prop.getProperty("libgdxTip"));
onChange(textButton, () -> Gdx.net.openURI(prop.getProperty("libGdxUrl")));
onChange(textButton, () -> Gdx.net.openURI(prop.getProperty("libgdxUrl")));

//discord
textButton = new TextButton(prop.getProperty("discordButton"), skin, "link");
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.1.1-SNAPSHOT"
const val VERSION = "1.13.1.1"
const val WIDTH = 600
const val HEIGHT = 700
const val PREFERENCES_PATH = "gdx-liftoff-prefs"
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.1.1-SNAPSHOT
liftoffVersion=1.13.1.1
projectNameDefault=YourProjectName
packageNameDefault=io.github.some_example_name
mainClassNameDefault=Main
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/ui-data/nls.properties
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ gdx-freetypeUrl=https://libgdx.com/wiki/extensions/gdx-freetype
gdx-toolsUrl=https://libgdx.com/wiki/tools/texture-packer
gdxPayUrl=https://github.com/libgdx/gdx-pay
updateUrl=https://github.com/libgdx/gdx-liftoff/releases
libGdxUrl=https://libgdx.com/
libgdxUrl=https://libgdx.com/
discordUrl=https://libgdx.com/community/discord/
wikiUrl=https://libgdx.com/wiki/
jdkUrl=https://bell-sw.com/pages/downloads/#jdk-17-lts
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.13.1.0
1.13.1.1

0 comments on commit 49e3d2f

Please sign in to comment.