Skip to content

Commit

Permalink
Update to MobiVM 2.3.19 (#7109)
Browse files Browse the repository at this point in the history
  • Loading branch information
obigu committed Mar 23, 2023
1 parent 83e2980 commit 54b35c2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGES
Expand Up @@ -13,6 +13,7 @@
- [BREAKING CHANGE] Mesh#getVerticesBuffer, Mesh#getIndicesBuffer, VertexData#getBuffer, and IndexData#getBuffer are deprecated in favor to new methods with boolean parameter. If you subclassed some of these classes, you need to implement the new methods.
- [BREAKING CHANGE] Desktop: The return value of AudioDevice#getLatency() is now in samples, and not milliseconds
- iOS: Add new MobiVM MetalANGLE backend
- iOS: Update to MobiVM 2.3.19
- API Addition: Added Haptics API with 4 different Input#vibrate() methods with complete Android and iOS implementations.
- Fix: Fixed Android and iOS touch cancelled related issues, see #6871.
- Javadoc: Add "-use" flag to javadoc generation
Expand Down
Expand Up @@ -24,7 +24,7 @@ public class DependencyBank {
static String libgdxVersion = "1.11.0";
// Temporary snapshot version, we need a more dynamic solution for pointing to the latest nightly
static String libgdxNightlyVersion = "1.11.1-SNAPSHOT";
static String roboVMVersion = "2.3.16";
static String roboVMVersion = "2.3.19";
static String buildToolsVersion = "33.0.0";
static String androidAPILevel = "32";
static String androidMinAPILevel = "14";
Expand Down
2 changes: 1 addition & 1 deletion gradle/dependencies.gradle
Expand Up @@ -23,7 +23,7 @@ ext {

versions.java = project.hasProperty("javaVersion") ? Integer.parseInt(project.getProperty("javaVersion")) : 7
versions.javaLwjgl3 = project.hasProperty("javaVersion") ? Integer.parseInt(project.getProperty("javaVersion")) : 8
versions.robovm = "2.3.16"
versions.robovm = "2.3.19"
versions.gwt = "2.8.2"
versions.gwtPlugin = "1.1.16"
versions.gretty = "3.0.7"
Expand Down

0 comments on commit 54b35c2

Please sign in to comment.