Update libgdx to 1.5.0, now including binary library files.

This commit is contained in:
elcnesh
2014-12-12 10:44:19 +00:00
parent 9283328e22
commit 691fd67b9c
30 changed files with 13 additions and 7 deletions

1
.gitattributes vendored
View File

@@ -1154,6 +1154,7 @@ forge-gui-desktop/src/test/java/forge/model/FModelTest.java -text
forge-gui-ios/.classpath -text
forge-gui-ios/.project -text
forge-gui-ios/Info.plist.xml -text
forge-gui-ios/libs/gdx-backend-robovm.jar -text
forge-gui-ios/libs/libObjectAL.a -text
forge-gui-ios/libs/libgdx-freetype.a -text
forge-gui-ios/libs/libgdx.a -text

1
.gitignore vendored
View File

@@ -46,6 +46,7 @@ forge-gui-android/res/values/target
forge-gui-android/target
forge-gui-desktop/*.iml
forge-gui-desktop/target
forge-gui-ios/target
forge-gui-mobile-dev/bin
forge-gui-mobile-dev/fallback_skin/Thumbs.db
forge-gui-mobile-dev/res

Binary file not shown.

Binary file not shown.

View File

@@ -101,7 +101,7 @@
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
<artifactId>gdx-backend-android</artifactId>
<version>1.4.1</version>
<version>1.5.0</version>
</dependency>
</dependencies>

View File

@@ -23,5 +23,8 @@
</attributes>
</classpathentry>
<classpathentry kind="lib" path="minlog-1.2.jar"/>
<classpathentry kind="lib" path="libs/gdx-backend-robovm.jar"/>
<classpathentry kind="lib" path="/forge-gui-mobile/libs/gdx-freetype.jar"/>
<classpathentry kind="lib" path="/forge-gui-mobile/libs/gdx.jar" sourcepath="/forge-gui-mobile/libs/gdx-sources.jar"/>
<classpathentry kind="output" path="target/classes"/>
</classpath>

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -79,7 +79,7 @@
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
<artifactId>gdx-backend-robovm</artifactId>
<version>1.4.1</version>
<version>1.5.0</version>
</dependency>
</dependencies>
</project>

View File

@@ -31,6 +31,7 @@
<pattern>org.apache.xalan.processor.TransformerFactoryImpl</pattern>
<pattern>java.util.logging.**</pattern>
<pattern>com.esotericsoftware.minlog.Log</pattern>
<pattern>com.badlogic.gdx.**</pattern>
</forceLinkClasses>
<libs>
<lib>libs/libgdx.a</lib>

View File

@@ -41,12 +41,12 @@ public class Main extends IOSApplication.Delegate {
private static final class IOSClipboard implements com.badlogic.gdx.utils.Clipboard {
@Override
public String getContents() {
return UIPasteboard.getGeneral().getString();
return UIPasteboard.getGeneralPasteboard().getString();
}
@Override
public void setContents(final String contents0) {
UIPasteboard.getGeneral().setString(contents0);
UIPasteboard.getGeneralPasteboard().setString(contents0);
}
}

View File

@@ -27,7 +27,7 @@
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
<artifactId>gdx-backend-lwjgl</artifactId>
<version>1.4.1</version>
<version>1.5.0</version>
</dependency>
</dependencies>
</project>

Binary file not shown.

View File

@@ -63,12 +63,12 @@
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
<artifactId>gdx</artifactId>
<version>1.4.1</version>
<version>1.5.0</version>
</dependency>
<dependency>
<groupId>com.badlogicgames.gdx</groupId>
<artifactId>gdx-freetype</artifactId>
<version>1.4.1</version>
<version>1.5.0</version>
</dependency>
</dependencies>