Skip to content

Commit

Permalink
Update some third-party extensions; initial release 1.9.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tommyettinger committed May 27, 2019
1 parent abf30ff commit 68091cf
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ buildscript {
}
}

version = "1.9.9"
version = "1.9.9.0"
mainClassName = 'com.github.czyzby.setup.MainKt'

jar {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down Expand Up @@ -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) {
Expand Down Expand Up @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ eclipse.project.name = appName + '-core'
dependencies {
${joinDependencies(dependencies)}}
"""
"""
}
}
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.9.9
1.9.9.0

0 comments on commit 68091cf

Please # to comment.