Skip to content

Commit 7054208

Browse files
committed
prepare for next version
1 parent 81ae4c9 commit 7054208

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

CHANGELOG

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
[0.6.7]
2+
- Load/Save game screens
3+
- libgdx updated to v1.5.3.
4+
- fixed fillanimations combo bug. set selection to the first element
5+
- Fix for windows gradle exec
6+
17
[0.6.6]
28
- creditscreen: set scroll speed resolution independent
39
- creditscreen: added background style. Style now obtained from skin

adventure-composer/src/main/java/com/bladecoder/engineeditor/model/Project.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -331,6 +331,9 @@ public List<String> getResolutions() {
331331
ArrayList<String> l = new ArrayList<String>();
332332

333333
File[] list = atlasesPath.listFiles();
334+
335+
if(list == null)
336+
return l;
334337

335338
for (int i = 0; i < list.length; i++) {
336339
String name = list[i].getName();

adventure-composer/src/main/resources/versions.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version=0.6.6
1+
version=0.6.7
22
libgdxVersion=1.5.3
33
roboVMVersion=1.0.0-beta-03
44
roboVMGradlePluginVersion=1.0.0-beta-03

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ allprojects {
22
apply plugin: "eclipse"
33
apply plugin: "idea"
44

5-
version = '0.6.6'
5+
version = '0.6.7'
66

77
ext {
88
gdxVersion = '1.5.3'

0 commit comments

Comments
 (0)