This repository has been archived by the owner on May 13, 2021. It is now read-only.
v0.3.0
Breaking changes
-
The
windows81
platform's parameter value has been renamed towindows
. This parameter value generates all Windows apps, including the Cordova apps and the Windows 10 hosted web app. To generate the Windows 10 hosted web app only, just specifywindows10
. -
The
createApps
API method now expects anoptions
parameter to specify the different properties that customize the generated applications. Example of usage:var projectBuilder = require('projectBuilder'); var options = { "crosswalk": false, "build": true }; projectBuilder.createApps(w3cManifestInfo, rootDir, platforms, options, callback);
Enhancements
- Added support for Crosswalk when building Android apps (issue #29)
- Added "Known issues" section to readme document (issue #78)
Bug fixes
- Fixed issue when invoking Cordova CLI and the tools are installed in a path with spaces (issue #57)
- Fixed issue that makes Win 10 hosted web app to fail when there are spaces in the short_name manifest memeber (issue #76)
- Fixed issue with wildcard characters when generating application content uri rules in Win 10 hosted web apps (issue #80)