Skip to content

Commit

Permalink
Release 1.9.14.3, with more iOS fixes.
Browse files Browse the repository at this point in the history
This also updates the third-party dep on MrStahlfelge's websocket library, and as part of the iOS fixes, makes the default version `0.0.1`, which the App Store will accept, instead of `0.0.1-SNAPSHOT`, which is better-suited to a library in development.
  • Loading branch information
tommyettinger committed Mar 10, 2021
1 parent 2d3e619 commit 64d8521
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ buildscript {
}
}

version = "1.9.14.3-SNAPSHOT"
version = "1.9.14.3"
mainClassName = 'com.github.czyzby.setup.MainKt'

jar {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import com.kotcrab.vis.ui.widget.file.FileChooser
@Component
class Configuration {
companion object {
const val VERSION = "1.9.14.3-SNAPSHOT"
const val VERSION = "1.9.14.3"
const val WIDTH = 600
const val HEIGHT = 700
const val PREFERENCES_PATH = "gdx-liftoff-prefs"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import com.github.czyzby.setup.views.Extension
* Current version of KTX libraries.
* @author MJ
*/
// this is a version behind, because 1.9.14-b1 depends on libGDX 1.9.14...
const val KTX_VERSION = "1.9.13-b1"

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ class AutumnMVC : ThirdPartyExtension() {
@Extension
class Websocket : ThirdPartyExtension() {
override val id = "websocket"
override val defaultVersion = "1.9.10.1"
override val defaultVersion = "1.9.10.3"
override val url = "https://github.com/MrStahlfelge/gdx-websockets"

override fun initiateDependencies(project: Project) {
Expand Down Expand Up @@ -158,7 +158,7 @@ class Websocket : ThirdPartyExtension() {
@Extension
class WebsocketSerialization : ThirdPartyExtension() {
override val id = "websocketSerialization"
override val defaultVersion = "1.9.10.1"
override val defaultVersion = "1.9.10.3"
override val url = "https://github.com/MrStahlfelge/gdx-websockets/tree/master/serialization"

override fun initiateDependencies(project: Project) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/i18n/nls.properties
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ gdxVersionTip=Version of the official libGDX libraries. The latest release was {
gwtVersion=GWT version:
gwtVersionTip=Version of GWT libraries. Should match version used to build the GWT backend. Defaults to 2.8.2. Other versions are NOT guaranteed to work out of the box due to API changes. Pre-1.9.5 libGDX uses GWT 2.6.1, 1.9.5 to 1.9.8 used 2.8.0, 1.9.9 up use 2.8.2
gwtPlugin=GWT plugin version:
gwtPluginTip=Version of the Gradle plugin for GWT applications: de.richsource.gradle.plugins:gwt-gradle-plugin
gwtPluginTip=Version of the Gradle plugin for GWT applications: org.wisepersist:gwt-gradle-plugin
sdkVersion=Target Android API:
sdkVersionTip=Version of the targeted Android API; should be at least 29.
androidPluginVersion=Android plugin:
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/templates/tabs/advanced.lml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
@gdxVersion
<textField id="gdxVersion" tooltip="@gdxVersionTip|$gdxVersion">1.9.13</textField>
@version
<textField id="version" tooltip="@versionTip" row="true">0.0.1-SNAPSHOT</textField>
<textField id="version" tooltip="@versionTip" row="true">0.0.1</textField>
@javaVersion
<floatSpinner id="javaVersion" min="7" max="17" value="8" step="1" precision="1"
tooltip="@javaVersionTip"/>
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.9.14.2
1.9.14.3

0 comments on commit 64d8521

Please sign in to comment.