-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ability hotbar fixes & adjustments, keys can now be rebound or unboun…
…d correctly via KeyDialog * Store game version in manifest
- Loading branch information
1 parent
baa3390
commit 83dd4e0
Showing
22 changed files
with
349 additions
and
215 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,57 @@ | ||
allprojects { | ||
apply plugin: "eclipse" | ||
apply plugin: "eclipse" | ||
|
||
version = '1.0' | ||
ext { | ||
appName = "MadSand" | ||
gdxVersion = '1.9.13' | ||
roboVMVersion = '2.3.12' | ||
box2DLightsVersion = '1.5' | ||
ashleyVersion = '1.7.3' | ||
aiVersion = '1.6.0' | ||
} | ||
version = 'Alpha v0.49.5-rc1' | ||
|
||
ext { | ||
appName = "MadSand" | ||
gdxVersion = '1.9.13' | ||
roboVMVersion = '2.3.12' | ||
box2DLightsVersion = '1.5' | ||
ashleyVersion = '1.7.3' | ||
aiVersion = '1.6.0' | ||
} | ||
|
||
repositories { | ||
mavenLocal() | ||
mavenCentral() | ||
jcenter() | ||
google() | ||
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } | ||
maven { url "https://oss.sonatype.org/content/repositories/releases/" } | ||
} | ||
repositories { | ||
mavenLocal() | ||
mavenCentral() | ||
jcenter() | ||
google() | ||
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } | ||
maven { url "https://oss.sonatype.org/content/repositories/releases/" } | ||
} | ||
} | ||
|
||
project(":desktop") { | ||
apply plugin: "java-library" | ||
apply plugin: "java-library" | ||
|
||
dependencies { | ||
implementation project(":core") | ||
api "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion" | ||
api "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop" | ||
api "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-desktop" | ||
} | ||
dependencies { | ||
implementation project(":core") | ||
api "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion" | ||
api "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop" | ||
api "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-desktop" | ||
} | ||
} | ||
|
||
project(":core") { | ||
apply plugin: "java-library" | ||
apply plugin: "java-library" | ||
|
||
dependencies { | ||
api "com.badlogicgames.gdx:gdx:$gdxVersion" | ||
api "com.badlogicgames.gdx:gdx-freetype:$gdxVersion" | ||
compile group: 'com.badlogicgames.gdx', name: 'gdx-ai', version: '1.6.0' | ||
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.9' | ||
compile group: 'org.apache.commons', name: 'commons-text', version: '1.9' | ||
dependencies { | ||
api "com.badlogicgames.gdx:gdx:$gdxVersion" | ||
api "com.badlogicgames.gdx:gdx-freetype:$gdxVersion" | ||
compile group: 'com.badlogicgames.gdx', name: 'gdx-ai', version: '1.6.0' | ||
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.9' | ||
compile group: 'org.apache.commons', name: 'commons-text', version: '1.9' | ||
implementation group: 'org.apache.commons', name: 'commons-math3', version: '3.6.1' | ||
compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.12.1' | ||
compile group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.12.1' | ||
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.12.1' | ||
implementation 'me.xdrop:fuzzywuzzy:1.3.1' | ||
compile files('../lib/luaj-jse-3.0.2.jar') | ||
compile files('../lib/jrand-0.2.7-alpha.jar') | ||
} | ||
compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.12.1' | ||
compile group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.12.1' | ||
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.12.1' | ||
implementation 'me.xdrop:fuzzywuzzy:1.3.1' | ||
compile files('../lib/luaj-jse-3.0.2.jar') | ||
compile files('../lib/jrand-0.2.7-alpha.jar') | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.