You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2015/09/08 20:56:13 UTC

svn commit: r1701854 [5/15] - in /cordova/site: public/ public/announcements/2013/11/15/ public/announcements/2013/11/22/ public/announcements/2013/12/16/ public/announcements/2014/02/20/ public/announcements/2014/05/23/ public/announcements/2014/08/04...

Modified: cordova/site/public/announcements/2015/04/21/plugins-release-and-move-to-npm.html
URL: http://svn.apache.org/viewvc/cordova/site/public/announcements/2015/04/21/plugins-release-and-move-to-npm.html?rev=1701854&r1=1701853&r2=1701854&view=diff
==============================================================================
--- cordova/site/public/announcements/2015/04/21/plugins-release-and-move-to-npm.html (original)
+++ cordova/site/public/announcements/2015/04/21/plugins-release-and-move-to-npm.html Tue Sep  8 18:56:12 2015
@@ -57,446 +57,687 @@
     <div class="meta">Posted by: <a href="https://twitter.com/stevesgill">Steve Gill</a></div>
     <p class="meta">21 Apr 2015</p>
     <div class="post">
-    <p>The <strong>Apache Cordova</strong> team is happy to announce a new plugins release that coincides with us moving our core plugins to <strong><a href="https://www.npmjs.org/">npm</a></strong>!</p>
+    
+<p>The <strong>Apache Cordova</strong> team is happy to announce a new plugins release that coincides with us moving our core plugins to <strong><a href="https://www.npmjs.org/">npm</a></strong>!</p>
 
 <ul>
-  <li>We are also encouraging third party plugin developers to start publishing their plugins to npm!</li>
-  <li>To start using plugins from <strong>npm</strong>, developers will have to update their <strong>Cordova CLI</strong> to version <strong>5.0.0</strong> or higher. Read about <strong>Cordova CLI 5.0.0</strong> in its <a href="http://cordova.apache.org/news/2015/04/21/tools-release.html">release blog post</a>.</li>
+<li>We are also encouraging third party plugin developers to start publishing their plugins to npm!</li>
+
+<li>To start using plugins from <strong>npm</strong>, developers will have to update their <strong>Cordova CLI</strong> to version <strong>5.0.0</strong> or higher. Read about <strong>Cordova CLI 5.0.0</strong> in its <a href="http://cordova.apache.org/news/2015/04/21/tools-release.html">release blog post</a>.</li>
 </ul>
 
 <p>With the move over to <strong>npm</strong>, we have decided to rename our core plugins for improved readability and to better fit within the <strong>npm</strong> ecosystem.</p>
 
 <ul>
-  <li>All of our core plugins have changed their IDs from <code>org.apache.cordova.*</code> to <code>cordova-plugin-*</code>.</li>
-  <li>Developers can now install a plugin with the command <code>cordova plugin add cordova-plugin-device</code>.
-Using the new ID will fetch the plugin directly from <strong>npm</strong>.</li>
+<li>All of our core plugins have changed their IDs from <code>org.apache.cordova.*</code> to <code>cordova-plugin-*</code>.</li>
+
+<li>Developers can now install a plugin with the command <code>cordova plugin add cordova-plugin-device</code>. Using the new ID will fetch the plugin directly from <strong>npm</strong>.</li>
 </ul>
 
-<p>Our current <strong>Cordova plugins registry</strong> (<a href="http://plugins.cordova.io">CPR</a>) will continue to be operational for at least 6 months (<code>October 15th, 2015</code>) as we help plugin developers transition over to <strong>npm</strong>.
-This will also allow current <strong>Cordova</strong> developers to upgrade their <code>CLI</code> to version <strong>5.0.0</strong> or higher.</p>
+<p>Our current <strong>Cordova plugins registry</strong> (<a href="http://plugins.cordova.io">CPR</a>) will continue to be operational for at least 6 months (<code>October 15th, 2015</code>) as we help plugin developers transition over to <strong>npm</strong>. This will also allow current <strong>Cordova</strong> developers to upgrade their <code>CLI</code> to version <strong>5.0.0</strong> or higher.</p>
 
 <ul>
-  <li>We will be switching <a href="http://plugins.cordova.io">CPR</a> to read-only on <code>July 15th, 2015</code>.</li>
+<li>We will be switching <a href="http://plugins.cordova.io">CPR</a> to read-only on <code>July 15th, 2015</code>.</li>
 </ul>
 
-<p>To find plugins on <strong>npm</strong>, search for <a href="https://www.npmjs.com/search?q=ecosystem%3Acordova">ecosystem:cordova</a>.
-We are working with <strong>npm</strong> to improve discoverability and will have more to announce later this year.
-We encourage all third party plugin developers to add <code>ecosystem:cordova</code> as a keyword in their plugin’s <code>package.json</code>.</p>
+<p>To find plugins on <strong>npm</strong>, search for <a href="https://www.npmjs.com/search?q=ecosystem%3Acordova">ecosystem:cordova</a>. We are working with <strong>npm</strong> to improve discoverability and will have more to announce later this year. We encourage all third party plugin developers to add <code>ecosystem:cordova</code> as a keyword in their plugin’s <code>package.json</code>.</p>
+
+<h2 id="plugin_authors_steps_to_move_your_plugin_to_npm">Plugin Authors: Steps to move your plugin to <strong>npm</strong></h2>
 
-<h2 id="plugin-authors-steps-to-move-your-plugin-to-npm">Plugin Authors: Steps to move your plugin to <strong>npm</strong></h2>
 <ol>
-  <li><strong>Optional</strong> Decide if you want to change your plugin’s <code>id</code>. If you decide to change it,
-    <ol>
-      <li>Update the <code>id</code> in <code>plugin.xml</code> and update your readme with the new <code>id</code>.</li>
-      <li>Send a pull request adding your new id and old id to <a href="https://github.com/stevengill/cordova-registry-mapper">Cordova Registry Mapper</a>.</li>
-      <li>We integrate that module into the <strong>Cordova CLI</strong> to warn users to use the new <code>id</code> when adding plugins to their projects.</li>
-    </ol>
-  </li>
-  <li>Add a <code>package.json</code> to your plugins,
-    <ul>
-      <li><strong>Note</strong>: To keep things simple, please make sure your <code>id</code> in <code>plugin.xml</code> is the same as your <code>package-name</code> in <code>package.json</code>.</li>
-      <li>Use <code>plugman createpackagejson [PLUGIN DIRECTORY]</code> to create <code>package.json</code>.
-        <ul>
-          <li>This will create defaults based on existing values in your <code>plugin.xml</code>.</li>
-          <li>It will also automatically add the keyword <code>ecosystem:cordova</code> to your newly generated <code>package.json</code> file.</li>
-          <li>In addition, a <strong>cordova</strong> key will be added to your <code>package.json</code> which we plan to use in future updates of the tooling.</li>
-        </ul>
-      </li>
-      <li>View the <code>package.json</code> of <a href="https://github.com/apache/cordova-plugin-device/blob/master/package.json">cordova-plugin-device</a> to see an example of what your <code>package.json</code> should look like after running <code>plugman createpackagejson [PLUGIN DIRECTORY]</code> command.</li>
-      <li>Plugins still require a <code>plugin.xml</code> to be installed into <strong>Cordova</strong> projects.</li>
-    </ul>
-  </li>
-  <li>Publish your plugin to <strong>npm</strong> using the <code>npm publish [PLUGIN DIRECTORY]</code>.</li>
+<li>
+<p><strong>Optional</strong> Decide if you want to change your plugin’s <code>id</code>. If you decide to change it,</p>
+
+<ol>
+<li>Update the <code>id</code> in <code>plugin.xml</code> and update your readme with the new <code>id</code>.</li>
+
+<li>Send a pull request adding your new id and old id to <a href="https://github.com/stevengill/cordova-registry-mapper">Cordova Registry Mapper</a>.</li>
+
+<li>We integrate that module into the <strong>Cordova CLI</strong> to warn users to use the new <code>id</code> when adding plugins to their projects.</li>
 </ol>
+</li>
 
-<h2 id="new-whitelist-plugins">New Whitelist Plugins</h2>
+<li>
+<p>Add a <code>package.json</code> to your plugins,</p>
+
+<ul>
+<li><strong>Note</strong>: To keep things simple, please make sure your <code>id</code> in <code>plugin.xml</code> is the same as your <code>package-name</code> in <code>package.json</code>.</li>
+
+<li>Use <code>plugman createpackagejson [PLUGIN DIRECTORY]</code> to create <code>package.json</code>.
+<ul>
+<li>This will create defaults based on existing values in your <code>plugin.xml</code>.</li>
+
+<li>It will also automatically add the keyword <code>ecosystem:cordova</code> to your newly generated <code>package.json</code> file.</li>
+
+<li>In addition, a <strong>cordova</strong> key will be added to your <code>package.json</code> which we plan to use in future updates of the tooling.</li>
+</ul>
+</li>
+
+<li>View the <code>package.json</code> of <a href="https://github.com/apache/cordova-plugin-device/blob/master/package.json">cordova-plugin-device</a> to see an example of what your <code>package.json</code> should look like after running <code>plugman createpackagejson [PLUGIN DIRECTORY]</code> command.</li>
+
+<li>Plugins still require a <code>plugin.xml</code> to be installed into <strong>Cordova</strong> projects.</li>
+</ul>
+</li>
+
+<li>
+<p>Publish your plugin to <strong>npm</strong> using the <code>npm publish [PLUGIN DIRECTORY]</code>.</p>
+</li>
+</ol>
+
+<h2 id="new_whitelist_plugins">New Whitelist Plugins</h2>
 
 <p>We recently released <a href="https://www.npmjs.com/package/cordova-plugin-whitelist">cordova-plugin-whitelist</a> and <a href="https://www.npmjs.com/package/cordova-plugin-legacy-whitelist">cordova-plugin-legacy-whitelist</a>. We have revamped how whitelisting works starting with <code>cordova-android@4.0.0</code>. With this change, setting a <strong>Content-Security-Policy</strong> (CSP) is now supported. Network requests are blocked by default without <code>cordova-plugin-whitelist</code>, so install this plugin even to allow all requests, and even if you are using CSP.</p>
 
 <p><code>cordova-plugin-legacy-whitelist</code> allows <code>cordova-android@4.0.0</code> projects to continue using the old whitelisting method. We recommend using <code>cordova-plugin-whitelist</code> over <code>cordova-plugin-legacy-whitelist</code>.</p>
 
 <p>Other platforms will include support for <code>cordova-plugin-whitelist</code> in future releases. To learn more about whitelisting, please read the <code>cordova-android@4.0.0</code> <a href="http://cordova.apache.org/announcements/2015/04/15/cordova-android-4.0.0.html">release blog post</a>.</p>
-
 <hr />
 <p>The following plugins were updated today:</p>
 
 <ul>
-  <li>cordova-plugin-battery-status@1.0.0</li>
-  <li>cordova-plugin-camera@1.0.0</li>
-  <li>cordova-plugin-console@1.0.0</li>
-  <li>cordova-plugin-contacts@1.0.0</li>
-  <li>cordova-plugin-device@1.0.0</li>
-  <li>cordova-plugin-device-motion@1.0.0</li>
-  <li>cordova-plugin-device-orientation@1.0.0</li>
-  <li>cordova-plugin-dialogs@1.0.0</li>
-  <li>cordova-plugin-file@2.0.0</li>
-  <li>cordova-plugin-file-transfer@1.0.0</li>
-  <li>cordova-plugin-geolocation@1.0.0</li>
-  <li>cordova-plugin-globalization@1.0.0</li>
-  <li>cordova-plugin-inappbrowser@1.0.0</li>
-  <li>cordova-plugin-legacy-whitelist@1.0.1</li>
-  <li>cordova-plugin-media@1.0.0</li>
-  <li>cordova-plugin-media-capture@1.0.0</li>
-  <li>cordova-plugin-network-information@1.0.0</li>
-  <li>cordova-plugin-splashscreen@2.0.0</li>
-  <li>cordova-plugin-statusbar@1.0.0</li>
-  <li>cordova-plugin-test-framework@1.0.0</li>
-  <li>cordova-plugin-vibration@1.0.0</li>
-</ul>
+<li>cordova-plugin-battery-status@1.0.0</li>
+
+<li>cordova-plugin-camera@1.0.0</li>
+
+<li>cordova-plugin-console@1.0.0</li>
+
+<li>cordova-plugin-contacts@1.0.0</li>
+
+<li>cordova-plugin-device@1.0.0</li>
+
+<li>cordova-plugin-device-motion@1.0.0</li>
+
+<li>cordova-plugin-device-orientation@1.0.0</li>
+
+<li>cordova-plugin-dialogs@1.0.0</li>
+
+<li>cordova-plugin-file@2.0.0</li>
+
+<li>cordova-plugin-file-transfer@1.0.0</li>
+
+<li>cordova-plugin-geolocation@1.0.0</li>
 
+<li>cordova-plugin-globalization@1.0.0</li>
+
+<li>cordova-plugin-inappbrowser@1.0.0</li>
+
+<li>cordova-plugin-legacy-whitelist@1.0.1</li>
+
+<li>cordova-plugin-media@1.0.0</li>
+
+<li>cordova-plugin-media-capture@1.0.0</li>
+
+<li>cordova-plugin-network-information@1.0.0</li>
+
+<li>cordova-plugin-splashscreen@2.0.0</li>
+
+<li>cordova-plugin-statusbar@1.0.0</li>
+
+<li>cordova-plugin-test-framework@1.0.0</li>
+
+<li>cordova-plugin-vibration@1.0.0</li>
+</ul>
 <hr />
 <p>To update your existing plugins, you need to update your version of <code>Cordova CLI</code> to version 5.0.0.</p>
 
 <pre><code>E.g. To update your cli:
     
-    `npm install -g cordova@5.0.0`
-</code></pre>
+    `npm install -g cordova@5.0.0`</code></pre>
 
 <p>Then remove your old plugin and re-add it using the new ID.</p>
 
 <pre><code>E.g. To update your camera plugin:
 
     `cordova plugin rm org.apache.cordova.camera`
-    `cordova plugin add cordova-plugin-camera`
-</code></pre>
+    `cordova plugin add cordova-plugin-camera`</code></pre>
 
-<p>Plugin changes include:
-<!--more--></p>
+<p>Plugin changes include: <!--more--></p>
 
 <p>cordova-plugin-battery-status@1.0.0</p>
 
 <ul>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
-  <li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
-  <li>Add <code>travis.yml</code> for CI with <strong>paramedic</strong></li>
-  <li>Added apache/travis badge - will not show until INFRA updates the github integration</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8808">CB-8808</a> Fixed tests to pass on <strong>Windows Phone 8.1</strong></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8831">CB-8831</a> <strong>Windows</strong> Adds extra check for available <code>API</code></li>
-  <li>Add <strong>Android</strong>+<strong>FireOS</strong> warning to tell devs that prolonged use will drain the battery</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-7971">CB-7971</a> Add <code>cordova-plugin-battery-status</code> support for <strong>Windows Phone 8.1</strong></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8659">CB-8659</a> <strong>iOS 4.0.x</strong> Compatibility: Remove use of <code>initWithWebView</code> method</li>
+<li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
+
+<li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
+
+<li>Add <code>travis.yml</code> for CI with <strong>paramedic</strong></li>
+
+<li>Added apache/travis badge - will not show until INFRA updates the github integration</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8808">CB-8808</a> Fixed tests to pass on <strong>Windows Phone 8.1</strong></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8831">CB-8831</a> <strong>Windows</strong> Adds extra check for available <code>API</code></li>
+
+<li>Add <strong>Android</strong>+<strong>FireOS</strong> warning to tell devs that prolonged use will drain the battery</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-7971">CB-7971</a> Add <code>cordova-plugin-battery-status</code> support for <strong>Windows Phone 8.1</strong></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8659">CB-8659</a> <strong>iOS 4.0.x</strong> Compatibility: Remove use of <code>initWithWebView</code> method</li>
 </ul>
 
 <p>cordova-plugin-camera@1.0.0</p>
 
 <ul>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8653">CB-8653</a> Updated Readme</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8780">CB-8780</a> Display popover using main thread. Fixes popover slowness</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8746">CB-8746</a> Bumped version of file dependency</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8706">CB-8706</a> Use <code>filePicker</code> if <code>saveToPhotoAlbum</code> is true</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8706">CB-8706</a> Remove unnecessary capabilities from <code>xml</code></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8747">CB-8747</a> Updated dependency, added peer dependency</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8782">CB-8782</a> Updated the docs to talk about the <code>allowEdit</code> quirks, it’s not 100% working, but better than it was</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8782">CB-8782</a> Fixed the flow so that we save the cropped image and use it, not the original non-cropped.  Crop only supports G+ Photos Crop, other crops may not work, depending on the OEM</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8740">CB-8740</a> Removing <code>FileHelper</code> call that was failing on Samsung Galaxy S3, now that we have a real path, we only need to update the <code>MediaStore</code>, not pull from it in this case</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8740">CB-8740</a> Partial fix for Save Image to Gallery error found in <code>MobileSpec</code></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8351">CB-8351</a> Fix custom implementation of <code>integerValueForKey</code></li>
-  <li>Fix <code>cordova-paramedic</code> path change, build with <code>TRAVIS_BUILD_DIR</code>, use <strong>npm</strong> to install <strong>paramedic</strong></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> <strong>BlackBerry</strong> updated references of <code>org.apache.cordova.camera</code> to <code>cordova-plugin-camera</code></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8707">CB-8707</a> <strong>Windows</strong> refactoring code to improve readability</li>
-  <li>Docs: added <strong>Windows</strong> to supported platforms</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8659">CB-8659</a> <strong>iOS 4.0.x</strong> Compatibility: Remove use of deprecated headers</li>
+<li><a href="https://issues.apache.org/jira/browse/CB-8653">CB-8653</a> Updated Readme</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8780">CB-8780</a> Display popover using main thread. Fixes popover slowness</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8746">CB-8746</a> Bumped version of file dependency</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8706">CB-8706</a> Use <code>filePicker</code> if <code>saveToPhotoAlbum</code> is true</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8706">CB-8706</a> Remove unnecessary capabilities from <code>xml</code></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8747">CB-8747</a> Updated dependency, added peer dependency</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8782">CB-8782</a> Updated the docs to talk about the <code>allowEdit</code> quirks, it’s not 100% working, but better than it was</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8782">CB-8782</a> Fixed the flow so that we save the cropped image and use it, not the original non-cropped. Crop only supports G+ Photos Crop, other crops may not work, depending on the OEM</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8740">CB-8740</a> Removing <code>FileHelper</code> call that was failing on Samsung Galaxy S3, now that we have a real path, we only need to update the <code>MediaStore</code>, not pull from it in this case</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8740">CB-8740</a> Partial fix for Save Image to Gallery error found in <code>MobileSpec</code></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8351">CB-8351</a> Fix custom implementation of <code>integerValueForKey</code></li>
+
+<li>Fix <code>cordova-paramedic</code> path change, build with <code>TRAVIS_BUILD_DIR</code>, use <strong>npm</strong> to install <strong>paramedic</strong></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> <strong>BlackBerry</strong> updated references of <code>org.apache.cordova.camera</code> to <code>cordova-plugin-camera</code></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8707">CB-8707</a> <strong>Windows</strong> refactoring code to improve readability</li>
+
+<li>Docs: added <strong>Windows</strong> to supported platforms</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8659">CB-8659</a> <strong>iOS 4.0.x</strong> Compatibility: Remove use of deprecated headers</li>
 </ul>
 
 <p>cordova-plugin-console@1.0.0</p>
 
 <ul>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8560">CB-8560</a> Integrate <strong>TravisCI</strong></li>
-  <li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
-  <li>Docs: renamed <strong>Windows8</strong> to <strong>Windows</strong></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8362">CB-8362</a> Add <strong>Windows</strong> platform section to Console plugin</li>
+<li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8560">CB-8560</a> Integrate <strong>TravisCI</strong></li>
+
+<li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
+
+<li>Docs: renamed <strong>Windows8</strong> to <strong>Windows</strong></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8362">CB-8362</a> Add <strong>Windows</strong> platform section to Console plugin</li>
 </ul>
 
 <p>cordova-plugin-contacts@1.0.0</p>
 
 <ul>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8561">CB-8561</a> Integrate <strong>TravisCI</strong></li>
-  <li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8659">CB-8659</a> <strong>iOS 4.0.x</strong> Compatibility: Remove use of <code>initWebView</code> method</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8659">CB-8659</a> <strong>iOS 4.0.x</strong> Compatibility: Remove use of deprecated headers</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Updated <strong>wp</strong> specific references of old id to new id</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8604">CB-8604</a> Pended unsupported test for <strong>wp8</strong>, updated documentation</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8395">CB-8395</a> Marked unsupported tests pending on <strong>wp8</strong></li>
+<li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8561">CB-8561</a> Integrate <strong>TravisCI</strong></li>
+
+<li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8659">CB-8659</a> <strong>iOS 4.0.x</strong> Compatibility: Remove use of <code>initWebView</code> method</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8659">CB-8659</a> <strong>iOS 4.0.x</strong> Compatibility: Remove use of deprecated headers</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Updated <strong>wp</strong> specific references of old id to new id</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8604">CB-8604</a> Pended unsupported test for <strong>wp8</strong>, updated documentation</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8395">CB-8395</a> Marked unsupported tests pending on <strong>wp8</strong></li>
 </ul>
 
 <p>cordova-plugin-device@1.0.0</p>
 
 <ul>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
-  <li>Add travis badge</li>
-  <li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
-  <li>Add cross-plugin <strong>iOS</strong> <strong>paramedic</strong> test running for <strong>TravisCI</strong></li>
-  <li>Remove defunct <strong>windows8</strong> version</li>
+<li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
+
+<li>Add travis badge</li>
+
+<li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
+
+<li>Add cross-plugin <strong>iOS</strong> <strong>paramedic</strong> test running for <strong>TravisCI</strong></li>
+
+<li>Remove defunct <strong>windows8</strong> version</li>
 </ul>
 
 <p>cordova-plugin-device-motion@1.0.0</p>
 
 <ul>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code>
-specific references of old id to new id</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8562">CB-8562</a> Integrate <strong>TravisCI</strong></li>
-  <li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Updated <strong>Windows</strong> and <strong>Tizen</strong> * <a href="https://issues.apache.org/jira/browse/CB-8096">CB-8096</a> Pended recently added spec.12 if accelerometer doesn’t exist on the device</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8096">CB-8096</a> Pended auto tests if accelerometer doesn’t exist on the device</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8083">CB-8083</a> Adds test to make sure success callback is called each time</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8312">CB-8312</a> Multiply accelerometer values by -g on <strong>Windows</strong></li>
+<li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code> specific references of old id to new id</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8562">CB-8562</a> Integrate <strong>TravisCI</strong></li>
+
+<li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Updated <strong>Windows</strong> and <strong>Tizen</strong> * <a href="https://issues.apache.org/jira/browse/CB-8096">CB-8096</a> Pended recently added spec.12 if accelerometer doesn’t exist on the device</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8096">CB-8096</a> Pended auto tests if accelerometer doesn’t exist on the device</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8083">CB-8083</a> Adds test to make sure success callback is called each time</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8312">CB-8312</a> Multiply accelerometer values by -g on <strong>Windows</strong></li>
 </ul>
 
 <p>cordova-plugin-device-orientation@1.0.0</p>
 
 <ul>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8563">CB-8563</a> Integrate <strong>TravisCI</strong></li>
-  <li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8653">CB-8653</a> Updated Readme</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Updated <strong>Windows</strong> and <strong>Tizen</strong> specific references of old id to new id</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8458">CB-8458</a> Fixes false failure of test, when compass hardware is not available</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8659">CB-8659</a> <strong>iOS 4.0.x</strong> Compatibility: Remove use of <code>initWebView</code> method</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8659">CB-8659</a> <strong>iOS 4.0.x</strong> Compatibility: Remove use of deprecated headers</li>
-  <li>Force async callbacks</li>
-  <li>Updated plugin to be <strong>Windows</strong> instead of <strong>Windows8</strong></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8614">CB-8614</a> <strong>Windows</strong> Fixed <code>getCurrentHeading</code> and <code>watchHeading</code></li>
+<li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8563">CB-8563</a> Integrate <strong>TravisCI</strong></li>
+
+<li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8653">CB-8653</a> Updated Readme</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Updated <strong>Windows</strong> and <strong>Tizen</strong> specific references of old id to new id</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8458">CB-8458</a> Fixes false failure of test, when compass hardware is not available</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8659">CB-8659</a> <strong>iOS 4.0.x</strong> Compatibility: Remove use of <code>initWebView</code> method</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8659">CB-8659</a> <strong>iOS 4.0.x</strong> Compatibility: Remove use of deprecated headers</li>
+
+<li>Force async callbacks</li>
+
+<li>Updated plugin to be <strong>Windows</strong> instead of <strong>Windows8</strong></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8614">CB-8614</a> <strong>Windows</strong> Fixed <code>getCurrentHeading</code> and <code>watchHeading</code></li>
 </ul>
 
 <p>cordova-plugin-dialogs@1.0.0</p>
 
 <ul>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8565">CB-8565</a> Integrate <strong>TravisCI</strong></li>
-  <li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Updated wp and bb specific references of old id to new id</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8659">CB-8659</a> <strong>iOS 4.0.x</strong> Compatibility: Remove use of deprecated headers</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8367">CB-8367</a> <strong>Windows</strong> Add Prompt support</li>
+<li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8565">CB-8565</a> Integrate <strong>TravisCI</strong></li>
+
+<li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Updated wp and bb specific references of old id to new id</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8659">CB-8659</a> <strong>iOS 4.0.x</strong> Compatibility: Remove use of deprecated headers</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8367">CB-8367</a> <strong>Windows</strong> Add Prompt support</li>
 </ul>
 
 <p>cordova-plugin-file@2.0.0</p>
 
 <ul>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8567">CB-8567</a> Integrate <strong>TravisCI</strong></li>
-  <li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8689">CB-8689</a> Fix <code>NPE</code> in <code>makeEntryForNativeUri</code> (was affecting file-transfer)</li>
-  <li>Add a cache to speed up <code>AssetFilesystem</code> directory listings</li>
-  <li>Don’t log stacktrace for normal exceptions (e.g. file not found)</li>
-  <li>Tweak tests to fail if <code>deleteEntry</code> fails (rather than time out)</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8032">CB-8032</a> Add <code>nativeURL</code> external method support for <code>CDVFileSystem-&gt;makeEntryForPath:isDirectory:</code></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8423">CB-8423</a> Corrected usage of <code>done()</code> in async tests</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8459">CB-8459</a> Fixes spec 111 failure due to incorrect relative paths handling</li>
-  <li>Added <code>nativeURL</code> property to <code>FileEntry</code>, implemented <code>readAsArrayBuffer</code> and <code>readAsBinaryString</code></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8675">CB-8675</a> Revert “CB-8351 <strong>iOS</strong>: Use <code>base64EncodedStringWithOptions</code> instead of <code>CordovaLib's</code> class extension”</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-6428">CB-6428</a> Fix uncompressed assets being copied as zero length files</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8695">CB-8695</a> <strong>iOS</strong> Fix <code>blob.slice()</code> for <code>asset-library</code> URLs</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8659">CB-8659</a> <strong>iOS 4.0.x</strong> Compatibility: Remove use of <code>initWebView</code> method</li>
-  <li><strong>Android</strong> Tweak <code>build-extras.gradle</code> to just read/write to main <code>assets/</code> instead of <code>build/</code></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> <strong>Android</strong> Fix broken unit tests from plugin rename</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-6428">CB-6428</a> <strong>Android</strong> Fix assets <code>FileEntry</code> having size of -1</li>
-  <li><strong>Android</strong> Move <code>URLforFullPath</code> into base class (and rename to <code>localUrlforFullPath</code>)</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-6428">CB-6428</a> <strong>Android</strong> Mention <code>build-extras.gradle</code> in README</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-7109">CB-7109</a> <strong>Android</strong> Parse arguments off of the main thread</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8663">CB-8663</a> <strong>Android</strong> Don’t notify <code>MediaScanner</code> of private files</li>
-  <li><strong>Android</strong> Don’t use LimitedInputStream when reading entire file (optimization)</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-6428">CB-6428</a> <strong>Android</strong> Add support for directory copies from assets -&gt; filesystem</li>
-  <li><strong>Android</strong> Add <code>listChildren()</code>: Java-consumable version of <code>readEntriesAtLocalURL()</code></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-6428">CB-6428</a> <strong>Android</strong> Add support for <code>file:///android_asset</code> URLs</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8642">CB-8642</a> <strong>Android</strong> Fix content URIs not working with resolve / copy</li>
-  <li><strong>Android</strong> Ensure <code>LocalFilesystemURL</code> can only be created with <code>cdvfile</code> URLs</li>
-  <li><strong>Android</strong> Move <code>CordovaResourceApi</code> into Filesystem base class</li>
-  <li><strong>Android</strong> Use <code>CordovaResourceApi.mapUriToFile()</code> rather than own custom logic in <code>ContentFilesystem</code></li>
-  <li><strong>Android</strong> Use Uri.parse rather than manual parsing in resolveLocalFileSystemURI</li>
-  <li><strong>Android</strong> Delete invalid <code>JavaDoc</code> (lint errors)</li>
-  <li><strong>Android</strong> Use <code>CordovaResourceAp</code>i rather than <code>FileHelper</code></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-7956">CB-7956</a> <strong>Browser</strong> Add support</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8849">CB-8849</a> <strong>WP8</strong> Fixed <code>ReadAsArrayBuffer</code> to return <code>ArrayBuffer</code> and not Array</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8819">CB-8819</a> <strong>wp8</strong> Fixed FileReader’s <code>readAsBinaryString</code></li>
-  <li>Docs: added <strong>Windows</strong> to supported platforms</li>
+<li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8567">CB-8567</a> Integrate <strong>TravisCI</strong></li>
+
+<li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8689">CB-8689</a> Fix <code>NPE</code> in <code>makeEntryForNativeUri</code> (was affecting file-transfer)</li>
+
+<li>Add a cache to speed up <code>AssetFilesystem</code> directory listings</li>
+
+<li>Don’t log stacktrace for normal exceptions (e.g. file not found)</li>
+
+<li>Tweak tests to fail if <code>deleteEntry</code> fails (rather than time out)</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8032">CB-8032</a> Add <code>nativeURL</code> external method support for <code>CDVFileSystem-&gt;makeEntryForPath:isDirectory:</code></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8423">CB-8423</a> Corrected usage of <code>done()</code> in async tests</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8459">CB-8459</a> Fixes spec 111 failure due to incorrect relative paths handling</li>
+
+<li>Added <code>nativeURL</code> property to <code>FileEntry</code>, implemented <code>readAsArrayBuffer</code> and <code>readAsBinaryString</code></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8675">CB-8675</a> Revert “CB-8351 <strong>iOS</strong>: Use <code>base64EncodedStringWithOptions</code> instead of <code>CordovaLib&#39;s</code> class extension”</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-6428">CB-6428</a> Fix uncompressed assets being copied as zero length files</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8695">CB-8695</a> <strong>iOS</strong> Fix <code>blob.slice()</code> for <code>asset-library</code> URLs</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8659">CB-8659</a> <strong>iOS 4.0.x</strong> Compatibility: Remove use of <code>initWebView</code> method</li>
+
+<li><strong>Android</strong> Tweak <code>build-extras.gradle</code> to just read/write to main <code>assets/</code> instead of <code>build/</code></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> <strong>Android</strong> Fix broken unit tests from plugin rename</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-6428">CB-6428</a> <strong>Android</strong> Fix assets <code>FileEntry</code> having size of -1</li>
+
+<li><strong>Android</strong> Move <code>URLforFullPath</code> into base class (and rename to <code>localUrlforFullPath</code>)</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-6428">CB-6428</a> <strong>Android</strong> Mention <code>build-extras.gradle</code> in README</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-7109">CB-7109</a> <strong>Android</strong> Parse arguments off of the main thread</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8663">CB-8663</a> <strong>Android</strong> Don’t notify <code>MediaScanner</code> of private files</li>
+
+<li><strong>Android</strong> Don’t use LimitedInputStream when reading entire file (optimization)</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-6428">CB-6428</a> <strong>Android</strong> Add support for directory copies from assets -&gt; filesystem</li>
+
+<li><strong>Android</strong> Add <code>listChildren()</code>: Java-consumable version of <code>readEntriesAtLocalURL()</code></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-6428">CB-6428</a> <strong>Android</strong> Add support for <code>file:///android_asset</code> URLs</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8642">CB-8642</a> <strong>Android</strong> Fix content URIs not working with resolve / copy</li>
+
+<li><strong>Android</strong> Ensure <code>LocalFilesystemURL</code> can only be created with <code>cdvfile</code> URLs</li>
+
+<li><strong>Android</strong> Move <code>CordovaResourceApi</code> into Filesystem base class</li>
+
+<li><strong>Android</strong> Use <code>CordovaResourceApi.mapUriToFile()</code> rather than own custom logic in <code>ContentFilesystem</code></li>
+
+<li><strong>Android</strong> Use Uri.parse rather than manual parsing in resolveLocalFileSystemURI</li>
+
+<li><strong>Android</strong> Delete invalid <code>JavaDoc</code> (lint errors)</li>
+
+<li><strong>Android</strong> Use <code>CordovaResourceAp</code>i rather than <code>FileHelper</code></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-7956">CB-7956</a> <strong>Browser</strong> Add support</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8849">CB-8849</a> <strong>WP8</strong> Fixed <code>ReadAsArrayBuffer</code> to return <code>ArrayBuffer</code> and not Array</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8819">CB-8819</a> <strong>wp8</strong> Fixed FileReader’s <code>readAsBinaryString</code></li>
+
+<li>Docs: added <strong>Windows</strong> to supported platforms</li>
 </ul>
 
 <p>cordova-plugin-file-transfer@1.0.0</p>
 
 <ul>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8566">CB-8566</a> Integrate <strong>TravisCI</strong></li>
-  <li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8746">CB-8746</a> Bumped version of file dependency</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8583">CB-8583</a> Forces download to overwrite existing target file</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8589">CB-8589</a> Fixes upload failure when server’s response doesn’t contain any data</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8747">CB-8747</a> Updated dependency, added peer dependency</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8407">CB-8407</a> Use File proxy to construct valid FileEntry for download success callback</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8407">CB-8407</a> Removes excess path to native path conversion in download method</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8429">CB-8429</a> Updated version and <code>RELEASENOTES.md</code> for release 0.5.0</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8095">CB-8095</a> Fixes JSHint and formatting issues</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8095">CB-8095</a> Updates tests and documentation</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8095">CB-8095</a> Rewrite upload method to support progress events properly</li>
-  <li><strong>Android</strong> Fix error reporting for unknown <code>uri</code> type on <code>sourceUri</code> instead of <code>targetUri</code></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-7957">CB-7957</a> <strong>Browser</strong> Add support</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8641">CB-8641</a> Fixed tests to pass on <strong>Windows</strong> and <strong>wp8</strong></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8654">CB-8654</a> Note <strong>WP8</strong> download requests caching in docs</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8590">CB-8590</a> <strong>Windows</strong> Fixed <code>download.onprogress.lengthComputable</code></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8495">CB-8495</a> Fixed <strong>wp8</strong> and <strong>wp8.1</strong> test failures</li>
+<li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8566">CB-8566</a> Integrate <strong>TravisCI</strong></li>
+
+<li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8746">CB-8746</a> Bumped version of file dependency</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8583">CB-8583</a> Forces download to overwrite existing target file</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8589">CB-8589</a> Fixes upload failure when server’s response doesn’t contain any data</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8747">CB-8747</a> Updated dependency, added peer dependency</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8407">CB-8407</a> Use File proxy to construct valid FileEntry for download success callback</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8407">CB-8407</a> Removes excess path to native path conversion in download method</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8429">CB-8429</a> Updated version and <code>RELEASENOTES.md</code> for release 0.5.0</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8095">CB-8095</a> Fixes JSHint and formatting issues</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8095">CB-8095</a> Updates tests and documentation</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8095">CB-8095</a> Rewrite upload method to support progress events properly</li>
+
+<li><strong>Android</strong> Fix error reporting for unknown <code>uri</code> type on <code>sourceUri</code> instead of <code>targetUri</code></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-7957">CB-7957</a> <strong>Browser</strong> Add support</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8641">CB-8641</a> Fixed tests to pass on <strong>Windows</strong> and <strong>wp8</strong></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8654">CB-8654</a> Note <strong>WP8</strong> download requests caching in docs</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8590">CB-8590</a> <strong>Windows</strong> Fixed <code>download.onprogress.lengthComputable</code></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8495">CB-8495</a> Fixed <strong>wp8</strong> and <strong>wp8.1</strong> test failures</li>
 </ul>
 
 <p>cordova-plugin-geolocation@1.0.0</p>
 
 <ul>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8568">CB-8568</a> Integrate <strong>TravisCI</strong></li>
-  <li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8681">CB-8681</a> Fixed occasional test failures</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8659">CB-8659</a> <strong>iOS 4.0.x</strong> Compatibility: Remove use of <code>initWebView</code> method</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8659">CB-8659</a> <strong>iOS 4.0.x</strong> Compatibility: Remove use of deprecated headers</li>
-  <li>Wrong parameter in <strong>Firefox OS</strong> plugin</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8443">CB-8443</a> Geolocation tests fail on <strong>Windows</strong> due to done is called multiple times</li>
-  <li>Docs: added <strong>Windows</strong> to supported platforms</li>
+<li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8568">CB-8568</a> Integrate <strong>TravisCI</strong></li>
+
+<li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8681">CB-8681</a> Fixed occasional test failures</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8659">CB-8659</a> <strong>iOS 4.0.x</strong> Compatibility: Remove use of <code>initWebView</code> method</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8659">CB-8659</a> <strong>iOS 4.0.x</strong> Compatibility: Remove use of deprecated headers</li>
+
+<li>Wrong parameter in <strong>Firefox OS</strong> plugin</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8443">CB-8443</a> Geolocation tests fail on <strong>Windows</strong> due to done is called multiple times</li>
+
+<li>Docs: added <strong>Windows</strong> to supported platforms</li>
 </ul>
 
 <p>cordova-plugin-globalization@1.0.0</p>
 
 <ul>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8569">CB-8569</a> Integrate <strong>TravisCI</strong></li>
-  <li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Updated <strong>tizen</strong> and <strong>Browser</strong> specific references of old id to new id</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-7960">CB-7960</a> <strong>Browser</strong> Add support</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8659">CB-8659</a> <strong>iOS 4.0.x</strong> Compatibility: Remove use of <code>initWebView</code> method</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8394">CB-8394</a> Pended unsupported tests for <strong>Windows</strong> and <strong>wp8</strong></li>
-  <li>Separate section in <code>plugin.xml</code> and docs for <strong>Windows8</strong> platform</li>
+<li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8569">CB-8569</a> Integrate <strong>TravisCI</strong></li>
+
+<li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Updated <strong>tizen</strong> and <strong>Browser</strong> specific references of old id to new id</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-7960">CB-7960</a> <strong>Browser</strong> Add support</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8659">CB-8659</a> <strong>iOS 4.0.x</strong> Compatibility: Remove use of <code>initWebView</code> method</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8394">CB-8394</a> Pended unsupported tests for <strong>Windows</strong> and <strong>wp8</strong></li>
+
+<li>Separate section in <code>plugin.xml</code> and docs for <strong>Windows8</strong> platform</li>
 </ul>
 
 <p>cordova-plugin-inappbrowser@1.0.0</p>
 
 <ul>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8570">CB-8570</a> Integrate <strong>TravisCI</strong></li>
-  <li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-4930">CB-4930</a> (prefix) InAppBrowser should take into account the status bar</li>
-  <li>Added option to disable/enable zoom controls</li>
-  <li>Updated docs, set <code>hardwareback</code> default to true</li>
-  <li>Add a <code>hardwareback</code> option to allow for the hardware back button to go back</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8444">CB-8444</a> Add a clobber for <code>cordova.InAppBrowser.open</code></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8444">CB-8444</a> Don’t clobber <code>window.open</code> - Add new symbol/clobber to access open function (<code>cordova.InAppBrowser.open</code>) Change existing tests to use new symbol (i.e. don’t rely on plugin clobber of <code>window.open</code>) - Add tests to use <code>window.open</code> via manual replace with new symbol - Update docs to deprecate plugin clobber of <code>window.open</code></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8659">CB-8659</a> Update <code>InAppBrowser</code> to support both <strong>cordova-ios</strong> 4.0.x and 3.x</li>
-  <li>Update docs for <strong>Android</strong> <code>zoom=no</code> option</li>
-  <li>Keep external <strong>Android</strong> pages in a single tab</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-7961">CB-7961</a> <strong>Browser</strong> Add support</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8432">CB-8432</a> Correct styles for <strong>Browser</strong> wrapper to display it correctly on some pages</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-7689">CB-7689</a> Adds <code>insertCSS</code> support for <strong>Windows</strong> platform</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8635">CB-8635</a> Improves UX on <strong>Windows</strong> platform</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8661">CB-8661</a> Return executed script result on <strong>Windows</strong></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Updated <strong>WP</strong> and <strong>Browser</strong> specific references of old id to new id</li>
+<li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8570">CB-8570</a> Integrate <strong>TravisCI</strong></li>
+
+<li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-4930">CB-4930</a> (prefix) InAppBrowser should take into account the status bar</li>
+
+<li>Added option to disable/enable zoom controls</li>
+
+<li>Updated docs, set <code>hardwareback</code> default to true</li>
+
+<li>Add a <code>hardwareback</code> option to allow for the hardware back button to go back</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8444">CB-8444</a> Add a clobber for <code>cordova.InAppBrowser.open</code></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8444">CB-8444</a> Don’t clobber <code>window.open</code> - Add new symbol/clobber to access open function (<code>cordova.InAppBrowser.open</code>) Change existing tests to use new symbol (i.e. don’t rely on plugin clobber of <code>window.open</code>) - Add tests to use <code>window.open</code> via manual replace with new symbol - Update docs to deprecate plugin clobber of <code>window.open</code></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8659">CB-8659</a> Update <code>InAppBrowser</code> to support both <strong>cordova-ios</strong> 4.0.x and 3.x</li>
+
+<li>Update docs for <strong>Android</strong> <code>zoom=no</code> option</li>
+
+<li>Keep external <strong>Android</strong> pages in a single tab</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-7961">CB-7961</a> <strong>Browser</strong> Add support</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8432">CB-8432</a> Correct styles for <strong>Browser</strong> wrapper to display it correctly on some pages</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-7689">CB-7689</a> Adds <code>insertCSS</code> support for <strong>Windows</strong> platform</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8635">CB-8635</a> Improves UX on <strong>Windows</strong> platform</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8661">CB-8661</a> Return executed script result on <strong>Windows</strong></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Updated <strong>WP</strong> and <strong>Browser</strong> specific references of old id to new id</li>
 </ul>
 
 <p>cordova-plugin-media@1.0.0</p>
 
 <ul>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8572">CB-8572</a> Integrate <strong>TravisCI</strong></li>
-  <li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8746">CB-8746</a> Bumped version of file dependency</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8747">CB-8747</a> Updated dependency, added peer dependency</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8686">CB-8686</a> Remove <code>musicLibrary</code> capability</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8428">CB-8428</a> Fix multiple <code>done()</code> calls in media plugin test on devices where audio is not configured</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8425">CB-8425</a> Media plugin <code>.ctr</code>: make src param required as per spec</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-7962">CB-7962</a> Adds <strong>Browser</strong> platform support</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8659">CB-8659</a> <strong>iOS 4.0.x</strong> Compatibility: Remove use of deprecated headers</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8793">CB-8793</a> Fixed tests to pass on <strong>wp8</strong> and <strong>Windows</strong></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8779">CB-8779</a> Fixed media status reporting on <strong>wp8</strong></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8541">CB-8541</a> Adds information about available recording formats on <strong>Windows</strong></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8428">CB-8428</a> Fix tests on <strong>Windows</strong> if no audio playback hardware is available</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8426">CB-8426</a> Add <strong>Windows</strong> platform section to Media plugin</li>
+<li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8572">CB-8572</a> Integrate <strong>TravisCI</strong></li>
+
+<li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8746">CB-8746</a> Bumped version of file dependency</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8747">CB-8747</a> Updated dependency, added peer dependency</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8686">CB-8686</a> Remove <code>musicLibrary</code> capability</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8428">CB-8428</a> Fix multiple <code>done()</code> calls in media plugin test on devices where audio is not configured</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8425">CB-8425</a> Media plugin <code>.ctr</code>: make src param required as per spec</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-7962">CB-7962</a> Adds <strong>Browser</strong> platform support</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8659">CB-8659</a> <strong>iOS 4.0.x</strong> Compatibility: Remove use of deprecated headers</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8793">CB-8793</a> Fixed tests to pass on <strong>wp8</strong> and <strong>Windows</strong></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8779">CB-8779</a> Fixed media status reporting on <strong>wp8</strong></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8541">CB-8541</a> Adds information about available recording formats on <strong>Windows</strong></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8428">CB-8428</a> Fix tests on <strong>Windows</strong> if no audio playback hardware is available</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8426">CB-8426</a> Add <strong>Windows</strong> platform section to Media plugin</li>
 </ul>
 
 <p>cordova-plugin-media-capture@1.0.0</p>
 
 <ul>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
-  <li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8746">CB-8746</a> Bumped version of file dependency</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8747">CB-8747</a> Updated dependency, added peer dependency</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8687">CB-8687</a> Consolidate manifest targets</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-7963">CB-7963</a> <strong>Browser</strong> Add support</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8659">CB-8659</a> <strong>iOS 4.0.x</strong> Compatibility: Remove use of <code>initWebView</code> method</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8571">CB-8571</a> Integrate <strong>TravisCI</strong></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
+<li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
+
+<li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8746">CB-8746</a> Bumped version of file dependency</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8747">CB-8747</a> Updated dependency, added peer dependency</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8687">CB-8687</a> Consolidate manifest targets</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-7963">CB-7963</a> <strong>Browser</strong> Add support</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8659">CB-8659</a> <strong>iOS 4.0.x</strong> Compatibility: Remove use of <code>initWebView</code> method</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8571">CB-8571</a> Integrate <strong>TravisCI</strong></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
 </ul>
 
 <p>cordova-plugin-network-information@1.0.0</p>
 
 <ul>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8185">CB-8185</a> Fixes typo in <code>cordova.platformId</code></li>
-  <li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8185">CB-8185</a> Use <code>navigator.onLine</code> as connection information source on <strong>Browser</strong> platform</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8659">CB-8659</a> <strong>iOS 4.0.x</strong> Compatibility: Remove use of <code>initWebView</code> method</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8573">CB-8573</a> Integrate <strong>TravisCI</strong></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
+<li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8185">CB-8185</a> Fixes typo in <code>cordova.platformId</code></li>
+
+<li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8185">CB-8185</a> Use <code>navigator.onLine</code> as connection information source on <strong>Browser</strong> platform</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8659">CB-8659</a> <strong>iOS 4.0.x</strong> Compatibility: Remove use of <code>initWebView</code> method</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8573">CB-8573</a> Integrate <strong>TravisCI</strong></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
 </ul>
 
 <p>cordova-plugin-splashscreen@2.0.0</p>
 
 <ul>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8574">CB-8574</a> Integrate <strong>TravisCI</strong></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8345">CB-8345</a> Make default for splashscreen resource <code>screen</code> (which is what template and <strong>CLI</strong> assume it to be)</li>
-  <li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8836">CB-8836</a> Crashes after animating <code>splashscreen</code></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8797">CB-8797</a> <strong>iOS</strong> add Splashscreen preferences <code>FadeSplashScreenDuration</code> and <code>FadeSplashScreen</code></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8753">CB-8753</a> <strong>Android</strong> Fix missing import in previous commit</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8753">CB-8753</a> <strong>Android</strong> Adds <code>SplashMaintainAspectRatio</code> preference</li>
-  <li>Docs: added <strong>Windows</strong> to supported platforms</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-7964">CB-7964</a> <strong>browser</strong> Add support</li>
-  <li><strong>WP8</strong> respect <code>SplashScreen</code> and <code>SplashScreenDelay</code> preferences from config file</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8397">CB-8397</a> <strong>Windows</strong> support showing the <strong>Windows Phone</strong> splashscreen</li>
+<li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8574">CB-8574</a> Integrate <strong>TravisCI</strong></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8345">CB-8345</a> Make default for splashscreen resource <code>screen</code> (which is what template and <strong>CLI</strong> assume it to be)</li>
+
+<li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8836">CB-8836</a> Crashes after animating <code>splashscreen</code></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8797">CB-8797</a> <strong>iOS</strong> add Splashscreen preferences <code>FadeSplashScreenDuration</code> and <code>FadeSplashScreen</code></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8753">CB-8753</a> <strong>Android</strong> Fix missing import in previous commit</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8753">CB-8753</a> <strong>Android</strong> Adds <code>SplashMaintainAspectRatio</code> preference</li>
+
+<li>Docs: added <strong>Windows</strong> to supported platforms</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-7964">CB-7964</a> <strong>browser</strong> Add support</li>
+
+<li><strong>WP8</strong> respect <code>SplashScreen</code> and <code>SplashScreenDelay</code> preferences from config file</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8397">CB-8397</a> <strong>Windows</strong> support showing the <strong>Windows Phone</strong> splashscreen</li>
 </ul>
 
 <p>cordova-plugin-statusbar@1.0.0</p>
 
 <ul>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8575">CB-8575</a> Integrate <strong>TravisCI</strong></li>
-  <li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
-  <li>Use <code>StatusBarBackgroundColor</code> instead of <code>AndroidStatusBarBackgroundColor</code>, and added a quirk to the readme</li>
-  <li><strong>Android 5+</strong> Add support for <code>StatusBar.backgroundColorByHexString</code> (and <code>StatusBar.backgroundColorByName</code>)</li>
-  <li><strong>Android</strong> Allow setting the <code>statusbar backgroundcolor</code></li>
+<li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8575">CB-8575</a> Integrate <strong>TravisCI</strong></li>
+
+<li>Use <code>TRAVIS_BUILD_DIR</code>, install <strong>paramedic</strong> by <strong>npm</strong></li>
+
+<li>Use <code>StatusBarBackgroundColor</code> instead of <code>AndroidStatusBarBackgroundColor</code>, and added a quirk to the readme</li>
+
+<li><strong>Android 5+</strong> Add support for <code>StatusBar.backgroundColorByHexString</code> (and <code>StatusBar.backgroundColorByName</code>)</li>
+
+<li><strong>Android</strong> Allow setting the <code>statusbar backgroundcolor</code></li>
 </ul>
 
 <p>cordova-plugin-test-framework@1.0.0</p>
 
 <ul>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8528">CB-8528</a> Add a shim for <code>jasmine.Expectation.addMatchers</code> being moved in <strong>jasmine 2.2.0</strong></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8528">CB-8528</a> Update test framework plugin to use <strong>Jasmine 2.2.0</strong></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8385">CB-8385</a> Ensure <code>plugin-test-framework</code> trigger tests only once</li>
+<li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8528">CB-8528</a> Add a shim for <code>jasmine.Expectation.addMatchers</code> being moved in <strong>jasmine 2.2.0</strong></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8528">CB-8528</a> Update test framework plugin to use <strong>Jasmine 2.2.0</strong></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8385">CB-8385</a> Ensure <code>plugin-test-framework</code> trigger tests only once</li>
 </ul>
 
 <p>cordova-plugin-vibration@1.0.0</p>
 
 <ul>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-8576">CB-8576</a> Integrate <strong>TravisCI</strong></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-7970">CB-7970</a> Reference proxy project instead of compiled <code>winmd</code></li>
-  <li><a href="https://issues.apache.org/jira/browse/CB-7970">CB-7970</a> Add <code>cordova-plugin-vibration</code> support for <strong>Windows Phone 8.1</strong></li>
-</ul>
+<li><a href="https://issues.apache.org/jira/browse/CB-8538">CB-8538</a> Added <code>package.json</code> file</li>
 
+<li><a href="https://issues.apache.org/jira/browse/CB-8683">CB-8683</a> Changed <code>plugin-id</code> to <code>package-name</code></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-8576">CB-8576</a> Integrate <strong>TravisCI</strong></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-7970">CB-7970</a> Reference proxy project instead of compiled <code>winmd</code></li>
+
+<li><a href="https://issues.apache.org/jira/browse/CB-7970">CB-7970</a> Add <code>cordova-plugin-vibration</code> support for <strong>Windows Phone 8.1</strong></li>
+</ul>
 
     </div>
 </div>

Modified: cordova/site/public/announcements/2015/05/26/android-402.html
URL: http://svn.apache.org/viewvc/cordova/site/public/announcements/2015/05/26/android-402.html?rev=1701854&r1=1701853&r2=1701854&view=diff
==============================================================================
--- cordova/site/public/announcements/2015/05/26/android-402.html (original)
+++ cordova/site/public/announcements/2015/05/26/android-402.html Tue Sep  8 18:56:12 2015
@@ -57,47 +57,38 @@
     <div class="meta">Posted by: <a href="https://twitter.com/infil00p">Joe Bowser</a></div>
     <p class="meta">26 May 2015</p>
     <div class="post">
-    <p>A major Security issue were discovered in the Android platform of Cordova. We are releasing version 4.0.2 of Cordova Android to address these security issues. We recommend that all Android applications built using Cordova 4.0.x or higher be upgraded to use version 4.0.2 of Cordova Android. If you are using an older version of Cordova, we have also released 3.7.2 with the same fix, and we recommend that you at upgrade your project to either of these fixed versions.  Other Cordova platforms such as iOS are unaffected, and do not have an update.</p>
+    
+<p>A major Security issue were discovered in the Android platform of Cordova. We are releasing version 4.0.2 of Cordova Android to address these security issues. We recommend that all Android applications built using Cordova 4.0.x or higher be upgraded to use version 4.0.2 of Cordova Android. If you are using an older version of Cordova, we have also released 3.7.2 with the same fix, and we recommend that you at upgrade your project to either of these fixed versions. Other Cordova platforms such as iOS are unaffected, and do not have an update.</p>
 
 <p>When using the Cordova CLI, the command to use 4.0.2 of Cordova Android is:</p>
 
-<pre><code>cordova platform add android@4.0.2
-</code></pre>
+<pre><code>cordova platform add android@4.0.2</code></pre>
 
 <p>and the command to use 3.7.2 is:</p>
 
-<pre><code>cordova platform add android@3.7.2
-</code></pre>
+<pre><code>cordova platform add android@3.7.2</code></pre>
 
 <p>The security issue is CVE-2015-1835</p>
 
 <p>For your convenience, the text of the CVE is included here.</p>
-
-<!--more-->
-
-<hr />
-
+<!--more--><hr />
 <p>CVE-2015-1835: Remote exploit of secondary configuration variables in Apache Cordova on Android</p>
 
 <p>Severity: High</p>
 
-<p>Vendor:
-The Apache Software Foundation</p>
+<p>Vendor: The Apache Software Foundation</p>
+
+<p>Versions Affected: Cordova Android versions up to 4.0.1 (3.7.2 Excluded)</p>
 
-<p>Versions Affected:
-Cordova Android versions up to 4.0.1 (3.7.2 Excluded)</p>
+<p>Description: Android applications built with the Cordova framework that don’t have explicit values set in Config.xml can have undefined configuration variables set by Intent. This can cause unwanted dialogs appearing in applications and changes in the application behaviour that can include the app force-closing.</p>
 
-<p>Description:
-Android applications built with the Cordova framework that don’t have explicit values set in Config.xml can have undefined configuration variables set by Intent.  This can cause unwanted dialogs appearing in applications and changes in the application behaviour that can include the app force-closing.</p>
+<p>The latest release of Cordova Android entirely removes the ability of configuration parameters to be set by intents. This change is an API change in the platform, and third-party plugins that use values set in the config.xml should make sure that they use the preferences API instead of relying on the Intent bundle, whcih can be manipulated in this case.</p>
 
-<p>The latest release of Cordova Android entirely removes the ability of configuration parameters to be set by intents.  This change is an API change in the platform, and third-party plugins that use values set in the config.xml should make sure that they use the preferences API instead of relying on the Intent bundle, whcih can be manipulated in this case.</p>
+<p>Upgrade path: Developers who are concerned about this should rebuild their applications with Cordova Android 4.0.2. Developers unable to upgrade to 4.0.2 also have the option of upgrading to Cordova Android 3.7.2. Developers should also make sure that variables that they wish to have protected are specified in their config.xml.</p>
 
-<p>Upgrade path:
-Developers who are concerned about this should rebuild their applications with Cordova Android 4.0.2.  Developers unable to upgrade to 4.0.2 also have the option of upgrading to Cordova Android 3.7.2.  Developers should also make sure that variables that they wish to have protected are specified in their config.xml.</p>
+<p>Credit:</p>
 
-<p>Credit:
-This issue was discovered by Seven She from TrendMicro Mobile Threat Research Team (TRT)
-==================================================</p>
+<h1 id="this_issue_was_discovered_by_seven_she_from_trendmicro_mobile_threat_research_team_trt">This issue was discovered by Seven She from TrendMicro Mobile Threat Research Team (TRT)</h1>
 
     </div>
 </div>



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org