mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-11 16:26:22 +00:00
Update libgdx to 1.5.0, now including binary library files.
This commit is contained in:
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -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
1
.gitignore
vendored
@@ -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.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -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>
|
||||||
|
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
BIN
forge-gui-ios/libs/gdx-backend-robovm.jar
Normal file
BIN
forge-gui-ios/libs/gdx-backend-robovm.jar
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -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>
|
||||||
@@ -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>
|
||||||
|
|||||||
@@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -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.
Binary file not shown.
Binary file not shown.
@@ -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>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user