diff --git a/Troubleshooting.md b/Troubleshooting.md index 14eee870..36a32e43 100644 --- a/Troubleshooting.md +++ b/Troubleshooting.md @@ -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 (the current version uses 1.5.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.6.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 diff --git a/build.gradle b/build.gradle index 76ef7836..2cf17e7e 100644 --- a/build.gradle +++ b/build.gradle @@ -9,7 +9,7 @@ buildscript { google() } dependencies { - classpath "io.github.fourlastor:construo:1.5.1" + classpath "io.github.fourlastor:construo:1.6.1" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion" classpath "org.jlleitschuh.gradle:ktlint-gradle:11.5.0" } diff --git a/src/main/kotlin/gdx/liftoff/data/platforms/Lwjgl3.kt b/src/main/kotlin/gdx/liftoff/data/platforms/Lwjgl3.kt index b74d7885..59db4aef 100644 --- a/src/main/kotlin/gdx/liftoff/data/platforms/Lwjgl3.kt +++ b/src/main/kotlin/gdx/liftoff/data/platforms/Lwjgl3.kt @@ -137,7 +137,7 @@ buildscript { gradlePluginPortal() } dependencies { - classpath "io.github.fourlastor:construo:1.5.1" + classpath "io.github.fourlastor:construo:1.6.1" if(enableGraalNative == 'true') { classpath "org.graalvm.buildtools.native:org.graalvm.buildtools.native.gradle.plugin:0.9.28" }