[haxe] set default version to 4.0.5

This commit is contained in:
2020-02-18 23:28:22 +03:00
parent b68ae2f3dc
commit 141470c519
4 changed files with 27 additions and 3 deletions

View File

@@ -1,3 +1,20 @@
0.1.5
-----
* Haxe: default version 4.0.5
0.1.4
-----
* Config: android extensions params
0.1.3
-----
* Android: installed packages list
* Haxe: buildDir static property
0.1.2
-----
* Haxe: move build dir from tmp to project dir
0.1.1 0.1.1
----- -----
* Android sign apk (config.key.store and config.key.pass params) * Android sign apk (config.key.store and config.key.pass params)

View File

@@ -211,6 +211,12 @@ Haxe.VERSION_3_4_2 = '3.4.2';
Haxe.VERSION_3_4_3 = '3.4.3'; Haxe.VERSION_3_4_3 = '3.4.3';
Haxe.VERSION_3_4_7 = '3.4.7'; Haxe.VERSION_3_4_7 = '3.4.7';
Haxe.VERSION_3 = Haxe.VERSION_3_4_7; Haxe.VERSION_3 = Haxe.VERSION_3_4_7;
Haxe.VERSION = Haxe.VERSION_3; Haxe.VERSION_4_0_0 = '4.0.0';
Haxe.VERSION_4_0_1 = '4.0.1';
Haxe.VERSION_4_0_2 = '4.0.2';
Haxe.VERSION_4_0_3 = '4.0.3';
Haxe.VERSION_4_0_5 = '4.0.5';
Haxe.VERSION_4 = Haxe.VERSION_4_0_5;
Haxe.VERSION = Haxe.VERSION_4;
module.exports = Haxe; module.exports = Haxe;

View File

@@ -100,10 +100,11 @@ class HaxeBuilder extends Builder {
.then(() => this.android.prepare()) .then(() => this.android.prepare())
.then(() => this.android.activate()) .then(() => this.android.activate())
.then(() => this.android.sdkmanager([ .then(() => this.android.sdkmanager([
// ToDo: android sdk dependencies config?
'tools', 'tools',
'platform-tools', 'platform-tools',
'build-tools;27.0.3', 'build-tools;27.0.3',
'platforms;android-28', 'platforms;android-28', //ToDo: lime version 7.6.0 -> 28; 7.0.0 -> 26
//'ndk-bundle', //'ndk-bundle',
'lldb;3.1', 'lldb;3.1',
'cmake;3.6.4111459', 'cmake;3.6.4111459',

View File

@@ -1,6 +1,6 @@
{ {
"name": "gulp-haxetool", "name": "gulp-haxetool",
"version": "0.1.4", "version": "0.1.5",
"description": "HaXe Tool for Gulp", "description": "HaXe Tool for Gulp",
"main": "index.js", "main": "index.js",
"dependencies": { "dependencies": {