Skip to content

Commit 6cbf57a

Browse files
committed
Prepare for v4.0.0
1 parent 3e7ec42 commit 6cbf57a

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
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+
## [4.0.0]
6+
- Fix error when android keystore path had spaces.
7+
- Added scene counter in the editor ui.
8+
- Updated ios minosversion to 8.
9+
- Better calc of speed when walking and fake depth is used.
10+
511
## [3.2.5]
612
- Some validations adding/editing animations and verbs to avoid errors.
713
- Fixed dealing with OpenAL bug in credits screen.

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

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@
3737
/**
3838
* Command line tool to generate libgdx projects
3939
*
40-
* @author badlogic
41-
* @author Tomski
4240
* @author rgarcia
4341
*/
4442
public class BladeEngineSetup {
@@ -85,7 +83,7 @@ public static boolean isSdkUpToDate(String sdkLocation) {
8583
}
8684

8785
int newestLocalApi = getLatestApi(apis);
88-
if (newestLocalApi > Integer.valueOf(Versions.getAndroidAPILevel())) {
86+
if (newestLocalApi > Integer.parseInt(Versions.getAndroidAPILevel())) {
8987

9088
// ALWAYS USE THE CURRENT API
9189
Versions.setAndroidAPILevel(Integer.toString(newestLocalApi));
@@ -536,7 +534,7 @@ private void copyFile(ProjectFile file, File out, Map<String, String> values) th
536534
throw new RuntimeException("Couldn't create dir '" + outFile.getAbsolutePath() + "'");
537535
}
538536

539-
boolean isTemp = file instanceof TemporaryProjectFile ? true : false;
537+
boolean isTemp = file instanceof TemporaryProjectFile;
540538

541539
if (file.isTemplate) {
542540
String txt;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ buildToolsVersion=29.0.2
55
libgdxVersion=1.9.10
66
roboVMGradlePluginVersion=2.3.8
77
roboVMVersion=2.3.8
8-
version=3.2.6-SNAPSHOT
8+
version=4.0.0

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version=3.2.6-SNAPSHOT
1+
version=4.0.0
22
libgdxVersion=1.9.10
33
roboVMVersion=2.3.8
44
roboVMGradlePluginVersion=2.3.8

0 commit comments

Comments
 (0)