Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to MobiVM 2.3.12 #6340

Merged
merged 1 commit into from Jan 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES
@@ -1,6 +1,7 @@
[1.9.13]
- [BREAKING CHANGE] Fixed keycode representations for ESCAPE, END, INSERT and F1 to F12. These keys are working on Android now, but if you hardcoded or saved the values you might need to migrate.
- [BREAKING CHANGE] TextureAtlas.AtlasRegion and Region splits and pads fields have been removed and moved to name/value pairs, use #findValue("split") and #findValue("pad") instead.
- iOS: Update to MobiVM 2.3.12
- GWT: Key codes set with Gdx.input.setCatchKey prevent default browser behaviour
- Added Scaling.contain mode: Scales the source to fit the target while keeping the same aspect ratio, but the source is not scaled at all if smaller in both directions.
- API Addition: Added hasContents() to Clipboard interface, to reduce clipboard notifications on iOS 14
Expand Down
Expand Up @@ -25,7 +25,7 @@ public class DependencyBank {
static String libgdxVersion = "1.9.12";
//Temporary snapshot version, we need a more dynamic solution for pointing to the latest nightly
static String libgdxNightlyVersion = "1.9.13-SNAPSHOT";
static String roboVMVersion = "2.3.11";
static String roboVMVersion = "2.3.12";
static String buildToolsVersion = "29.0.3";
static String androidAPILevel = "29";
static String androidMinAPILevel = "14";
Expand Down
2 changes: 1 addition & 1 deletion fetch.xml
Expand Up @@ -4,7 +4,7 @@

<property name="robovm" value="https://oss.sonatype.org/content/repositories/releases/com/mobidevelop/robovm"/>

<property name="robovm-version" value="2.3.11"/>
<property name="robovm-version" value="2.3.12"/>

<property name="lwjgl" value="https://oss.sonatype.org/content/repositories/releases/org/lwjgl"/>
<property name="lwjgl-version" value="3.2.3"/>
Expand Down
2 changes: 1 addition & 1 deletion gradle/dependencies.gradle
Expand Up @@ -20,7 +20,7 @@ ext {
testnatives = [:]
}

versions.robovm = "2.3.11"
versions.robovm = "2.3.12"
versions.gwt = "2.8.2"
versions.gwtPlugin = "1.0.9"
versions.gretty = "3.0.2"
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -47,7 +47,7 @@
<gwt.version>2.8.2</gwt.version>
<lwjgl.version>2.9.3</lwjgl.version>
<lwjgl3.version>3.2.3</lwjgl3.version>
<robovm.version>2.3.11</robovm.version>
<robovm.version>2.3.12</robovm.version>
</properties>

<modules>
Expand Down