Skip to content

Commit

Permalink
Release 1.12.1.17 !
Browse files Browse the repository at this point in the history
  • Loading branch information
tommyettinger committed Oct 17, 2024
1 parent 096bde1 commit 9a76559
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ When submitting a pull request, please format the application with the `ktlintFo
## Credits

The project was forked from the [`czyzby/gdx-setup`](https://github.com/czyzby/gdx-setup) repository.
[@czyzby](https://github.com/czyzby) and [@kotcrab](https://github.com/kotcrab) have created the original application,
as well as a set of libraries that it depends on (`gdx-lml` and VisUI respectively). Since then, the project is
[@czyzby](https://github.com/czyzby) and [@kotcrab](https://github.com/kotcrab) created the original application,
as well as a set of libraries that it depends on (`gdx-lml` and `VisUI` respectively). Since then, the project is
maintained by [@tommyettinger](https://github.com/tommyettinger). Graciously, czyzby came back and made a wide variety of improvements, so big
thanks there! Thanks also to [@metaphore](https://github.com/metaphore), who now maintains gdx-lml (which this used and may still use).

Expand All @@ -134,7 +134,7 @@ If you want to use these icons in a less-mangled format, there's

Thanks also to everyone who has made the various libraries and tools Liftoff depends upon. From the huge team
responsible for Graal Native Image, to [Construo](https://github.com/fourlastor-alexandria/construo) by pretty much a
team of one, some of the best features of Liftoff aren't in Liftoff code at all.
[team of one](https://github.com/fourlastor), some of the best features of Liftoff aren't in Liftoff code at all.

---

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
org.gradle.daemon=true
org.gradle.daemon=false
org.gradle.jvmargs=-Xms512M -Xmx1G -Dfile.encoding=UTF-8 -Dconsole.encoding=UTF-8
liftoffVersion=1.12.1.17-SNAPSHOT
liftoffVersion=1.12.1.17
#kotlinVersion=1.9.25
kotlinVersion=2.0.20
gdxVersion=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.12.1.17-SNAPSHOT"
const val VERSION = "1.12.1.17"
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/kotlin/gdx/liftoff/data/project/Project.kt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class Project(
val files = mutableListOf<ProjectFile>()
val rootGradle: RootGradleFile
val properties = mutableMapOf(
"org.gradle.daemon" to "true",
"org.gradle.daemon" to "false",
"org.gradle.jvmargs" to "-Xms512M -Xmx1G -Dfile.encoding=UTF-8 -Dconsole.encoding=UTF-8",
"org.gradle.configureondemand" to "false"
)
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.12.1.17-SNAPSHOT
liftoffVersion=1.12.1.17
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.12.1.16
1.12.1.17

0 comments on commit 9a76559

Please sign in to comment.