Skip to content

Commit 997d3de

Browse files
committed
prepare for v0.9.17
1 parent cfee1db commit 997d3de

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [0.9.17]
6+
7+
- Updated libgdx library to v1.9.4.
8+
- Added null sanity check for actor parameter in SayAction.
9+
510
## [0.9.16]
611

712
- NEW FEAUTRE: The text manager can now show a character image/icon in texts.

adventure-editor/src/main/java/com/bladecoder/engineeditor/setup/BuildScriptHelper.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@ public static void addBuildScript(List<ProjectType> projects, BufferedWriter wr)
1515
// repos
1616
write(wr, "repositories {");
1717

18-
// TODO: Delete when release v2.2 of roboVM plugin
19-
write(wr, "maven { url \"https://oss.sonatype.org/content/repositories/snapshots/\" }");
20-
21-
2218
write(wr, DependencyBank.mavenCentral);
2319
if (projects.contains(ProjectType.HTML)) {
2420
write(wr, DependencyBank.jCenter);
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#Autogenerated by build.gradle
2-
#Sat Aug 13 22:21:03 CEST 2016
3-
roboVMVersion=2.1.0
2+
#Mon Aug 22 22:17:26 CEST 2016
3+
roboVMVersion=2.2.0
44
gwtVersion=2.6.0
5-
libgdxVersion=1.9.3
5+
libgdxVersion=1.9.4
66
androidAPILevel=20
77
buildToolsVersion=23.0.1
8-
roboVMGradlePluginVersion=2.2.0-SNAPSHOT
9-
version=0.9.16
8+
roboVMGradlePluginVersion=2.2.0
9+
version=0.9.17
1010
gwtGradlePluginVersion=0.6
1111
androidGradlePluginVersion=1.5.0

build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ allprojects {
44

55
repositories {
66
mavenCentral()
7-
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
87
maven { url "https://oss.sonatype.org/content/repositories/releases/" }
98
}
109
}

gradle.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
version=0.9.16
2-
libgdxVersion=1.9.3
3-
roboVMVersion=2.1.0
4-
roboVMGradlePluginVersion=2.2.0-SNAPSHOT
1+
version=0.9.17
2+
libgdxVersion=1.9.4
3+
roboVMVersion=2.2.0
4+
roboVMGradlePluginVersion=2.2.0
55
buildToolsVersion=23.0.1
66
androidAPILevel=20
77
androidGradlePluginVersion=1.5.0

0 commit comments

Comments
 (0)