Skip to content

Commit

Permalink
Update to libGDX 1.12.1
Browse files Browse the repository at this point in the history
Version changed to 0.5.4 release.
  • Loading branch information
metaphore committed Nov 10, 2023
1 parent b5d2fc6 commit 138a6ee
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
8 changes: 5 additions & 3 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
## 0.5.4
- Updated to libGDX 1.12.1

## 0.5.2
- libGDX updated to 1.12.0
- Updated to libGDX 1.12.0

## 0.5.1

- libGDX version updated to 1.11.0
- Updated to libGDX 1.11.0
- `VfxEffect` constrains its internal width and height on `#resize(int, int)`.
Max side size of the internal buffers is now limited to the `VfxEffect#MAX_FRAME_BUFFER_SIDE` constant value which is 8192 by default.
Feel free to change it according to your project requirements.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ allprojects {
Add the dependency:
```gradle
dependencies {
implementation 'com.crashinvaders.vfx:gdx-vfx-core:0.5.3'
implementation 'com.crashinvaders.vfx:gdx-vfx-effects:0.5.3' // Optional, if you need standard filter/effects.
implementation 'com.crashinvaders.vfx:gdx-vfx-core:0.5.4'
implementation 'com.crashinvaders.vfx:gdx-vfx-effects:0.5.4' // Optional, if you need standard filter/effects.
}
```

Expand All @@ -57,7 +57,7 @@ The library is fully HTML/GWT compatible, but requires an extra dependency to be
Please consider reading [GWT integration guide](https://github.com/crashinvaders/gdx-vfx/wiki/GWT-HTML-Library-Integration).
```gradle
dependencies {
implementation 'com.crashinvaders.vfx:gdx-vfx-gwt:0.5.3'
implementation 'com.crashinvaders.vfx:gdx-vfx-gwt:0.5.4'
}
```

Expand Down
2 changes: 1 addition & 1 deletion demo/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ roboVmVersion=2.3.20
gwtLibVersion=2.8.2
gwtPluginVersion=1.1.28
grettyVersion=3.1.0
lmlVersion=1.10.1.12.0
lmlVersion=1.10.1.12.1
2 changes: 1 addition & 1 deletion gdx-vfx/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ subprojects {

ext {
projectVersion = '0.5.4'
isSnapshot = true
isSnapshot = false
}

group = "com.crashinvaders.vfx"
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ POM_DEV0_ID=metaphore
POM_DEV0_NAME=Anton Chekulaev
POM_DEV0_EMAIL=[email protected]

gdxVersion=1.12.0
gdxVersion=1.12.1

# This is a mock-up property values. To deploy the archives,
# you need to fill these with proper data. To avoid accidental commit of your
Expand Down

0 comments on commit 138a6ee

Please sign in to comment.