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/.classpath -text
forge-gui-ios/.project -text forge-gui-ios/.project -text
forge-gui-ios/Info.plist.xml -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/libObjectAL.a -text
forge-gui-ios/libs/libgdx-freetype.a -text forge-gui-ios/libs/libgdx-freetype.a -text
forge-gui-ios/libs/libgdx.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-android/target
forge-gui-desktop/*.iml forge-gui-desktop/*.iml
forge-gui-desktop/target forge-gui-desktop/target
forge-gui-ios/target
forge-gui-mobile-dev/bin forge-gui-mobile-dev/bin
forge-gui-mobile-dev/fallback_skin/Thumbs.db forge-gui-mobile-dev/fallback_skin/Thumbs.db
forge-gui-mobile-dev/res forge-gui-mobile-dev/res

Binary file not shown.

Binary file not shown.

View File

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

View File

@@ -23,5 +23,8 @@
</attributes> </attributes>
</classpathentry> </classpathentry>
<classpathentry kind="lib" path="minlog-1.2.jar"/> <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"/> <classpathentry kind="output" path="target/classes"/>
</classpath> </classpath>

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

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

View File

@@ -31,6 +31,7 @@
<pattern>org.apache.xalan.processor.TransformerFactoryImpl</pattern> <pattern>org.apache.xalan.processor.TransformerFactoryImpl</pattern>
<pattern>java.util.logging.**</pattern> <pattern>java.util.logging.**</pattern>
<pattern>com.esotericsoftware.minlog.Log</pattern> <pattern>com.esotericsoftware.minlog.Log</pattern>
<pattern>com.badlogic.gdx.**</pattern>
</forceLinkClasses> </forceLinkClasses>
<libs> <libs>
<lib>libs/libgdx.a</lib> <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 { private static final class IOSClipboard implements com.badlogic.gdx.utils.Clipboard {
@Override @Override
public String getContents() { public String getContents() {
return UIPasteboard.getGeneral().getString(); return UIPasteboard.getGeneralPasteboard().getString();
} }
@Override @Override
public void setContents(final String contents0) { public void setContents(final String contents0) {
UIPasteboard.getGeneral().setString(contents0); UIPasteboard.getGeneralPasteboard().setString(contents0);
} }
} }

View File

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

Binary file not shown.

View File

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