set version to 0.0.12
This commit is contained in:
@@ -1,3 +1,9 @@
|
|||||||
|
0.0.12
|
||||||
|
------
|
||||||
|
|
||||||
|
* Openfl android platform support
|
||||||
|
* Android sdk module
|
||||||
|
|
||||||
0.0.11
|
0.0.11
|
||||||
------
|
------
|
||||||
|
|
||||||
|
|||||||
20
README.md
20
README.md
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
### Dignity
|
### 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.
|
* Universal project config for simple HaXe build and OpenFL build.
|
||||||
* Branch project config for many build presets (many OpenFL apps in one project).
|
* Branch project config for many build presets (many OpenFL apps in one project).
|
||||||
* Packaging linux output in DEB.
|
* Packaging linux output in DEB.
|
||||||
@@ -16,6 +16,7 @@
|
|||||||
* HTML5 run output not caught.
|
* HTML5 run output not caught.
|
||||||
* Adobe AIR Build System in progress.
|
* Adobe AIR Build System in progress.
|
||||||
* Packaging Windows application in progress (with [Inno Setup](http://www.jrsoftware.org/isinfo.php))
|
* 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
|
## API
|
||||||
@@ -56,7 +57,10 @@ create gulp tasks in module:
|
|||||||
```
|
```
|
||||||
<config.name>:<platform>:build
|
<config.name>:<platform>:build
|
||||||
<config.name>:<platform>:run
|
<config.name>:<platform>:run
|
||||||
<config.name>:<platform>:pack (optionaly if supported)
|
<config.name>:<platform>:test
|
||||||
|
|
||||||
|
<config.name>:flash:html
|
||||||
|
<config.name>:linux:deb
|
||||||
```
|
```
|
||||||
|
|
||||||
eg: ```gulp app:flash:build```
|
eg: ```gulp app:flash:build```
|
||||||
@@ -71,7 +75,7 @@ eg: ```gulp app:flash:build```
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"gulp": "^4.0.0",
|
"gulp": "^4.0.0",
|
||||||
"gulp-clean": "^0.4.0",
|
"gulp-clean": "^0.4.0",
|
||||||
"gulp-haxetool": "^0.0.11"
|
"gulp-haxetool": "^0.0.12"
|
||||||
},
|
},
|
||||||
"haxeDependencies": {
|
"haxeDependencies": {
|
||||||
"lime": "6.0.1",
|
"lime": "6.0.1",
|
||||||
@@ -150,8 +154,8 @@ module.exports.default = gulp.series(
|
|||||||
module.exports['app:flash:build'],
|
module.exports['app:flash:build'],
|
||||||
module.exports['app:html5:build'],
|
module.exports['app:html5:build'],
|
||||||
module.exports['app:linux:build'],
|
module.exports['app:linux:build'],
|
||||||
module.exports['app:flash:pack'],
|
module.exports['app:flash:html'],
|
||||||
module.exports['app:linux:pack'],
|
module.exports['app:linux:deb'],
|
||||||
);
|
);
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -159,8 +163,8 @@ Build for all platforms: `gulp default`
|
|||||||
|
|
||||||
Build app for specific platform: `gulp app:flash:build`
|
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`
|
||||||
|
|||||||
@@ -47,6 +47,6 @@ module.exports.default = gulp.series(
|
|||||||
module.exports['app:flash:build'],
|
module.exports['app:flash:build'],
|
||||||
module.exports['app:html5:build'],
|
module.exports['app:html5:build'],
|
||||||
module.exports['app:linux:build'],
|
module.exports['app:linux:build'],
|
||||||
module.exports['app:flash:pack'],
|
module.exports['app:flash:html'],
|
||||||
module.exports['app:linux:pack'],
|
module.exports['app:linux:deb'],
|
||||||
);
|
);
|
||||||
@@ -4,7 +4,7 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"gulp": "^4.0.0",
|
"gulp": "^4.0.0",
|
||||||
"gulp-clean": "^0.4.0",
|
"gulp-clean": "^0.4.0",
|
||||||
"gulp-haxetool": "^0.0.11"
|
"gulp-haxetool": "^0.0.12"
|
||||||
},
|
},
|
||||||
"haxeDependencies": {
|
"haxeDependencies": {
|
||||||
"lime": "6.0.1",
|
"lime": "6.0.1",
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ class TailVinyl extends Vinyl {
|
|||||||
|
|
||||||
dispose() {
|
dispose() {
|
||||||
this.tail.unwatch();
|
this.tail.unwatch();
|
||||||
|
this.contents.destroy();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "gulp-haxetool",
|
"name": "gulp-haxetool",
|
||||||
"version": "0.0.11",
|
"version": "0.0.12",
|
||||||
"description": "HaXe Tool for Gulp",
|
"description": "HaXe Tool for Gulp",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
Reference in New Issue
Block a user