Skip to content

Commit

Permalink
chore: Bump lwjgl3 to 3.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Berstanio committed Sep 25, 2023
1 parent 42f48cd commit 84b6be9
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
- LWJGL3 Improvement: Audio device is automatically switched if it was changed in the operating system.
- Tiled Fix: TiledLayer parallax default values fix
- Android: Removed mouse catching added on 1.12.0 due to unintended effects (see #7187).
- Update to LWJGL 3.3.3

[1.12.0]
- [BREAKING CHANGE] Added #touchCancelled to InputProcessor interface, see #6871.
Expand Down
39 changes: 34 additions & 5 deletions gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ versions.gwtPlugin = "1.1.16"
versions.gretty = "3.0.7"
versions.jglwf = "1.1"
versions.lwjgl = "2.9.3"
versions.lwjgl3 = "3.3.2"
versions.lwjgl3 = "3.3.3"
versions.jlayer = "1.0.1-gdx"
versions.jorbis = "0.0.17"
versions.junit = "4.13.2"
Expand Down Expand Up @@ -139,12 +139,41 @@ libraries.junit = [
]

testnatives.desktop = [
files("gdx/libs/gdx-natives.jar"),
files("extensions/gdx-box2d/gdx-box2d/libs/gdx-box2d-natives.jar"),
files("extensions/gdx-bullet/libs/gdx-bullet-natives.jar"),
files("extensions/gdx-freetype/libs/gdx-freetype-natives.jar")

]

project("gdx").afterEvaluate {
if (project("gdx").jnigenJarNativesDesktop.outputs.getFiles().getSingleFile().exists()) {
testnatives.desktop += [project("gdx").jnigenJarNativesDesktop.outputs.getFiles()]
} else {
testnatives.desktop += [files("gdx/libs/gdx-natives.jar")]
}
}

project("gdx").afterEvaluate {
if (project("gdx").jnigenJarNativesDesktop.outputs.getFiles().getSingleFile().exists()) {
testnatives.desktop += [project("gdx").jnigenJarNativesDesktop.outputs.getFiles()]
} else {
testnatives.desktop += [files("gdx/libs/gdx-natives.jar")]
}
}

project("gdx").afterEvaluate {
if (project("gdx").jnigenJarNativesDesktop.outputs.getFiles().getSingleFile().exists()) {
testnatives.desktop += [project("gdx").jnigenJarNativesDesktop.outputs.getFiles()]
} else {
testnatives.desktop += [files("gdx/libs/gdx-natives.jar")]
}
}

project("gdx").afterEvaluate {
if (project("gdx").jnigenJarNativesDesktop.outputs.getFiles().getSingleFile().exists()) {
testnatives.desktop += [project("gdx").jnigenJarNativesDesktop.outputs.getFiles()]
} else {
testnatives.desktop += [files("gdx/libs/gdx-natives.jar")]
}
}

gdxnatives.desktop = [
files("gdx/libs/gdx-natives.jar")
]

0 comments on commit 84b6be9

Please sign in to comment.