Skip to content

Commit 88e2646

Browse files
committed
Prepare for v0.9.15
1 parent d124c77 commit 88e2646

File tree

5 files changed

+20
-6
lines changed

5 files changed

+20
-6
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
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.15]
6+
7+
- Ask for updating the engine version of the game if the editor detects that is old.
8+
- Custom actions now are autodetected by the editor and handled as engine actions.
9+
- Save view menu state.
10+
- Show project path in window title.
11+
- Select 'init' scene when loading a project.
12+
- Ask for saving current project when loading or creating new project.
13+
- Added preload parameter to sounds to avoid loading all scene sounds in init.
14+
- FIX: Music was not restored from savedgames.
15+
- FIX: Error in REVERSE_REPEAT animations.
16+
517
## [0.9.14]
618

719
- Multiinventory support.

adventure-editor/src/main/java/com/bladecoder/engineeditor/Editor.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ protected void result(Object object) {
118118
if (((Boolean) object).booleanValue()) {
119119
try {
120120
Ctx.project.updateEngineVersion();
121+
Message.showMsg(getStage(), "Project successfully updated.", 3);
121122
} catch (IOException e1) {
122123
String msg = "Something went wrong while updating the engine.\n\n"
123124
+ e1.getClass().getSimpleName() + " - " + e1.getMessage();
@@ -127,7 +128,7 @@ protected void result(Object object) {
127128
}
128129
}
129130
}
130-
}.text("Your game uses an old Engine version. Do you want to update the engine?")
131+
}.text("Your game uses an old (" + Ctx.project.getProjectBladeEngineVersion() + ") Engine version. Do you want to update the engine?")
131132
.button("Yes", true).button("No", false).key(Keys.ENTER, true).key(Keys.ESCAPE, false)
132133
.show(stage);
133134
}

adventure-editor/src/main/java/com/bladecoder/engineeditor/ui/ProjectToolbar.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,7 @@ protected void result(Object object) {
239239
if (((Boolean) object).booleanValue()) {
240240
try {
241241
Ctx.project.updateEngineVersion();
242+
Message.showMsg(getStage(), "Project successfully updated.", 3);
242243
} catch (IOException e1) {
243244
String msg = "Something went wrong while updating the engine.\n\n"
244245
+ e1.getClass().getSimpleName() + " - " + e1.getMessage();
@@ -248,9 +249,9 @@ protected void result(Object object) {
248249
}
249250
}
250251
}
251-
}.text("Your game uses an old Engine version. Do you want to update the engine?")
252-
.button("Yes", true).button("No", false).key(Keys.ENTER, true)
253-
.key(Keys.ESCAPE, false).show(getStage());
252+
}.text("Your game uses an old (" + Ctx.project.getProjectBladeEngineVersion() + ") Engine version. Do you want to update the engine?")
253+
.button("Yes", true).button("No", false).key(Keys.ENTER, true).key(Keys.ESCAPE, false)
254+
.show(getStage());
254255
}
255256

256257
} catch (Exception ex) {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#Autogenerated by build.gradle
2-
#Tue Jun 28 19:31:04 CEST 2016
2+
#Tue Jun 28 19:58:43 CEST 2016
33
roboVMVersion=2.1.0
44
gwtVersion=2.6.0
55
libgdxVersion=1.9.3

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version=0.9.15-SNAPSHOT
1+
version=0.9.15
22
libgdxVersion=1.9.3
33
roboVMVersion=2.1.0
44
roboVMGradlePluginVersion=2.1.0

0 commit comments

Comments
 (0)