set version to 0.0.12

This commit is contained in:
2018-05-14 17:17:18 +03:00
parent e360726786
commit 820b639427
6 changed files with 23 additions and 12 deletions

View File

@@ -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:
```
<config.name>:<platform>:build
<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```
@@ -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`