Skip to content

Commit

Permalink
Updates! Gradle! Construo!
Browse files Browse the repository at this point in the history
  • Loading branch information
tommyettinger committed Nov 13, 2024
1 parent c6a1bb5 commit 68632ec
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ These were found by JojoIce in [this issue thread](https://github.com/libgdx/gdx
more future discoveries could be in that thread or in other issues. As far as I can tell, the first command clears any
attributes on the downloaded `.app`, which removes any quarantine settings, and the second command sets the entry point
inside the `.app` to be executable. The second command isn't needed anymore thanks to changes in Liftoff 1.12.1.15,
which uses construo 1.4.1 . Since the quarantine settings are applied to the .app when it is downloaded, there
which uses construo 1.4.1 (the current version uses 1.5.1). Since the quarantine settings are applied to the .app when it is downloaded, there
isn't really any change that could be made to how Liftoff is built that would make it somehow avoid being quarantined.
The only ways I know of that handle quarantine settings are to a) download gdx-liftoff.app via a tool such as curl, or
b) download it however you want and use the above `xattr` command to remove the file from quarantine. Using curl will
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {
google()
}
dependencies {
classpath "io.github.fourlastor:construo:1.4.3"
classpath "io.github.fourlastor:construo:1.5.1"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "org.jlleitschuh.gradle:ktlint-gradle:11.5.0"
}
Expand Down
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.0.1
liftoffVersion=1.13.0.2-SNAPSHOT
kotlinVersion=2.0.21
gdxVersion=1.12.1
lmlVersion=1.10.1.12.1
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
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.0.1"
const val VERSION = "1.13.0.2-SNAPSHOT"
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 @@ -491,7 +491,7 @@ class Colorful : ThirdPartyExtension() {
@Extension
class Anim8 : ThirdPartyExtension() {
override val id = "anim8"
override val defaultVersion = "0.4.6"
override val defaultVersion = "0.4.7"
override val url = "https://github.com/tommyettinger/anim8-gdx"
override val group = "com.github.tommyettinger"
override val name = "anim8-gdx"
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/gdx/liftoff/data/platforms/Lwjgl3.kt
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ buildscript {
gradlePluginPortal()
}
dependencies {
classpath "io.github.fourlastor:construo:1.4.3"
classpath "io.github.fourlastor:construo:1.5.1"
if(enableGraalNative == 'true') {
classpath "org.graalvm.buildtools.native:org.graalvm.buildtools.native.gradle.plugin:0.9.28"
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
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.0.1
liftoffVersion=1.13.0.2-SNAPSHOT
projectNameDefault=YourProjectName
packageNameDefault=io.github.some_example_name
mainClassNameDefault=Main
Expand Down

0 comments on commit 68632ec

Please sign in to comment.