Skip to content

Commit

Permalink
Merge pull request #6340 from obigu/mobivm2.3.12
Browse files Browse the repository at this point in the history
Upgrade to MobiVM 2.3.12
  • Loading branch information
Tom-Ski committed Jan 1, 2021
2 parents f3364b3 + 893dd24 commit e389162
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
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

0 comments on commit e389162

Please sign in to comment.