From 820b639427c7a1e9abc98ce89ce3a851cd181ebf Mon Sep 17 00:00:00 2001 From: shmyga Date: Mon, 14 May 2018 17:17:18 +0300 Subject: [PATCH] set version to 0.0.12 --- CHANGELOG.md | 6 ++++++ README.md | 20 ++++++++++++-------- example/gulpfile.js | 4 ++-- example/package.json | 2 +- haxetool/tail.js | 1 + package.json | 2 +- 6 files changed, 23 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c8d60b..3d637b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +0.0.12 +------ + +* Openfl android platform support +* Android sdk module + 0.0.11 ------ diff --git a/README.md b/README.md index d2f8db4..f242aea 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ ### Dignity -* Automatically download HaXe SDK, Neko, FlashPlayer, +(Adobe AIR SDK). +* Automatically download HaXe SDK, Neko, FlashPlayer, Android SDK, +(Adobe AIR SDK). * Universal project config for simple HaXe build and OpenFL build. * Branch project config for many build presets (many OpenFL apps in one project). * Packaging linux output in DEB. @@ -16,6 +16,7 @@ * HTML5 run output not caught. * Adobe AIR Build System in progress. * Packaging Windows application in progress (with [Inno Setup](http://www.jrsoftware.org/isinfo.php)) +* OpenFL android build failed due to problems with Android NDK ## API @@ -56,7 +57,10 @@ create gulp tasks in module: ``` ::build ::run -::pack (optionaly if supported) +::test + +:flash:html +:linux:deb ``` eg: ```gulp app:flash:build``` @@ -71,7 +75,7 @@ eg: ```gulp app:flash:build``` "devDependencies": { "gulp": "^4.0.0", "gulp-clean": "^0.4.0", - "gulp-haxetool": "^0.0.11" + "gulp-haxetool": "^0.0.12" }, "haxeDependencies": { "lime": "6.0.1", @@ -150,8 +154,8 @@ module.exports.default = gulp.series( module.exports['app:flash:build'], module.exports['app:html5:build'], module.exports['app:linux:build'], - module.exports['app:flash:pack'], - module.exports['app:linux:pack'], + module.exports['app:flash:html'], + module.exports['app:linux:deb'], ); ``` @@ -159,8 +163,8 @@ Build for all platforms: `gulp default` Build app for specific platform: `gulp app:flash:build` -Run flash app in flashplayer: `gulp app:flash:run` +Build and run flash app in flashplayer: `gulp app:flash:test` -Run html5 app in brpwser: `gulp app:html5:tun` +Build and run html5 app in brpwser: `gulp app:html5:test` -Run linux app native: `gulp app:linux:run` +Build and run linux app native: `gulp app:linux:test` diff --git a/example/gulpfile.js b/example/gulpfile.js index 91fb93c..f8b87db 100644 --- a/example/gulpfile.js +++ b/example/gulpfile.js @@ -47,6 +47,6 @@ module.exports.default = gulp.series( module.exports['app:flash:build'], module.exports['app:html5:build'], module.exports['app:linux:build'], - module.exports['app:flash:pack'], - module.exports['app:linux:pack'], + module.exports['app:flash:html'], + module.exports['app:linux:deb'], ); \ No newline at end of file diff --git a/example/package.json b/example/package.json index 4f2ee31..a382d0b 100644 --- a/example/package.json +++ b/example/package.json @@ -4,7 +4,7 @@ "devDependencies": { "gulp": "^4.0.0", "gulp-clean": "^0.4.0", - "gulp-haxetool": "^0.0.11" + "gulp-haxetool": "^0.0.12" }, "haxeDependencies": { "lime": "6.0.1", diff --git a/haxetool/tail.js b/haxetool/tail.js index eee9d07..75f001e 100644 --- a/haxetool/tail.js +++ b/haxetool/tail.js @@ -18,6 +18,7 @@ class TailVinyl extends Vinyl { dispose() { this.tail.unwatch(); + this.contents.destroy(); } } diff --git a/package.json b/package.json index 945c860..b4ac23d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gulp-haxetool", - "version": "0.0.11", + "version": "0.0.12", "description": "HaXe Tool for Gulp", "main": "index.js", "dependencies": {