diff --git a/project.clj b/project.clj index adefa3c..df4d67d 100644 --- a/project.clj +++ b/project.clj @@ -1,14 +1,14 @@ -(defproject play-clj "0.3.9-SNAPSHOT" +(defproject play-clj "0.3.9" :description "A libGDX wrapper for easy cross-platform game development" :url "https://github.com/oakes/play-clj" :license {:name "Public Domain" :url "http://unlicense.org/UNLICENSE"} - :dependencies [[com.badlogicgames.gdx/gdx "1.2.1-SNAPSHOT"] - [com.badlogicgames.gdx/gdx-box2d "1.2.1-SNAPSHOT"] - [com.badlogicgames.gdx/gdx-bullet "1.2.1-SNAPSHOT"] + :dependencies [[com.badlogicgames.gdx/gdx "1.3.0"] + [com.badlogicgames.gdx/gdx-box2d "1.3.0"] + [com.badlogicgames.gdx/gdx-bullet "1.3.0"] [org.clojure/clojure "1.6.0"]] :repositories [["sonatype" - "https://oss.sonatype.org/content/repositories/snapshots/"]] + "https://oss.sonatype.org/content/repositories/releases/"]] :source-paths ["src"] :java-source-paths ["src-java"] :javac-options ["-target" "1.6" "-source" "1.6" "-Xlint:-options"]) diff --git a/template/resources/armeabi-v7a/libgdx-bullet.so b/template/resources/armeabi-v7a/libgdx-bullet.so index 6875598..f34369b 100644 Binary files a/template/resources/armeabi-v7a/libgdx-bullet.so and b/template/resources/armeabi-v7a/libgdx-bullet.so differ diff --git a/template/resources/armeabi/libgdx-bullet.so b/template/resources/armeabi/libgdx-bullet.so index 1a3c9c6..57e416e 100644 Binary files a/template/resources/armeabi/libgdx-bullet.so and b/template/resources/armeabi/libgdx-bullet.so differ diff --git a/template/resources/ios/libgdx-box2d.a b/template/resources/ios/libgdx-box2d.a index 1f27eb6..a8bcffc 100644 Binary files a/template/resources/ios/libgdx-box2d.a and b/template/resources/ios/libgdx-box2d.a differ diff --git a/template/resources/ios/libgdx-bullet.a b/template/resources/ios/libgdx-bullet.a index 7b799a9..bb80ec0 100644 Binary files a/template/resources/ios/libgdx-bullet.a and b/template/resources/ios/libgdx-bullet.a differ diff --git a/template/resources/ios/libgdx.a b/template/resources/ios/libgdx.a index 377acbe..cf8eada 100644 Binary files a/template/resources/ios/libgdx.a and b/template/resources/ios/libgdx.a differ diff --git a/template/resources/x86/libgdx-bullet.so b/template/resources/x86/libgdx-bullet.so index 626734d..3037aa6 100644 Binary files a/template/resources/x86/libgdx-bullet.so and b/template/resources/x86/libgdx-bullet.so differ diff --git a/template/src/leiningen/new/play_clj/android-project.clj b/template/src/leiningen/new/play_clj/android-project.clj index 55fd2a8..9e79a18 100644 --- a/template/src/leiningen/new/play_clj/android-project.clj +++ b/template/src/leiningen/new/play_clj/android-project.clj @@ -1,10 +1,10 @@ (defproject {{app-name}} "0.0.1-SNAPSHOT" :description "FIXME: write description" - :dependencies [[com.badlogicgames.gdx/gdx "1.2.0" :use-resources true] - [com.badlogicgames.gdx/gdx-backend-android "1.2.0"] - [com.badlogicgames.gdx/gdx-box2d "1.2.0"] - [com.badlogicgames.gdx/gdx-bullet "1.2.0"] + :dependencies [[com.badlogicgames.gdx/gdx "1.3.0" :use-resources true] + [com.badlogicgames.gdx/gdx-backend-android "1.3.0"] + [com.badlogicgames.gdx/gdx-box2d "1.3.0"] + [com.badlogicgames.gdx/gdx-bullet "1.3.0"] [neko/neko "3.0.2"] [org.clojure-android/clojure "1.6.0-RC1" :use-resources true] [play-clj "0.3.9"]] diff --git a/template/src/leiningen/new/play_clj/desktop-project.clj b/template/src/leiningen/new/play_clj/desktop-project.clj index d2270a0..a48b0bb 100644 --- a/template/src/leiningen/new/play_clj/desktop-project.clj +++ b/template/src/leiningen/new/play_clj/desktop-project.clj @@ -1,15 +1,15 @@ (defproject {{app-name}} "0.0.1-SNAPSHOT" :description "FIXME: write description" - :dependencies [[com.badlogicgames.gdx/gdx "1.2.0"] - [com.badlogicgames.gdx/gdx-backend-lwjgl "1.2.0"] - [com.badlogicgames.gdx/gdx-box2d "1.2.0"] - [com.badlogicgames.gdx/gdx-box2d-platform "1.2.0" + :dependencies [[com.badlogicgames.gdx/gdx "1.3.0"] + [com.badlogicgames.gdx/gdx-backend-lwjgl "1.3.0"] + [com.badlogicgames.gdx/gdx-box2d "1.3.0"] + [com.badlogicgames.gdx/gdx-box2d-platform "1.3.0" :classifier "natives-desktop"] - [com.badlogicgames.gdx/gdx-bullet "1.2.0"] - [com.badlogicgames.gdx/gdx-bullet-platform "1.2.0" + [com.badlogicgames.gdx/gdx-bullet "1.3.0"] + [com.badlogicgames.gdx/gdx-bullet-platform "1.3.0" :classifier "natives-desktop"] - [com.badlogicgames.gdx/gdx-platform "1.2.0" + [com.badlogicgames.gdx/gdx-platform "1.3.0" :classifier "natives-desktop"] [org.clojure/clojure "1.6.0"] [play-clj "0.3.9"]] diff --git a/template/src/leiningen/new/play_clj/ios-project.clj b/template/src/leiningen/new/play_clj/ios-project.clj index bf9626d..2e61032 100644 --- a/template/src/leiningen/new/play_clj/ios-project.clj +++ b/template/src/leiningen/new/play_clj/ios-project.clj @@ -1,9 +1,9 @@ (defproject {{app-name}} "0.0.1-SNAPSHOT" :description "FIXME: write description" - :dependencies [[com.badlogicgames.gdx/gdx "1.2.0"] - [com.badlogicgames.gdx/gdx-backend-robovm "1.2.0"] - [com.badlogicgames.gdx/gdx-box2d "1.2.0"] - [com.badlogicgames.gdx/gdx-bullet "1.2.0"] + :dependencies [[com.badlogicgames.gdx/gdx "1.3.0"] + [com.badlogicgames.gdx/gdx-backend-robovm "1.3.0"] + [com.badlogicgames.gdx/gdx-box2d "1.3.0"] + [com.badlogicgames.gdx/gdx-bullet "1.3.0"] [org.clojure/clojure "1.6.0"] [play-clj "0.3.9"]] :source-paths ["src/clojure" "../desktop/src-common"]