diff --git a/README.md b/README.md index d382e229..a45dac25 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ # gdx-liftoff A modern setup tool for libGDX Gradle projects, forked from czyzby/gdx-setup +![Screenshot of gdx-liftoff](https://i.imgur.com/F2c7BDM.png) + If you've used libGDX for even a short time, you've probably used the official `gdx-setup.jar` made by the libGDX team. You may have used alternative setup tools, like [czyzby/gdx-setup](https://github.com/czyzby/gdx-setup). The problem these two setup tools share is that they currently use outdated Gradle versions, both old enough that they won't work with Java 11 or newer, and neither seems to be updated very often. This project provides another alternative setup tool based on diff --git a/build.gradle b/build.gradle index e7a3b767..7cd975bb 100644 --- a/build.gradle +++ b/build.gradle @@ -14,7 +14,7 @@ buildscript { } } -version = "1.9.9" +version = "1.9.9.0" mainClassName = 'com.github.czyzby.setup.MainKt' jar { diff --git a/src/main/kotlin/com/github/czyzby/setup/data/libs/unofficial/thirdPartyExtensions.kt b/src/main/kotlin/com/github/czyzby/setup/data/libs/unofficial/thirdPartyExtensions.kt index 9c225931..e6b034bf 100644 --- a/src/main/kotlin/com/github/czyzby/setup/data/libs/unofficial/thirdPartyExtensions.kt +++ b/src/main/kotlin/com/github/czyzby/setup/data/libs/unofficial/thirdPartyExtensions.kt @@ -54,7 +54,7 @@ class Overlap2D : ThirdPartyExtension() { @Extension class ArtemisOdb : ThirdPartyExtension() { override val id = "artemisOdb" - override val defaultVersion = "2.1.0" + override val defaultVersion = "2.2.0" override val url = "https://github.com/junkdog/artemis-odb" override fun initiateDependencies(project: Project) { @@ -166,7 +166,7 @@ class Dialogs : ThirdPartyExtension() { @Extension class InGameConsole : ThirdPartyExtension() { override val id = "inGameConsole" - override val defaultVersion = "0.5.2" + override val defaultVersion = "1.0.0" override val url = "https://github.com/StrongJoshua/libgdx-inGameConsole" override fun initiateDependencies(project: Project) { @@ -268,7 +268,7 @@ class Joice : ThirdPartyExtension() { @Extension class TypingLabel : ThirdPartyExtension() { override val id = "typingLabel" - override val defaultVersion = "1.0.3" + override val defaultVersion = "1.0.5" override val url = "https://github.com/rafaskb/typing-label" override fun initiateDependencies(project: Project) { diff --git a/src/main/kotlin/com/github/czyzby/setup/data/platforms/core.kt b/src/main/kotlin/com/github/czyzby/setup/data/platforms/core.kt index 937ed4aa..882dc822 100644 --- a/src/main/kotlin/com/github/czyzby/setup/data/platforms/core.kt +++ b/src/main/kotlin/com/github/czyzby/setup/data/platforms/core.kt @@ -40,6 +40,6 @@ eclipse.project.name = appName + '-core' dependencies { ${joinDependencies(dependencies)}} - """ +""" } } diff --git a/version.txt b/version.txt index c70654dd..a55817ca 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.9.9 \ No newline at end of file +1.9.9.0 \ No newline at end of file