Skip to content

Commit

Permalink
Prepare for v4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bladecoder committed Mar 16, 2020
1 parent 3e7ec42 commit 6cbf57a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [4.0.0]
- Fix error when android keystore path had spaces.
- Added scene counter in the editor ui.
- Updated ios minosversion to 8.
- Better calc of speed when walking and fake depth is used.

## [3.2.5]
- Some validations adding/editing animations and verbs to avoid errors.
- Fixed dealing with OpenAL bug in credits screen.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@
/**
* Command line tool to generate libgdx projects
*
* @author badlogic
* @author Tomski
* @author rgarcia
*/
public class BladeEngineSetup {
Expand Down Expand Up @@ -85,7 +83,7 @@ public static boolean isSdkUpToDate(String sdkLocation) {
}

int newestLocalApi = getLatestApi(apis);
if (newestLocalApi > Integer.valueOf(Versions.getAndroidAPILevel())) {
if (newestLocalApi > Integer.parseInt(Versions.getAndroidAPILevel())) {

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

boolean isTemp = file instanceof TemporaryProjectFile ? true : false;
boolean isTemp = file instanceof TemporaryProjectFile;

if (file.isTemplate) {
String txt;
Expand Down
2 changes: 1 addition & 1 deletion adventure-editor/src/main/resources/versions.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ buildToolsVersion=29.0.2
libgdxVersion=1.9.10
roboVMGradlePluginVersion=2.3.8
roboVMVersion=2.3.8
version=3.2.6-SNAPSHOT
version=4.0.0
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=3.2.6-SNAPSHOT
version=4.0.0
libgdxVersion=1.9.10
roboVMVersion=2.3.8
roboVMGradlePluginVersion=2.3.8
Expand Down

0 comments on commit 6cbf57a

Please sign in to comment.