PWABuilder CLI Versions Save

Node.js tool for App Generation

v0.4.2

8 years ago

update construct to not allow band line endings in mac. fix current issue on mac when installed via npm

v0.4.1

8 years ago

contains features: Support Density strings along with numbers #144 Windows 10 apps now can point to localhost for testing and auto launch #143 Windows 10 offline capture page #140

Bug Fixes: Allow start_url to be a subdomain of site #88 Do not require a short name #145 "/" as start_url no longer shows error #146 Android build no longer fails for sites with .in in domain #149 fixed issue with theme color in windows 10 #157

v0.4.0

8 years ago

Enhancements

  • Added feature to generate APPX packages for submission to the Windows Store (issue #132)
  • Added option to include the Web App Toolkit plugin into the Cordova platforms (issue #138)
  • Improved tracing info to help troubleshooting issues with the domain whitelist (issue #103)
  • Added support for the splash_screens W3C manifest member (issue #45)

Bug fixes

  • Removed the windows platform from the default platforms list when running the tool from OS X and Linux (issue #115)
  • Fixed issue that makes the tool to break when there are numbers in the URL of the target domain (issue #109)
  • Fixed wrong image size when generating Windows 10 hosted web apps (issue #135)

v0.3.3

8 years ago

Enhancements

  • Added support for API access in Windows 10 (issue #124)

v0.3.2

8 years ago

Enhancements

  • Added version number of ManifoldJS to the generated packages (issue #96)
  • Changed website-url parameter to be optional when the --manifest parameter is provided (issue #30)
  • Replaced optimist CLI parser (deprecated) with commander (issue #70)

Bug fixes

  • Fixed documentation error in Android's next steps (issue #98)
  • Fixed issue to prevent app crashes related to old versions of node installed (issue #97)
  • Updated sanitization logic for short_name member (issue #76)
  • Updated "Known Issues" section of the Readme document with instructions to work around an issue with iOS apps generated in a Windows machine (issue #100)
  • Fixed issue that generates invalid ACURs in Windows 10 when the scope contains wildcards
  • Removed "trace" logging level from the --loglevel parameter as it is not supported (issue #108)

v0.3.1

8 years ago

Enhancements

  • Implemented a "check for updates" feature in the CLI that alerts users of new releases of ManifoldJS (issue #91)
  • Provided more details when an invalid manifest format is detected (issue #43 )
  • Updated Windows 10 appx manifest to target platform version 10.0.10069.0 (issue #95)

Bug fixes

  • Workaround for a breaking change in Cordova 5.1.1 caused by a new release of the Cordova's whitelist plugin v1.1.0 (issue #86)
  • Inconsistent behavior between API and CLI when processing the start_url (issue #89)
  • Infinite loop when non-existent drive specified in directory parameter (issue #72)
  • Failure if an existing manifest doesn't contain a start_url member (issue #71)

v0.3.0

8 years ago

Breaking changes

  • The windows81 platform's parameter value has been renamed to windows. 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 specify windows10.

  • The createApps API method now expects an options 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)

v0.2.0

8 years ago

Breaking changes

  • Renamed mjs_urlAccess manifest member to mjs_access_whitelist (issue #31)

Enhancements

  • Added section in readme doc to describe the API methods provided by ManifoldJS (issue #74)
  • Updated tool to support Cordova v5.0.0 (issue #73)

Bug fixes

  • Grunt task fails with a fatal error - Mocha exploded! (issue #69)
  • Images are unnecessarily downloaded multiple times (issue #66)

v0.1.5

8 years ago

Bug fixes

  • Fixed broken unit tests in manifest transformation logic for Windows 10.
  • Changed reference to ManifoldCordova plugin to a new version that fixes a regression with default images in the windows platform. Also, ManifoldJS is now referencing a version range of the ManifoldCordova plugin (=>0..0.5 <0.1.0) so subsequent patches for ManifoldCordova do not require to also publish a new version of ManifoldJS.

v0.1.4

8 years ago

Enhancements

  • Enhanced diagnostic information in createApp() (issue #56)
  • Added default images with "manifoldjs" logo (issue #61)

Bug fixes

  • Fixed crash with invalid start_url (issue #58)
  • Reviewed how manifoldjs processes the scope member (issue #60)
  • Updated sdk number for win10 (issue #64)
  • Updated "Spartan browser" to "Microsoft Edge" in win10 docs (issue #65)