Modified: cordova/site/public/rss.xml
URL: 
http://svn.apache.org/viewvc/cordova/site/public/rss.xml?rev=1640422&r1=1640421&r2=1640422&view=diff
==============================================================================
--- cordova/site/public/rss.xml (original)
+++ cordova/site/public/rss.xml Tue Nov 18 20:42:35 2014
@@ -5,8 +5,8 @@
         <description>Apache Cordova - Apache Cordova is a set of device APIs 
that allow a web mobile app developer to access native device function from 
JavaScript.</description>
         <atom:link href="http://cordova.apache.org/rss.xml"; rel="self" 
type="application/rss+xml" />
         <link>http://cordova.apache.org/rss.xml</link>
-        <lastBuildDate>Thu, 13 Nov 2014 15:52:36 -0500</lastBuildDate>
-        <pubDate>Thu, 13 Nov 2014 15:52:36 -0500</pubDate>
+        <lastBuildDate>Tue, 18 Nov 2014 11:23:13 -0800</lastBuildDate>
+        <pubDate>Tue, 18 Nov 2014 11:23:13 -0800</pubDate>
         <ttl>1800</ttl>
         <image>
             <url>http://cordova.apache.org</url>
@@ -19,83 +19,196 @@
 
 
         <item>
+                <title>Automating Performance Audits for Cordova apps</title>
+                <description>
+&lt;p&gt;While developing mobile apps with Cordova, performance is a common 
concern many developers have. Though recent WebView improvements have made 
smooth experiences easy to achieve, it is always important to watch out for 
code in our apps that may make the app &lt;a 
href=&quot;http://jankfree.org&quot;&gt;janky&lt;/a&gt;.&lt;/p&gt;
+
+&lt;h1 id=&quot;measuring_performance&quot;&gt;Measuring Performance&lt;/h1&gt;
+
+&lt;p&gt;The latest versions of Android and iOS WebViews can connect to and 
leverage developer tools in browsers for profiling rendering performance of 
apps. Developer tools provide insights into details like frames rates, 
repaints, layouts, etc.&lt;/p&gt;
+
+&lt;p&gt;&lt;img src=&quot;http://i.imgur.com/zR2f1.gif&quot; alt=&quot;Chrome 
Developer tools - profiling&quot; /&gt;&lt;/p&gt;
+
+&lt;p&gt;Articles (like &lt;a 
href=&quot;http://aerotwist.com/blog/my-performance-audit-workflow/&quot;&gt;this&lt;/a&gt;
 and &lt;a 
href=&quot;http://calendar.perfplanet.com/2013/the-runtime-performance-checklist/&quot;&gt;this&lt;/a&gt;)
 articulate the typical workflow for auditing performance of webpages. Similar 
principles can be applied to apps too. &lt;!--more--&gt;&lt;/p&gt;
+
+&lt;h1 id=&quot;automating_performance_measurements&quot;&gt;Automating 
Performance measurements&lt;/h1&gt;
+
+&lt;p&gt;With rapid development and release cycles of apps, it becomes hard to 
do regular performance audits. Automating the process with tools would ensure 
that we have a handle on the performance of the app.&lt;/p&gt;
+
+&lt;p&gt;&lt;a 
href=&quot;http://npmjs.org/package/browser-perf&quot;&gt;browser-perf&lt;/a&gt;
 is a NodeJS based tool picks up data from browser developer tools and converts 
them to key performance indicators. It is based on Chromium’s performance 
test suite called &lt;a 
href=&quot;http://www.chromium.org/developers/telemetry&quot;&gt;telemetry&lt;/a&gt;
 and supports iOS and Android based Cordova apps. All metrics are recorded 
while mimicking typical user interactions.&lt;/p&gt;
+
+&lt;h2 id=&quot;testing_ios_apps&quot;&gt;Testing iOS Apps&lt;/h2&gt;
+
+&lt;p&gt;To start testing your Cordova app for iOS, you would need to 
&lt;code&gt;npm install&lt;/code&gt; &lt;a 
href=&quot;http://appium.io/&quot;&gt;Appium&lt;/a&gt; and &lt;a 
href=&quot;http://appium.io/getting-started.html?lang=en&quot;&gt;set it 
up&lt;/a&gt;. Appium is a tool to automate your app and emulate user 
interactions like clicking buttons or typing in the app. Ensure that the app is 
built at least once and the emulator is running.&lt;/p&gt;
+
+&lt;p&gt;You can then use the following NodeJS snippet to run a simple test. 
In the example, a value is typed entered into a text box, and a button is 
clicked.&lt;/p&gt;
+
+&lt;pre&gt;&lt;code&gt;var browserPerf = 
require(&amp;#39;browser-perf&amp;#39;);
+browserPerf(undefined, function(err, res) {
+    if (err) {
+        console.log(&amp;#39;An error occured&amp;#39;);
+    } else {
+        console.log(&amp;#39;Result is &amp;#39;, res);
+    }
+}, {
+    selenium: &amp;quot;http://localhost:4723/wd/hub&amp;quot;,
+    browsers: [{
+        platformName: &amp;quot;iOS&amp;quot;,
+        platformVersion: &amp;quot;8.0&amp;quot;,
+        deviceName: &amp;quot;iPhone Simulator&amp;quot;,
+        app: 
&amp;quot;~/cordovaapp/platforms/ios/build/emulator/HelloCordova.app&amp;quot;,
+        bundleId: &amp;quot;io.cordova.hellocordova&amp;quot;,
+        autoWebview: true
+    }],
+    log: console.log.bind(console),
+    actions: [
+        function(browser) {
+            return 
browser.elementById(&amp;#39;count&amp;#39;).then(function(el) {
+                el.type(1000);
+            }).then(function() {
+                return browser.elementById(&amp;#39;checkout&amp;#39;);
+            }).then(function(el) {
+                return el.click();
+            });
+        }
+    ]
+});&lt;/code&gt;&lt;/pre&gt;
+
+&lt;p&gt;Additional user interactions can be used instead of typing and 
clicking by following the guide on &lt;a 
href=&quot;https://github.com/axemclion/browser-perf/wiki/Node-Module---API#actions&quot;&gt;this
 page&lt;/a&gt;.&lt;/p&gt;
+
+&lt;p&gt;The &lt;a 
href=&quot;https://www.youtube.com/watch?v=TG_eTe_H-s4&quot;&gt;video 
below&lt;/a&gt; illustrates the steps. Note that in the video, the config file 
does not specify any action. Hence, the default action scrolls the page and 
records the metrics.&lt;/p&gt;
+
+&lt;p&gt;&lt;a 
href=&quot;https://www.youtube.com/watch?v=TG_eTe_H-s4&quot;&gt;&lt;img 
src=&quot;http://img.youtube.com/vi/TG_eTe_H-s4/0.jpg&quot; alt=&quot;Video of 
steps to run perf tests in Cordova&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
+
+&lt;h2 id=&quot;testing_android_apps&quot;&gt;Testing Android Apps&lt;/h2&gt;
+
+&lt;p&gt;Testing Android apps is very similar to testing iOS Apps. The only 
difference would be the use of &lt;a 
href=&quot;https://sites.google.com/a/chromium.org/chromedriver/&quot;&gt;ChromeDriver&lt;/a&gt;
 instead of Appium. Consequently, the configuration would look something like 
&lt;a 
href=&quot;https://github.com/axemclion/browser-perf/blob/master/test/res/android-hybrid.config.json&quot;&gt;this&lt;/a&gt;.&lt;/p&gt;
+
+&lt;p&gt;Additional details about setting up the test environment can be found 
&lt;a 
href=&quot;https://github.com/axemclion/browser-perf/wiki/Setup-Instructions#testing-mobile-cordova-webviewhybrid-applications&quot;&gt;here&lt;/a&gt;,
 with reference for browser-perf in the &lt;a 
href=&quot;https://github.com/axemclion/browser-perf/wiki/Node-Module---API&quot;&gt;wiki
 pages&lt;/a&gt;.&lt;/p&gt;
+
+&lt;h1 id=&quot;finishing_touches&quot;&gt;Finishing touches&lt;/h1&gt;
+
+&lt;p&gt;browser-perf can record a plethora of metrics ranging from frame 
rates, to count of expensive paints or expensive events that could cause jank. 
Each of these metrics indicates how a CSS transform or an onscroll handler may 
have changed the performance of the app. Recording this data over time can give 
better insight into how each code change affects the smooth experience. The 
&lt;code&gt;res&lt;/code&gt; object in browser-perf callback from the example 
snippet above can be saved to a database and graphed. For example, &lt;a 
href=&quot;http://npmjs.org/package/perfjankie&quot;&gt;Perfjankie&lt;/a&gt; 
works on top of browser-perf, stores the results in a CouchDB database, and 
displays the results&lt;/p&gt;
+
+&lt;h1 id=&quot;summary&quot;&gt;Summary&lt;/h1&gt;
+
+&lt;p&gt;In this article, we saw how to measure the rendering performance of 
Cordova apps. With the tools described, you can ensure that your apps are just 
as good as native apps are supposed to be.&lt;/p&gt;
+
+&lt;blockquote&gt;
+&lt;p&gt;If you would like to run this for your Cordova app, please &lt;a 
href=&quot;http://twitter.com/nparashuram&quot;&gt;contact me&lt;/a&gt;, and I 
would be glad to help you to get started or check out this &lt;a 
href=&quot;http://blog.nparashuram.com/2014/10/measuring-rendering-performance-metrics.html&quot;&gt;related
 blog post&lt;/a&gt;.&lt;/p&gt;
+&lt;/blockquote&gt;
+</description>
+                
<link>http://cordova.apache.org/blog/2014/11/18/cordova-perf.html</link>
+                
<guid>http://cordova.apache.org/blog/2014/11/18/cordova-perf</guid>
+                <pubDate>Tue, 18 Nov 2014</pubDate>
+        </item>
+
+        <item>
                 <title>Tools Release: November 13, 2014</title>
-                <description>&lt;p&gt;New versions of cordova tools are now 
live!&lt;/p&gt;
+                <description>
+&lt;p&gt;New versions of cordova tools are now live!&lt;/p&gt;
 
 &lt;ul&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://www.npmjs.org/package/cordova-lib&quot;&gt;[email protected]&lt;/a&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://www.npmjs.org/package/cordova&quot;&gt;[email protected]&lt;/a&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://www.npmjs.org/package/plugman&quot;&gt;[email protected]&lt;/a&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://www.npmjs.org/package/cordova-js&quot;&gt;[email protected]&lt;/a&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://www.npmjs.org/package/cordova-lib&quot;&gt;[email protected]&lt;/a&gt;&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://www.npmjs.org/package/cordova&quot;&gt;[email protected]&lt;/a&gt;&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://www.npmjs.org/package/plugman&quot;&gt;[email protected]&lt;/a&gt;&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://www.npmjs.org/package/cordova-js&quot;&gt;[email protected]&lt;/a&gt;&lt;/li&gt;
 &lt;/ul&gt;
 
 &lt;p&gt;To update your tools:&lt;/p&gt;
 
 &lt;ul&gt;
-  &lt;li&gt;
-    &lt;p&gt;If you have &lt;code&gt;cordova&lt;/code&gt; installed:&lt;/p&gt;
+&lt;li&gt;
+&lt;p&gt;If you have &lt;code&gt;cordova&lt;/code&gt; installed:&lt;/p&gt;
+
+&lt;pre&gt;&lt;code&gt;npm install -g cordova&lt;/code&gt;&lt;/pre&gt;
+&lt;/li&gt;
 
-    &lt;pre&gt;&lt;code&gt;npm install -g cordova
-&lt;/code&gt;&lt;/pre&gt;
-  &lt;/li&gt;
-  &lt;li&gt;
-    &lt;p&gt;If you have &lt;code&gt;plugman&lt;/code&gt; installed:&lt;/p&gt;
+&lt;li&gt;
+&lt;p&gt;If you have &lt;code&gt;plugman&lt;/code&gt; installed:&lt;/p&gt;
 
-    &lt;pre&gt;&lt;code&gt;npm install -g plugman
-&lt;/code&gt;&lt;/pre&gt;
-  &lt;/li&gt;
+&lt;pre&gt;&lt;code&gt;npm install -g plugman&lt;/code&gt;&lt;/pre&gt;
+&lt;/li&gt;
 &lt;/ul&gt;
 
-&lt;h1 id=&quot;changes-include&quot;&gt;Changes include&lt;/h1&gt;
+&lt;h1 id=&quot;changes_include&quot;&gt;Changes include&lt;/h1&gt;
 &lt;!--more--&gt;
+&lt;h2 id=&quot;platform_updates&quot;&gt;Platform updates&lt;/h2&gt;
 
-&lt;h2 id=&quot;platform-updates&quot;&gt;Platform updates&lt;/h2&gt;
-&lt;p&gt;When adding these platforms to your project, the following versions 
are now used by default.
-These platform versions were released recently, and the tools’ defaults were 
updated:&lt;/p&gt;
-
-&lt;ul&gt;
-  &lt;li&gt;&lt;a 
href=&quot;http://cordova.apache.org/announcements/2014/11/06/cordova-ios-3.7.0.html&quot;&gt;Cordova
 iOS 3.7.0&lt;/a&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;http://cordova.apache.org/announcements/2014/11/06/cordova-wp-windows-3.7.0.html&quot;&gt;Cordova
 WP8 3.7.0&lt;/a&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;strong&gt;Cordova Windows 3.7.1&lt;/strong&gt; - see &lt;a 
href=&quot;http://cordova.apache.org/announcements/2014/11/06/cordova-wp-windows-3.7.0.html&quot;&gt;3.7.0
 release&lt;/a&gt; and the &lt;a 
href=&quot;http://cordova.apache.org/news/2014/11/11/windows-cert.html&quot;&gt;3.7.1
 update&lt;/a&gt; posts&lt;/li&gt;
-&lt;/ul&gt;
-
-&lt;h2 id=&quot;cordova-lib&quot;&gt;cordova-lib&lt;/h2&gt;
-&lt;ul&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7079&quot;&gt;CB-7079&lt;/a&gt;
 Allow special characters and digits in &lt;code&gt;id&lt;/code&gt; when 
publishing to &lt;em&gt;plugins registry&lt;/em&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-8004&quot;&gt;CB-8004&lt;/a&gt;
 Use &lt;strong&gt;Windows 3.7.1&lt;/strong&gt; Release&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7988&quot;&gt;CB-7988&lt;/a&gt;
 Update platform versions for &lt;strong&gt;iOS&lt;/strong&gt;, 
&lt;strong&gt;WP8&lt;/strong&gt; &amp;amp; &lt;strong&gt;Windows&lt;/strong&gt; 
to &lt;strong&gt;3.7.0&lt;/strong&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7846&quot;&gt;CB-7846&lt;/a&gt;
 Fix plugin deletion when a dependent plugin does not exist&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-6992&quot;&gt;CB-6992&lt;/a&gt;
 Fix build issue on &lt;strong&gt;iOS&lt;/strong&gt; when app name contains 
accented characters&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7890&quot;&gt;CB-7890&lt;/a&gt;
 validate file copy operations in 
&lt;strong&gt;plugman&lt;/strong&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7884&quot;&gt;CB-7884&lt;/a&gt;
 moved platform metadata to 
&lt;code&gt;platformsConfig.json&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;Amazon Specific changes: Added support for 
&lt;code&gt;SdkVersion&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;Expose &lt;code&gt;PluginInfo&lt;/code&gt; from 
cordova-lib&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7839&quot;&gt;CB-7839&lt;/a&gt;
 android: Fix &lt;code&gt;versionCode&lt;/code&gt; logic when version is less 
than 3 digits&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7033&quot;&gt;CB-7033&lt;/a&gt;
 Improve &lt;code&gt;cordova platform check&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7311&quot;&gt;CB-7311&lt;/a&gt;
 Fix &lt;strong&gt;Xcode&lt;/strong&gt; project manipulation on 
&lt;strong&gt;Windows&lt;/strong&gt; host&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7820&quot;&gt;CB-7820&lt;/a&gt;
 Make &lt;code&gt;cordova platfrom restore&lt;/code&gt; not stop if a platform 
fails to restore&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7649&quot;&gt;CB-7649&lt;/a&gt;
 Support iPhone 6 Plus Icon in CLI 
&lt;code&gt;config.xml&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7647&quot;&gt;CB-7647&lt;/a&gt;
 Support new iPhone 6 and 6 Plus Images in the CLI config.xml&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7909&quot;&gt;CB-7909&lt;/a&gt;
 &lt;code&gt;plugman platform add&lt;/code&gt; fixes&lt;/li&gt;
-  &lt;li&gt;Enable platform-specific id for 
&lt;strong&gt;Android&lt;/strong&gt; and 
&lt;strong&gt;iOS&lt;/strong&gt;&lt;/li&gt;
-  &lt;li&gt;Check for a &lt;code&gt;CORDOVA_HOME&lt;/code&gt; environment 
variable to create a global config path&lt;/li&gt;
+&lt;p&gt;When adding these platforms to your project, the following versions 
are now used by default. These platform versions were released recently, and 
the tools’ defaults were updated:&lt;/p&gt;
+
+&lt;ul&gt;
+&lt;li&gt;&lt;a 
href=&quot;http://cordova.apache.org/announcements/2014/11/06/cordova-ios-3.7.0.html&quot;&gt;Cordova
 iOS 3.7.0&lt;/a&gt;&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;http://cordova.apache.org/announcements/2014/11/06/cordova-wp-windows-3.7.0.html&quot;&gt;Cordova
 WP8 3.7.0&lt;/a&gt;&lt;/li&gt;
+
+&lt;li&gt;&lt;strong&gt;Cordova Windows 3.7.1&lt;/strong&gt; - see &lt;a 
href=&quot;http://cordova.apache.org/announcements/2014/11/06/cordova-wp-windows-3.7.0.html&quot;&gt;3.7.0
 release&lt;/a&gt; and the &lt;a 
href=&quot;http://cordova.apache.org/news/2014/11/11/windows-cert.html&quot;&gt;3.7.1
 update&lt;/a&gt; posts&lt;/li&gt;
 &lt;/ul&gt;
 
-&lt;h2 id=&quot;cordova&quot;&gt;cordova&lt;/h2&gt;
+&lt;h2 id=&quot;cordovalib&quot;&gt;cordova-lib&lt;/h2&gt;
+
 &lt;ul&gt;
-  &lt;li&gt;Expose cordova-lib and the cli from cordova-cli&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7636&quot;&gt;CB-7636&lt;/a&gt;
 Allow using &lt;code&gt;--nobuild&lt;/code&gt; flag without 
screening&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7079&quot;&gt;CB-7079&lt;/a&gt;
 Allow special characters and digits in &lt;code&gt;id&lt;/code&gt; when 
publishing to &lt;em&gt;plugins registry&lt;/em&gt;&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-8004&quot;&gt;CB-8004&lt;/a&gt;
 Use &lt;strong&gt;Windows 3.7.1&lt;/strong&gt; Release&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7988&quot;&gt;CB-7988&lt;/a&gt;
 Update platform versions for &lt;strong&gt;iOS&lt;/strong&gt;, 
&lt;strong&gt;WP8&lt;/strong&gt; &amp;amp; &lt;strong&gt;Windows&lt;/strong&gt; 
to &lt;strong&gt;3.7.0&lt;/strong&gt;&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7846&quot;&gt;CB-7846&lt;/a&gt;
 Fix plugin deletion when a dependent plugin does not exist&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-6992&quot;&gt;CB-6992&lt;/a&gt;
 Fix build issue on &lt;strong&gt;iOS&lt;/strong&gt; when app name contains 
accented characters&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7890&quot;&gt;CB-7890&lt;/a&gt;
 validate file copy operations in 
&lt;strong&gt;plugman&lt;/strong&gt;&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7884&quot;&gt;CB-7884&lt;/a&gt;
 moved platform metadata to 
&lt;code&gt;platformsConfig.json&lt;/code&gt;&lt;/li&gt;
+
+&lt;li&gt;Amazon Specific changes: Added support for 
&lt;code&gt;SdkVersion&lt;/code&gt;&lt;/li&gt;
+
+&lt;li&gt;Expose &lt;code&gt;PluginInfo&lt;/code&gt; from 
cordova-lib&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7839&quot;&gt;CB-7839&lt;/a&gt;
 android: Fix &lt;code&gt;versionCode&lt;/code&gt; logic when version is less 
than 3 digits&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7033&quot;&gt;CB-7033&lt;/a&gt;
 Improve &lt;code&gt;cordova platform check&lt;/code&gt;&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7311&quot;&gt;CB-7311&lt;/a&gt;
 Fix &lt;strong&gt;Xcode&lt;/strong&gt; project manipulation on 
&lt;strong&gt;Windows&lt;/strong&gt; host&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7820&quot;&gt;CB-7820&lt;/a&gt;
 Make &lt;code&gt;cordova platfrom restore&lt;/code&gt; not stop if a platform 
fails to restore&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7649&quot;&gt;CB-7649&lt;/a&gt;
 Support iPhone 6 Plus Icon in CLI 
&lt;code&gt;config.xml&lt;/code&gt;&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7647&quot;&gt;CB-7647&lt;/a&gt;
 Support new iPhone 6 and 6 Plus Images in the CLI config.xml&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7909&quot;&gt;CB-7909&lt;/a&gt;
 &lt;code&gt;plugman platform add&lt;/code&gt; fixes&lt;/li&gt;
+
+&lt;li&gt;Enable platform-specific id for &lt;strong&gt;Android&lt;/strong&gt; 
and &lt;strong&gt;iOS&lt;/strong&gt;&lt;/li&gt;
+
+&lt;li&gt;Check for a &lt;code&gt;CORDOVA_HOME&lt;/code&gt; environment 
variable to create a global config path&lt;/li&gt;
 &lt;/ul&gt;
 
-&lt;h2 id=&quot;cordova-js&quot;&gt;cordova-js&lt;/h2&gt;
+&lt;h2 id=&quot;cordova&quot;&gt;cordova&lt;/h2&gt;
+
 &lt;ul&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7868&quot;&gt;CB-7868&lt;/a&gt;
 Make &lt;code&gt;&amp;lt;clobbers&amp;gt;&lt;/code&gt; on 
&lt;code&gt;navigator&lt;/code&gt; not break on some versions of 
&lt;strong&gt;Android&lt;/strong&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7868&quot;&gt;CB-7868&lt;/a&gt;
 Use &lt;code&gt;utils.defineGetterSetter&lt;/code&gt; instead of 
&lt;code&gt;Object.defineProperty&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;Upleveled &lt;strong&gt;amazon-fireos&lt;/strong&gt; 
bridge&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7735&quot;&gt;CB-7735&lt;/a&gt;
 Fix &lt;strong&gt;iOS&lt;/strong&gt; bridge race condition when using 
&lt;code&gt;innerHTML&lt;/code&gt; on 
&lt;code&gt;&amp;lt;body&amp;gt;&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-2520&quot;&gt;CB-2520&lt;/a&gt;
 User agent-related changes for custom user agents in 
&lt;strong&gt;iOS&lt;/strong&gt;&lt;/li&gt;
+&lt;li&gt;Expose cordova-lib and the cli from cordova-cli&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7636&quot;&gt;CB-7636&lt;/a&gt;
 Allow using &lt;code&gt;--nobuild&lt;/code&gt; flag without 
screening&lt;/li&gt;
 &lt;/ul&gt;
 
+&lt;h2 id=&quot;cordovajs&quot;&gt;cordova-js&lt;/h2&gt;
+
+&lt;ul&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7868&quot;&gt;CB-7868&lt;/a&gt;
 Make &lt;code&gt;&amp;lt;clobbers&amp;gt;&lt;/code&gt; on 
&lt;code&gt;navigator&lt;/code&gt; not break on some versions of 
&lt;strong&gt;Android&lt;/strong&gt;&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7868&quot;&gt;CB-7868&lt;/a&gt;
 Use &lt;code&gt;utils.defineGetterSetter&lt;/code&gt; instead of 
&lt;code&gt;Object.defineProperty&lt;/code&gt;&lt;/li&gt;
+
+&lt;li&gt;Upleveled &lt;strong&gt;amazon-fireos&lt;/strong&gt; 
bridge&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7735&quot;&gt;CB-7735&lt;/a&gt;
 Fix &lt;strong&gt;iOS&lt;/strong&gt; bridge race condition when using 
&lt;code&gt;innerHTML&lt;/code&gt; on 
&lt;code&gt;&amp;lt;body&amp;gt;&lt;/code&gt;&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-2520&quot;&gt;CB-2520&lt;/a&gt;
 User agent-related changes for custom user agents in 
&lt;strong&gt;iOS&lt;/strong&gt;&lt;/li&gt;
+&lt;/ul&gt;
 </description>
                 
<link>http://cordova.apache.org/news/2014/11/13/tools-release.html</link>
                 
<guid>http://cordova.apache.org/news/2014/11/13/tools-release</guid>
@@ -104,19 +217,20 @@ These platform versions were released re
 
         <item>
                 <title>Critical Update: Windows 3.7.1. Release</title>
-                <description>&lt;p&gt;A certificate in the 
&lt;strong&gt;Windows&lt;/strong&gt; platform template has expired on 
11/11/2014 and as a result, building &lt;strong&gt;Windows&lt;/strong&gt; using 
the &lt;strong&gt;Cordova CLI&lt;/strong&gt; currently fails. This affects all 
existing projects and any new projects created using the command line prior to 
&lt;strong&gt;Cordova&lt;/strong&gt; versions &amp;lt;= 
&lt;code&gt;4.0.0&lt;/code&gt;. &lt;/p&gt;
+                <description>
+&lt;p&gt;A certificate in the &lt;strong&gt;Windows&lt;/strong&gt; platform 
template has expired on 11/11/2014 and as a result, building 
&lt;strong&gt;Windows&lt;/strong&gt; using the &lt;strong&gt;Cordova 
CLI&lt;/strong&gt; currently fails. This affects all existing projects and any 
new projects created using the command line prior to 
&lt;strong&gt;Cordova&lt;/strong&gt; versions &amp;lt;= 
&lt;code&gt;4.0.0&lt;/code&gt;.&lt;/p&gt;
 
 &lt;blockquote&gt;
-  &lt;p&gt;Note that this does not affect the &lt;strong&gt;WP8&lt;/strong&gt; 
platform.  &lt;/p&gt;
+&lt;p&gt;Note that this does not affect the &lt;strong&gt;WP8&lt;/strong&gt; 
platform.&lt;/p&gt;
 &lt;/blockquote&gt;
 
-&lt;h2 id=&quot;error-message&quot;&gt;Error Message&lt;/h2&gt;
-&lt;p&gt;When building Cordova for &lt;strong&gt;Windows&lt;/strong&gt;, you 
may seen an error message that looks something like this &lt;/p&gt;
+&lt;h2 id=&quot;error_message&quot;&gt;Error Message&lt;/h2&gt;
+
+&lt;p&gt;When building Cordova for &lt;strong&gt;Windows&lt;/strong&gt;, you 
may seen an error message that looks something like this&lt;/p&gt;
 
 &lt;pre&gt;&lt;code&gt;cordova run windows
 
-C:\Program Files 
(x86)\MSBuild\Microsoft\VisualStudio\v12.0\AppxPackage\Microsoft.AppXPackage.Targets(1772,9):
 error APPX0108: The certificate specified has expired. 
-&lt;/code&gt;&lt;/pre&gt;
+C:\Program Files 
(x86)\MSBuild\Microsoft\VisualStudio\v12.0\AppxPackage\Microsoft.AppXPackage.Targets(1772,9):
 error APPX0108: The certificate specified has expired. 
&lt;/code&gt;&lt;/pre&gt;
 
 &lt;p&gt;For more information about renewing certificates, see &lt;a 
href=&quot;http://go.microsoft.com/fwlink/?LinkID=241478&quot;&gt;http://go.microsoft.com/fwlink/?LinkID=241478&lt;/a&gt;.&lt;/p&gt;
 
@@ -126,10 +240,11 @@ C:\Program Files (x86)\MSBuild\Microsoft
 
 &lt;p&gt;However, to ensure that you can continue building your existing 
&lt;strong&gt;Cordova&lt;/strong&gt; projects for 
&lt;strong&gt;Windows&lt;/strong&gt; till then, please replace the expired 
certificate located at 
&lt;code&gt;yourCordovaProject\platforms\windows\CordovaApp_TemporaryKey.pfx&lt;/code&gt;
 with a new one from &lt;a 
href=&quot;https://git-wip-us.apache.org/repos/asf?p=cordova-windows.git;a=blob;f=template/CordovaApp_TemporaryKey.pfx;h=90d7ab2208ce170d176a2ac8a60eb22fbc1cbf7a;hb=refs/tags/3.7.1&quot;&gt;here&lt;/a&gt;.
 Ensure that the downloaded file is renamed to 
&lt;code&gt;CordovaApp_TemporaryKey.pfx&lt;/code&gt;&lt;/p&gt;
 
-&lt;p&gt;You can also remove the &lt;strong&gt;Windows&lt;/strong&gt; platform 
using &lt;code&gt;cordova platform remove windows&lt;/code&gt; and add it 
again, specifiying a version like &lt;code&gt;cordova platform add 
[email protected]&lt;/code&gt;. This picks up the latest release of the 
&lt;strong&gt;Windows&lt;/strong&gt; platform that has a newer certificate.  
&lt;/p&gt;
+&lt;p&gt;You can also remove the &lt;strong&gt;Windows&lt;/strong&gt; platform 
using &lt;code&gt;cordova platform remove windows&lt;/code&gt; and add it 
again, specifiying a version like &lt;code&gt;cordova platform add 
[email protected]&lt;/code&gt;. This picks up the latest release of the 
&lt;strong&gt;Windows&lt;/strong&gt; platform that has a newer 
certificate.&lt;/p&gt;
 
-&lt;h2 id=&quot;long-term-fix&quot;&gt;Long term fix&lt;/h2&gt;
-&lt;p&gt;We are working on a long term fix to generate this certificate 
dynamically. This way, the certificates are not checked into 
&lt;strong&gt;Cordova&lt;/strong&gt; repositories and will not expire. 
&lt;/p&gt;
+&lt;h2 id=&quot;long_term_fix&quot;&gt;Long term fix&lt;/h2&gt;
+
+&lt;p&gt;We are working on a long term fix to generate this certificate 
dynamically. This way, the certificates are not checked into 
&lt;strong&gt;Cordova&lt;/strong&gt; repositories and will not expire.&lt;/p&gt;
 </description>
                 
<link>http://cordova.apache.org/news/2014/11/11/windows-cert.html</link>
                 
<guid>http://cordova.apache.org/news/2014/11/11/windows-cert</guid>
@@ -138,7 +253,8 @@ C:\Program Files (x86)\MSBuild\Microsoft
 
         <item>
                 <title>Apache Cordova Windows & Windows Phone 3.7.0</title>
-                <description>&lt;p&gt;We are happy to announce that 
&lt;code&gt;Cordova Windows &amp;amp; WP8 3.7.0&lt;/code&gt; has been 
released!&lt;/p&gt;
+                <description>
+&lt;p&gt;We are happy to announce that &lt;code&gt;Cordova Windows &amp;amp; 
WP8 3.7.0&lt;/code&gt; has been released!&lt;/p&gt;
 
 &lt;p&gt;This release has various bug fixes.&lt;/p&gt;
 
@@ -148,49 +264,65 @@ C:\Program Files (x86)\MSBuild\Microsoft
 
 &lt;pre&gt;&lt;code&gt;npm install -g cordova
 cd my_project
-cordova platform update windows
-&lt;/code&gt;&lt;/pre&gt;
+cordova platform update windows&lt;/code&gt;&lt;/pre&gt;
 
 &lt;p&gt;To add it explicitly (available now):&lt;/p&gt;
 
 &lt;pre&gt;&lt;code&gt;cordova platform add [email protected]
-cordova platform add [email protected]
-&lt;/code&gt;&lt;/pre&gt;
+cordova platform add [email protected]&lt;/code&gt;&lt;/pre&gt;
 
 &lt;p&gt;For non-CLI projects or for pre-3.0 projects, refer to the &lt;a 
href=&quot;http://cordova.apache.org/docs/en/edge/guide_platforms_index.md.html&quot;&gt;upgrade
 guides&lt;/a&gt;.&lt;/p&gt;
-
 &lt;!--more--&gt;
+&lt;h2 id=&quot;whats_new_in_windows&quot;&gt;What’s new in 
Windows&lt;/h2&gt;
+
+&lt;ul&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7731&quot;&gt;CB-7731&lt;/a&gt;
 Catch cli missing args error&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7493&quot;&gt;CB-7493&lt;/a&gt;
 Adds &lt;code&gt;space-in-path&lt;/code&gt; and &lt;code&gt;unicode in 
name&lt;/code&gt; tests for CI&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7656&quot;&gt;CB-7656&lt;/a&gt;
 Fixes &lt;code&gt;list-devices&lt;/code&gt; and 
&lt;code&gt;list-emulators&lt;/code&gt; commands&lt;/li&gt;
+
+&lt;li&gt;Fixes &lt;code&gt;msbuild&lt;/code&gt; failure after 
&lt;strong&gt;Windows&lt;/strong&gt; project creation&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7617&quot;&gt;CB-7617&lt;/a&gt;
 Add partial match support for &lt;code&gt;--target&lt;/code&gt;&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7666&quot;&gt;CB-7666&lt;/a&gt;
 Merge &lt;code&gt;node_modules&lt;/code&gt; and move to package root&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7666&quot;&gt;CB-7666&lt;/a&gt;
 Move stuff outside of &lt;strong&gt;Windows&lt;/strong&gt; subdir&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7617&quot;&gt;CB-7617&lt;/a&gt;
 Deploy on WP8.1 incorrectly handles &lt;code&gt;--target&lt;/code&gt; 
name&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7601&quot;&gt;CB-7601&lt;/a&gt;
 Build fails due to capabilities with m: prefixes are incorrectly 
sorted&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7520&quot;&gt;CB-7520&lt;/a&gt;
 copy MRT images defined in config.xml&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7520&quot;&gt;CB-7520&lt;/a&gt;
 &lt;code&gt;.appxbundle&lt;/code&gt; package format support&lt;/li&gt;
 
-&lt;h2 id=&quot;whats-new-in-windows&quot;&gt;What’s new in 
Windows&lt;/h2&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7520&quot;&gt;CB-7520&lt;/a&gt;
 Refine image names, use wildcard to include MRT images&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7494&quot;&gt;CB-7494&lt;/a&gt;
 Fixes wrong replacements in &lt;code&gt;*.appxmanifest&lt;/code&gt; 
files&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7452&quot;&gt;CB-7452&lt;/a&gt;
 Rewrite &lt;code&gt;ApplyPlatformConfig.ps1&lt;/code&gt; using 
&lt;strong&gt;NodeJS&lt;/strong&gt;&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7377&quot;&gt;CB-7377&lt;/a&gt;
 Removes unnecessary rules tracing which is also incorrectly handled by 
&lt;strong&gt;PS&lt;/strong&gt;&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;h2 id=&quot;whats_new_in_wp8&quot;&gt;What’s new in WP8&lt;/h2&gt;
 
 &lt;ul&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7731&quot;&gt;CB-7731&lt;/a&gt;
 Catch cli missing args error&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7493&quot;&gt;CB-7493&lt;/a&gt;
 Adds &lt;code&gt;space-in-path&lt;/code&gt; and &lt;code&gt;unicode in 
name&lt;/code&gt; tests for CI&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7656&quot;&gt;CB-7656&lt;/a&gt;
 Fixes &lt;code&gt;list-devices&lt;/code&gt; and 
&lt;code&gt;list-emulators&lt;/code&gt; commands&lt;/li&gt;
-  &lt;li&gt;Fixes &lt;code&gt;msbuild&lt;/code&gt; failure after 
&lt;strong&gt;Windows&lt;/strong&gt; project creation&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7617&quot;&gt;CB-7617&lt;/a&gt;
 Add partial match support for &lt;code&gt;--target&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7666&quot;&gt;CB-7666&lt;/a&gt;
 Merge &lt;code&gt;node_modules&lt;/code&gt; and move to package root&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7666&quot;&gt;CB-7666&lt;/a&gt;
 Move stuff outside of &lt;strong&gt;Windows&lt;/strong&gt; subdir&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7617&quot;&gt;CB-7617&lt;/a&gt;
 Deploy on WP8.1 incorrectly handles &lt;code&gt;--target&lt;/code&gt; 
name&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7601&quot;&gt;CB-7601&lt;/a&gt;
 Build fails due to capabilities with m: prefixes are incorrectly 
sorted&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7520&quot;&gt;CB-7520&lt;/a&gt;
 copy MRT images defined in config.xml&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7520&quot;&gt;CB-7520&lt;/a&gt;
 &lt;code&gt;.appxbundle&lt;/code&gt; package format support&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7520&quot;&gt;CB-7520&lt;/a&gt;
 Refine image names, use wildcard to include MRT images&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7494&quot;&gt;CB-7494&lt;/a&gt;
 Fixes wrong replacements in &lt;code&gt;*.appxmanifest&lt;/code&gt; 
files&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7452&quot;&gt;CB-7452&lt;/a&gt;
 Rewrite &lt;code&gt;ApplyPlatformConfig.ps1&lt;/code&gt; using 
&lt;strong&gt;NodeJS&lt;/strong&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7377&quot;&gt;CB-7377&lt;/a&gt;
 Removes unnecessary rules tracing which is also incorrectly handled by 
&lt;strong&gt;PS&lt;/strong&gt;&lt;/li&gt;
-&lt;/ul&gt;
-
-&lt;h2 id=&quot;whats-new-in-wp8&quot;&gt;What’s new in WP8&lt;/h2&gt;
-
-&lt;ul&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7843&quot;&gt;CB-7843&lt;/a&gt;
 Fix angular routing on &lt;strong&gt;WP8&lt;/strong&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7616&quot;&gt;CB-7616&lt;/a&gt;
 Add partial match support for &lt;code&gt;--target&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;Let &lt;code&gt;CordovaView&lt;/code&gt; respect 
&lt;code&gt;DisallowOverscroll&lt;/code&gt; preference&lt;/li&gt;
-  &lt;li&gt;Optionally supress inertia scrolling&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7618&quot;&gt;CB-7618&lt;/a&gt;
 Fix &lt;strong&gt;WP8&lt;/strong&gt; build due to missing 
&lt;code&gt;node_modules&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7616&quot;&gt;CB-7616&lt;/a&gt;
 Deploy on &lt;strong&gt;WP8&lt;/strong&gt; fails to run specific 
target&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7493&quot;&gt;CB-7493&lt;/a&gt;
 Adds &lt;code&gt;space-in-path&lt;/code&gt; and &lt;code&gt;unicode in 
name&lt;/code&gt; tests for &lt;code&gt;CI&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7843&quot;&gt;CB-7843&lt;/a&gt;
 Fix angular routing on &lt;strong&gt;WP8&lt;/strong&gt;&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7616&quot;&gt;CB-7616&lt;/a&gt;
 Add partial match support for &lt;code&gt;--target&lt;/code&gt;&lt;/li&gt;
+
+&lt;li&gt;Let &lt;code&gt;CordovaView&lt;/code&gt; respect 
&lt;code&gt;DisallowOverscroll&lt;/code&gt; preference&lt;/li&gt;
+
+&lt;li&gt;Optionally supress inertia scrolling&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7618&quot;&gt;CB-7618&lt;/a&gt;
 Fix &lt;strong&gt;WP8&lt;/strong&gt; build due to missing 
&lt;code&gt;node_modules&lt;/code&gt;&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7616&quot;&gt;CB-7616&lt;/a&gt;
 Deploy on &lt;strong&gt;WP8&lt;/strong&gt; fails to run specific 
target&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7493&quot;&gt;CB-7493&lt;/a&gt;
 Adds &lt;code&gt;space-in-path&lt;/code&gt; and &lt;code&gt;unicode in 
name&lt;/code&gt; tests for &lt;code&gt;CI&lt;/code&gt;&lt;/li&gt;
 &lt;/ul&gt;
 </description>
                 
<link>http://cordova.apache.org/announcements/2014/11/06/cordova-wp-windows-3.7.0.html</link>
@@ -200,64 +332,91 @@ cordova platform add [email protected]
 
         <item>
                 <title>Apache Cordova iOS 3.7.0</title>
-                <description>&lt;p&gt;We are happy to announce that 
&lt;code&gt;Cordova iOS 3.7.0&lt;/code&gt; has been released!&lt;/p&gt;
+                <description>
+&lt;p&gt;We are happy to announce that &lt;code&gt;Cordova iOS 
3.7.0&lt;/code&gt; has been released!&lt;/p&gt;
 
-&lt;p&gt;This release has various bug fixes, and will be the default iOS 
version when the cordova-cli 4.1.0 is released.
-This release also requires Xcode 6.&lt;/p&gt;
+&lt;p&gt;This release has various bug fixes, and will be the default iOS 
version when the cordova-cli 4.1.0 is released. This release also requires 
Xcode 6.&lt;/p&gt;
 
 &lt;p&gt;To upgrade:&lt;/p&gt;
 
 &lt;pre&gt;&lt;code&gt;npm install -g cordova
 cd my_project
-cordova platform update ios
-&lt;/code&gt;&lt;/pre&gt;
+cordova platform update ios&lt;/code&gt;&lt;/pre&gt;
 
 &lt;p&gt;To add it explicitly:&lt;/p&gt;
 
-&lt;pre&gt;&lt;code&gt;cordova platform add [email protected]
-&lt;/code&gt;&lt;/pre&gt;
+&lt;pre&gt;&lt;code&gt;cordova platform add [email protected]&lt;/code&gt;&lt;/pre&gt;
 
 &lt;p&gt;For non-CLI projects or for pre-3.0 projects, refer to the &lt;a 
href=&quot;http://cordova.apache.org/docs/en/edge/guide_platforms_index.md.html&quot;&gt;upgrade
 guides&lt;/a&gt;.&lt;/p&gt;
-
 &lt;!--more--&gt;
-
-&lt;h2 id=&quot;whats-new-in-ios&quot;&gt;What’s new in iOS&lt;/h2&gt;
+&lt;h2 id=&quot;whats_new_in_ios&quot;&gt;What’s new in iOS&lt;/h2&gt;
 
 &lt;ul&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-6510&quot;&gt;CB-6510&lt;/a&gt;
 Support for &lt;code&gt;ErrorUrl&lt;/code&gt; preference&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7857&quot;&gt;CB-7857&lt;/a&gt;
 Load &lt;code&gt;appURL&lt;/code&gt; after plugins have loaded&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7606&quot;&gt;CB-7606&lt;/a&gt;
 &lt;code&gt;handleOpenURL&lt;/code&gt; handler firing more than 
necessary&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7597&quot;&gt;CB-7597&lt;/a&gt;
 &lt;code&gt;Localizable.strings&lt;/code&gt; for Media Capture are in the 
default template, it should be in the plugin&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7818&quot;&gt;CB-7818&lt;/a&gt;
 CLI builds ignore Distribution certificates&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7813&quot;&gt;CB-7813&lt;/a&gt;
 &lt;code&gt;CDVWebViewDelegate&lt;/code&gt; fails to update the webview state 
properly&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7643&quot;&gt;CB-7643&lt;/a&gt;
 Made &lt;code&gt;isValidCallbackId&lt;/code&gt; threadsafe&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-2520&quot;&gt;CB-2520&lt;/a&gt;
 Built interim js from cordova-js for custom user agent support&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-2520&quot;&gt;CB-2520&lt;/a&gt;
 “original” user agent needs to be overridable&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7777&quot;&gt;CB-7777&lt;/a&gt;
 In &lt;code&gt;AppDelegate&lt;/code&gt;, before calling 
&lt;code&gt;handleOpenURL&lt;/code&gt; check whether it exists first to prevent 
exceptions&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7775&quot;&gt;CB-7775&lt;/a&gt;
 Add &lt;code&gt;component.json&lt;/code&gt; for component and duo package 
managers&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7493&quot;&gt;CB-7493&lt;/a&gt;
 Adds &lt;code&gt;test-build&lt;/code&gt; command to package.json&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7630&quot;&gt;CB-7630&lt;/a&gt;
 Deprecate &lt;code&gt;CDV_IsIPhone5&lt;/code&gt; and 
&lt;code&gt;CDV_IsIPad&lt;/code&gt; macro in 
&lt;code&gt;CDVAvailability.h&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7727&quot;&gt;CB-7727&lt;/a&gt;
 Add resolution part to &lt;strong&gt;backup to icloud&lt;/strong&gt; warning 
message
-because screen size is now orientation dependent&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7560&quot;&gt;CB-7560&lt;/a&gt;
 &lt;code&gt;tel:&lt;/code&gt; and &lt;code&gt;mailto:&lt;/code&gt; links 
don’t work in &lt;code&gt;&amp;lt;iframe&amp;gt;&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7502&quot;&gt;CB-7502&lt;/a&gt;
 Default template is missing 
&lt;code&gt;CFBundleShortVersionString&lt;/code&gt; key in 
&lt;code&gt;Info.plist&lt;/code&gt;, prevents &lt;strong&gt;iTunes 
Connect&lt;/strong&gt; submission&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7546&quot;&gt;CB-7546&lt;/a&gt;
 &lt;strong&gt;Contacts&lt;/strong&gt; Prevent exception when index is out of 
range&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7648&quot;&gt;CB-7648&lt;/a&gt;
 &lt;strong&gt;iOS 8&lt;/strong&gt; Add &lt;strong&gt;iPhone 6 
Plus&lt;/strong&gt; icon to default template&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7632&quot;&gt;CB-7632&lt;/a&gt;
 &lt;strong&gt;iOS 8&lt;/strong&gt; Add launch image definitions to 
&lt;code&gt;Info.plist&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7631&quot;&gt;CB-7631&lt;/a&gt;
 &lt;strong&gt;iOS 8&lt;/strong&gt; &lt;code&gt;CDVUrlProtocol&lt;/code&gt; - 
the &lt;code&gt;NSHttpUrlResponse&lt;/code&gt; is not initialized with the 
&lt;code&gt;statuscode&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7596&quot;&gt;CB-7596&lt;/a&gt;
 &lt;strong&gt;iOS 8&lt;/strong&gt; &lt;code&gt;CDV_IsIPhone5()&lt;/code&gt; 
Macro needs to be updated * &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7882&quot;&gt;CB-7882&lt;/a&gt;
 &lt;code&gt;viewDidUnload&lt;/code&gt; instance method is missing 
&lt;code&gt;[super viewDidUnload]&lt;/code&gt; call&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7872&quot;&gt;CB-7872&lt;/a&gt;
 &lt;strong&gt;XCode 6.1&lt;/strong&gt;’s &lt;code&gt;xcrun&lt;/code&gt; 
&lt;code&gt;PackageApplication&lt;/code&gt; fails at packaging / resigning 
Cordova applications&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7729&quot;&gt;CB-7729&lt;/a&gt;
 &lt;strong&gt;Xcode 6&lt;/strong&gt; Support &lt;code&gt;ios-sim&lt;/code&gt; 
&lt;strong&gt;3.0&lt;/strong&gt; and new targets (&lt;strong&gt;iPhone 
6/6+&lt;/strong&gt;)&lt;/li&gt;
-  &lt;li&gt;&lt;strong&gt;Xcode 6&lt;/strong&gt; Fix 
&lt;code&gt;cordova/lib/list-started-emulators&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;Add &lt;code&gt;ios-sim&lt;/code&gt; version check 
&lt;strong&gt;3.0&lt;/strong&gt; to 
&lt;code&gt;cordova/lib/list-emulator-images&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;Fix &lt;code&gt;cordova/lib/install-emulator&lt;/code&gt; to pass 
in the correct prefix for &lt;code&gt;ios-sim 
--devicetypeid&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;Remove non-working applescript to start emulator, use 
&lt;code&gt;Instruments&lt;/code&gt; to start &lt;strong&gt;iOS 
Simulator&lt;/strong&gt; now.&lt;/li&gt;
-  &lt;li&gt;Add support for the &lt;strong&gt;iPod&lt;/strong&gt; in 
&lt;code&gt;cordova/lib/list-devices&lt;/code&gt; script.&lt;/li&gt;
-  &lt;li&gt;Remove &lt;code&gt;Valid values for --target&lt;/code&gt; in 
script headers. Use &lt;code&gt;cordova/lib/list-emulator-images&lt;/code&gt; 
to get the list.&lt;/li&gt;
-  &lt;li&gt;Update &lt;code&gt;cordova/lib/list-emulator-images&lt;/code&gt; 
for &lt;code&gt;ios-sim&lt;/code&gt; &lt;strong&gt;3.0&lt;/strong&gt;&lt;/li&gt;
-  &lt;li&gt;Increment &lt;code&gt;ios-deploy&lt;/code&gt; min version to 
&lt;strong&gt;1.2.0&lt;/strong&gt; and &lt;code&gt;ios-sim&lt;/code&gt; min 
version to &lt;strong&gt;3.0&lt;/strong&gt;&lt;/li&gt;
-  &lt;li&gt;Updated &lt;code&gt;cordova/build&lt;/code&gt; script to use 
specific &lt;code&gt;SHARED_PRECOMPS_DIR&lt;/code&gt; variable.&lt;/li&gt;
-  &lt;li&gt;Update &lt;code&gt;.gitignore&lt;/code&gt; to not ignore 
&lt;code&gt;.xcworkspace&lt;/code&gt; files&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-6510&quot;&gt;CB-6510&lt;/a&gt;
 Support for &lt;code&gt;ErrorUrl&lt;/code&gt; preference&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7857&quot;&gt;CB-7857&lt;/a&gt;
 Load &lt;code&gt;appURL&lt;/code&gt; after plugins have loaded&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7606&quot;&gt;CB-7606&lt;/a&gt;
 &lt;code&gt;handleOpenURL&lt;/code&gt; handler firing more than 
necessary&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7597&quot;&gt;CB-7597&lt;/a&gt;
 &lt;code&gt;Localizable.strings&lt;/code&gt; for Media Capture are in the 
default template, it should be in the plugin&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7818&quot;&gt;CB-7818&lt;/a&gt;
 CLI builds ignore Distribution certificates&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7813&quot;&gt;CB-7813&lt;/a&gt;
 &lt;code&gt;CDVWebViewDelegate&lt;/code&gt; fails to update the webview state 
properly&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7643&quot;&gt;CB-7643&lt;/a&gt;
 Made &lt;code&gt;isValidCallbackId&lt;/code&gt; threadsafe&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-2520&quot;&gt;CB-2520&lt;/a&gt;
 Built interim js from cordova-js for custom user agent support&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-2520&quot;&gt;CB-2520&lt;/a&gt;
 “original” user agent needs to be overridable&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7777&quot;&gt;CB-7777&lt;/a&gt;
 In &lt;code&gt;AppDelegate&lt;/code&gt;, before calling 
&lt;code&gt;handleOpenURL&lt;/code&gt; check whether it exists first to prevent 
exceptions&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7775&quot;&gt;CB-7775&lt;/a&gt;
 Add &lt;code&gt;component.json&lt;/code&gt; for component and duo package 
managers&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7493&quot;&gt;CB-7493&lt;/a&gt;
 Adds &lt;code&gt;test-build&lt;/code&gt; command to package.json&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7630&quot;&gt;CB-7630&lt;/a&gt;
 Deprecate &lt;code&gt;CDV_IsIPhone5&lt;/code&gt; and 
&lt;code&gt;CDV_IsIPad&lt;/code&gt; macro in 
&lt;code&gt;CDVAvailability.h&lt;/code&gt;&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7727&quot;&gt;CB-7727&lt;/a&gt;
 Add resolution part to &lt;strong&gt;backup to icloud&lt;/strong&gt; warning 
message because screen size is now orientation dependent&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7560&quot;&gt;CB-7560&lt;/a&gt;
 &lt;code&gt;tel:&lt;/code&gt; and &lt;code&gt;mailto:&lt;/code&gt; links 
don’t work in &lt;code&gt;&amp;lt;iframe&amp;gt;&lt;/code&gt;&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7502&quot;&gt;CB-7502&lt;/a&gt;
 Default template is missing 
&lt;code&gt;CFBundleShortVersionString&lt;/code&gt; key in 
&lt;code&gt;Info.plist&lt;/code&gt;, prevents &lt;strong&gt;iTunes 
Connect&lt;/strong&gt; submission&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7546&quot;&gt;CB-7546&lt;/a&gt;
 &lt;strong&gt;Contacts&lt;/strong&gt; Prevent exception when index is out of 
range&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7648&quot;&gt;CB-7648&lt;/a&gt;
 &lt;strong&gt;iOS 8&lt;/strong&gt; Add &lt;strong&gt;iPhone 6 
Plus&lt;/strong&gt; icon to default template&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7632&quot;&gt;CB-7632&lt;/a&gt;
 &lt;strong&gt;iOS 8&lt;/strong&gt; Add launch image definitions to 
&lt;code&gt;Info.plist&lt;/code&gt;&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7631&quot;&gt;CB-7631&lt;/a&gt;
 &lt;strong&gt;iOS 8&lt;/strong&gt; &lt;code&gt;CDVUrlProtocol&lt;/code&gt; - 
the &lt;code&gt;NSHttpUrlResponse&lt;/code&gt; is not initialized with the 
&lt;code&gt;statuscode&lt;/code&gt;&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7596&quot;&gt;CB-7596&lt;/a&gt;
 &lt;strong&gt;iOS 8&lt;/strong&gt; &lt;code&gt;CDV_IsIPhone5()&lt;/code&gt; 
Macro needs to be updated * &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7882&quot;&gt;CB-7882&lt;/a&gt;
 &lt;code&gt;viewDidUnload&lt;/code&gt; instance method is missing 
&lt;code&gt;[super viewDidUnload]&lt;/code&gt; call&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7872&quot;&gt;CB-7872&lt;/a&gt;
 &lt;strong&gt;XCode 6.1&lt;/strong&gt;‘s &lt;code&gt;xcrun&lt;/code&gt; 
&lt;code&gt;PackageApplication&lt;/code&gt; fails at packaging / resigning 
Cordova applications&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7729&quot;&gt;CB-7729&lt;/a&gt;
 &lt;strong&gt;Xcode 6&lt;/strong&gt; Support &lt;code&gt;ios-sim&lt;/code&gt; 
&lt;strong&gt;3.0&lt;/strong&gt; and new targets (&lt;strong&gt;iPhone 
6/6+&lt;/strong&gt;)&lt;/li&gt;
+
+&lt;li&gt;&lt;strong&gt;Xcode 6&lt;/strong&gt; Fix 
&lt;code&gt;cordova/lib/list-started-emulators&lt;/code&gt;&lt;/li&gt;
+
+&lt;li&gt;Add &lt;code&gt;ios-sim&lt;/code&gt; version check 
&lt;strong&gt;3.0&lt;/strong&gt; to 
&lt;code&gt;cordova/lib/list-emulator-images&lt;/code&gt;&lt;/li&gt;
+
+&lt;li&gt;Fix &lt;code&gt;cordova/lib/install-emulator&lt;/code&gt; to pass in 
the correct prefix for &lt;code&gt;ios-sim 
--devicetypeid&lt;/code&gt;&lt;/li&gt;
+
+&lt;li&gt;Remove non-working applescript to start emulator, use 
&lt;code&gt;Instruments&lt;/code&gt; to start &lt;strong&gt;iOS 
Simulator&lt;/strong&gt; now.&lt;/li&gt;
+
+&lt;li&gt;Add support for the &lt;strong&gt;iPod&lt;/strong&gt; in 
&lt;code&gt;cordova/lib/list-devices&lt;/code&gt; script.&lt;/li&gt;
+
+&lt;li&gt;Remove &lt;code&gt;Valid values for --target&lt;/code&gt; in script 
headers. Use &lt;code&gt;cordova/lib/list-emulator-images&lt;/code&gt; to get 
the list.&lt;/li&gt;
+
+&lt;li&gt;Update &lt;code&gt;cordova/lib/list-emulator-images&lt;/code&gt; for 
&lt;code&gt;ios-sim&lt;/code&gt; &lt;strong&gt;3.0&lt;/strong&gt;&lt;/li&gt;
+
+&lt;li&gt;Increment &lt;code&gt;ios-deploy&lt;/code&gt; min version to 
&lt;strong&gt;1.2.0&lt;/strong&gt; and &lt;code&gt;ios-sim&lt;/code&gt; min 
version to &lt;strong&gt;3.0&lt;/strong&gt;&lt;/li&gt;
+
+&lt;li&gt;Updated &lt;code&gt;cordova/build&lt;/code&gt; script to use 
specific &lt;code&gt;SHARED_PRECOMPS_DIR&lt;/code&gt; variable.&lt;/li&gt;
+
+&lt;li&gt;Update &lt;code&gt;.gitignore&lt;/code&gt; to not ignore 
&lt;code&gt;.xcworkspace&lt;/code&gt; files&lt;/li&gt;
 &lt;/ul&gt;
 </description>
                 
<link>http://cordova.apache.org/announcements/2014/11/06/cordova-ios-3.7.0.html</link>
@@ -267,96 +426,149 @@ because screen size is now orientation d
 
         <item>
                 <title>Plugins Release: October 17, 2014</title>
-                <description>&lt;p&gt;The following plugins were updated 
today:&lt;/p&gt;
+                <description>
+&lt;p&gt;The following plugins were updated today:&lt;/p&gt;
 
 &lt;ul&gt;
-  &lt;li&gt;cordova-plugin-camera: 0.3.3&lt;/li&gt;
-  &lt;li&gt;cordova-plugin-contacts: 0.2.14&lt;/li&gt;
-  &lt;li&gt;cordova-plugin-file-transfer: 0.4.7&lt;/li&gt;
-  &lt;li&gt;cordova-plugin-globalization: 0.3.2&lt;/li&gt;
-  &lt;li&gt;cordova-plugin-inappbrowser: 0.5.3&lt;/li&gt;
-  &lt;li&gt;cordova-plugin-media: 0.2.14&lt;/li&gt;
-  &lt;li&gt;cordova-plugin-media-capture: 0.3.4&lt;/li&gt;
-  &lt;li&gt;cordova-plugin-network-information: 0.2.13&lt;/li&gt;
-  &lt;li&gt;cordova-plugin-splashscreen: 0.3.4&lt;/li&gt;
+&lt;li&gt;cordova-plugin-camera: 0.3.3&lt;/li&gt;
+
+&lt;li&gt;cordova-plugin-contacts: 0.2.14&lt;/li&gt;
+
+&lt;li&gt;cordova-plugin-file-transfer: 0.4.7&lt;/li&gt;
+
+&lt;li&gt;cordova-plugin-globalization: 0.3.2&lt;/li&gt;
+
+&lt;li&gt;cordova-plugin-inappbrowser: 0.5.3&lt;/li&gt;
+
+&lt;li&gt;cordova-plugin-media: 0.2.14&lt;/li&gt;
+
+&lt;li&gt;cordova-plugin-media-capture: 0.3.4&lt;/li&gt;
+
+&lt;li&gt;cordova-plugin-network-information: 0.2.13&lt;/li&gt;
+
+&lt;li&gt;cordova-plugin-splashscreen: 0.3.4&lt;/li&gt;
 &lt;/ul&gt;
 
 &lt;p&gt;Notable changes include:&lt;/p&gt;
 
 &lt;ul&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7633&quot;&gt;CB-7633&lt;/a&gt;
 - Add &lt;code&gt;iPhone 6/6+&lt;/code&gt; support for 
&lt;code&gt;cordova-splashscreen&lt;/code&gt; plugin&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7595&quot;&gt;CB-7595&lt;/a&gt;:
 &lt;strong&gt;Android L&lt;/strong&gt; changes the type from 
&lt;code&gt;Mobile&lt;/code&gt; to &lt;code&gt;Cellular&lt;/code&gt; for 
&lt;code&gt;cordova-network-information&lt;/code&gt; plugin.&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7429&quot;&gt;CB-7429&lt;/a&gt;
 Added &lt;strong&gt;Windows&lt;/strong&gt; support for 
&lt;code&gt;cordova-media-capture&lt;/code&gt; plugin &lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7548&quot;&gt;CB-7548&lt;/a&gt;
 &lt;strong&gt;BlackBerry10&lt;/strong&gt; Re-implement 
&lt;code&gt;getPreferredLanguage()&lt;/code&gt; and 
&lt;code&gt;getLocaleName()&lt;/code&gt; for 
&lt;code&gt;cordova-globalization&lt;/code&gt; plugin.&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7529&quot;&gt;CB-7529&lt;/a&gt;
 &lt;strong&gt;Windows&lt;/strong&gt; Adds support for &lt;code&gt;ms-appdata 
URIs&lt;/code&gt; for &lt;code&gt;cordova-file-transfer&lt;/code&gt; plugin 
&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7633&quot;&gt;CB-7633&lt;/a&gt;
 - Add &lt;code&gt;iPhone 6/6+&lt;/code&gt; support for 
&lt;code&gt;cordova-splashscreen&lt;/code&gt; plugin&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7595&quot;&gt;CB-7595&lt;/a&gt;:
 &lt;strong&gt;Android L&lt;/strong&gt; changes the type from 
&lt;code&gt;Mobile&lt;/code&gt; to &lt;code&gt;Cellular&lt;/code&gt; for 
&lt;code&gt;cordova-network-information&lt;/code&gt; plugin.&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7429&quot;&gt;CB-7429&lt;/a&gt;
 Added &lt;strong&gt;Windows&lt;/strong&gt; support for 
&lt;code&gt;cordova-media-capture&lt;/code&gt; plugin&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7548&quot;&gt;CB-7548&lt;/a&gt;
 &lt;strong&gt;BlackBerry10&lt;/strong&gt; Re-implement 
&lt;code&gt;getPreferredLanguage()&lt;/code&gt; and 
&lt;code&gt;getLocaleName()&lt;/code&gt; for 
&lt;code&gt;cordova-globalization&lt;/code&gt; plugin.&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7529&quot;&gt;CB-7529&lt;/a&gt;
 &lt;strong&gt;Windows&lt;/strong&gt; Adds support for &lt;code&gt;ms-appdata 
URIs&lt;/code&gt; for &lt;code&gt;cordova-file-transfer&lt;/code&gt; 
plugin&lt;/li&gt;
 &lt;/ul&gt;
 
 &lt;p&gt;The plugins have been updated on our registry at &lt;a 
href=&quot;http://plugins.cordova.io/&quot;&gt;plugins.cordova.io&lt;/a&gt;.&lt;/p&gt;
-
 &lt;hr /&gt;
 &lt;p&gt;You can update any plugin by removing it, and then readding it. E.g. 
To update your camera plugin:&lt;/p&gt;
 
 &lt;pre&gt;&lt;code&gt;cordova plugin rm org.apache.cordova.camera
-cordova plugin add org.apache.cordova.camera
-&lt;/code&gt;&lt;/pre&gt;
+cordova plugin add org.apache.cordova.camera&lt;/code&gt;&lt;/pre&gt;
+
+&lt;p&gt;Other changes include: &lt;!--more--&gt;&lt;/p&gt;
+
+&lt;p&gt;&lt;code&gt;[email protected]&lt;/code&gt; * &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7600&quot;&gt;CB-7600&lt;/a&gt;
 Adds informative message to error callback in manual test.&lt;/p&gt;
+
+&lt;p&gt;&lt;code&gt;[email protected]&lt;/code&gt;&lt;/p&gt;
+
+&lt;ul&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7373&quot;&gt;CB-7373&lt;/a&gt;
 Removes unnecessary Error object creation&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7373&quot;&gt;CB-7373&lt;/a&gt;
 Adds additional output if method is not supported.&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7357&quot;&gt;CB-7357&lt;/a&gt;
 Adds missing &lt;code&gt;capability&lt;/code&gt; element to phone’s 
&lt;code&gt;appxmanifest&lt;/code&gt;.&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;p&gt;&lt;code&gt;[email protected]&lt;/code&gt;&lt;/p&gt;
+
+&lt;ul&gt;
+&lt;li&gt;Construct proper &lt;code&gt;FileEntry&lt;/code&gt; with 
&lt;code&gt;nativeURL&lt;/code&gt; property set&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7532&quot;&gt;CB-7532&lt;/a&gt;
 Handle non-existent download dirs properly&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7529&quot;&gt;CB-7529&lt;/a&gt;
 Adds support for &lt;code&gt;ms-appdata URIs&lt;/code&gt; for 
&lt;strong&gt;Windows&lt;/strong&gt;&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;p&gt;&lt;code&gt;[email protected]&lt;/code&gt; * 
&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7548&quot;&gt;CB-7548&lt;/a&gt;
 &lt;strong&gt;BlackBerry10&lt;/strong&gt; Re-implement 
&lt;code&gt;getPreferredLanguage()&lt;/code&gt; and 
&lt;code&gt;getLocaleName()&lt;/code&gt;.&lt;/p&gt;
+
+&lt;p&gt;&lt;code&gt;[email protected]&lt;/code&gt;&lt;/p&gt;
+
+&lt;ul&gt;
+&lt;li&gt;&lt;strong&gt;Windows&lt;/strong&gt; implementation fixes and 
improvements&lt;/li&gt;
+
+&lt;li&gt;&lt;code&gt;zIndex&lt;/code&gt; fixed&lt;/li&gt;
+
+&lt;li&gt;renamed &lt;code&gt;InAppBrowser&lt;/code&gt; back to 
&lt;code&gt;inappbrowser&lt;/code&gt; for case sensitive operating 
systems&lt;/li&gt;
+
+&lt;li&gt;Update french translation&lt;/li&gt;
+
+&lt;li&gt;Update doc to add &lt;strong&gt;Windows 8&lt;/strong&gt;&lt;/li&gt;
 
-&lt;p&gt;Other changes include:
-&lt;!--more--&gt;&lt;/p&gt;
+&lt;li&gt;Update &lt;strong&gt;Windows&lt;/strong&gt; 
&lt;code&gt;proxy&lt;/code&gt; to be both compatible with &lt;strong&gt;Windows 
8&lt;/strong&gt; and &lt;strong&gt;Windows 8.1&lt;/strong&gt;&lt;/li&gt;
 
-&lt;p&gt;&lt;code&gt;[email protected]&lt;/code&gt;
-* &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7600&quot;&gt;CB-7600&lt;/a&gt;
 Adds informative message to error callback in manual test.&lt;/p&gt;
+&lt;li&gt;Rename &lt;strong&gt;Windows 8.1&lt;/strong&gt; to 
&lt;strong&gt;windows8&lt;/strong&gt; in &lt;code&gt;src&lt;/code&gt; 
directory&lt;/li&gt;
 
-&lt;p&gt;&lt;code&gt;[email protected]&lt;/code&gt;
-* &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7373&quot;&gt;CB-7373&lt;/a&gt;
 Removes unnecessary Error object creation
-* &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7373&quot;&gt;CB-7373&lt;/a&gt;
 Adds additional output if method is not supported.
-* &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7357&quot;&gt;CB-7357&lt;/a&gt;
 Adds missing &lt;code&gt;capability&lt;/code&gt; element to phone’s 
&lt;code&gt;appxmanifest&lt;/code&gt;.&lt;/p&gt;
-
-&lt;p&gt;&lt;code&gt;[email protected]&lt;/code&gt;
-* Construct proper &lt;code&gt;FileEntry&lt;/code&gt; with 
&lt;code&gt;nativeURL&lt;/code&gt; property set
-* &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7532&quot;&gt;CB-7532&lt;/a&gt;
 Handle non-existent download dirs properly
-* &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7529&quot;&gt;CB-7529&lt;/a&gt;
 Adds support for &lt;code&gt;ms-appdata URIs&lt;/code&gt; for 
&lt;strong&gt;Windows&lt;/strong&gt;&lt;/p&gt;
-
-&lt;p&gt;&lt;code&gt;[email protected]&lt;/code&gt;
-* &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7548&quot;&gt;CB-7548&lt;/a&gt;
 &lt;strong&gt;BlackBerry10&lt;/strong&gt; Re-implement 
&lt;code&gt;getPreferredLanguage()&lt;/code&gt; and 
&lt;code&gt;getLocaleName()&lt;/code&gt;.&lt;/p&gt;
-
-&lt;p&gt;&lt;code&gt;[email protected]&lt;/code&gt;
-* &lt;strong&gt;Windows&lt;/strong&gt; implementation fixes and improvements
-* &lt;code&gt;zIndex&lt;/code&gt; fixed
-* renamed &lt;code&gt;InAppBrowser&lt;/code&gt; back to 
&lt;code&gt;inappbrowser&lt;/code&gt; for case sensitive operating systems
-* Update french translation
-* Update doc to add &lt;strong&gt;Windows 8&lt;/strong&gt;
-* Update &lt;strong&gt;Windows&lt;/strong&gt; &lt;code&gt;proxy&lt;/code&gt; 
to be both compatible with &lt;strong&gt;Windows 8&lt;/strong&gt; and 
&lt;strong&gt;Windows 8.1&lt;/strong&gt;
-* Rename &lt;strong&gt;Windows 8.1&lt;/strong&gt; to 
&lt;strong&gt;windows8&lt;/strong&gt; in &lt;code&gt;src&lt;/code&gt; directory
-* Append &lt;strong&gt;Windows 8.1&lt;/strong&gt; platform configuration in 
&lt;code&gt;plugin.xml&lt;/code&gt;
-* Append &lt;strong&gt;Windows 8.1&lt;/strong&gt; proxy using 
&lt;code&gt;x-ms-webview&lt;/code&gt;&lt;/p&gt;
-
-&lt;p&gt;&lt;code&gt;[email protected]&lt;/code&gt;
-* &lt;strong&gt;Amazon&lt;/strong&gt; Specific changes: Added 
&lt;code&gt;READ_PHONE_STATE&lt;/code&gt; permission same as done in 
&lt;strong&gt;Android&lt;/strong&gt;
-* make possible to play &lt;code&gt;wav&lt;/code&gt; files
-* &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7638&quot;&gt;CB-7638&lt;/a&gt;
 Get audio duration properly on &lt;strong&gt;Windows&lt;/strong&gt;
-* &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7454&quot;&gt;CB-7454&lt;/a&gt;
 Adds support for &lt;code&gt;m4a&lt;/code&gt; audio format for 
&lt;strong&gt;Windows&lt;/strong&gt;
-* &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7547&quot;&gt;CB-7547&lt;/a&gt;
 Fixes audio recording on &lt;strong&gt;Windows&lt;/strong&gt; platform
-* &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7531&quot;&gt;CB-7531&lt;/a&gt;
 Fixes &lt;code&gt;play()&lt;/code&gt; failure after 
&lt;code&gt;release()&lt;/code&gt; call&lt;/p&gt;
-
-&lt;p&gt;&lt;code&gt;[email protected]&lt;/code&gt;
-* &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7453&quot;&gt;CB-7453&lt;/a&gt;
 Adds fallback to &lt;code&gt;m4a&lt;/code&gt; audio format when 
&lt;code&gt;mp3&lt;/code&gt; recording fails.
-* &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7429&quot;&gt;CB-7429&lt;/a&gt;
 Fixes image capture manual tests on &lt;strong&gt;Windows&lt;/strong&gt;
-* &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7429&quot;&gt;CB-7429&lt;/a&gt;
 Move &lt;strong&gt;Windows 8&lt;/strong&gt; and 
&lt;strong&gt;Windows&lt;/strong&gt; &lt;code&gt;Proxies&lt;/code&gt; into one 
&lt;code&gt;file&lt;/code&gt;
-* &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7429&quot;&gt;CB-7429&lt;/a&gt;
 Adds &lt;code&gt;media capture&lt;/code&gt; support for 
&lt;strong&gt;Windows&lt;/strong&gt;&lt;/p&gt;
-
-&lt;p&gt;&lt;code&gt;[email protected]&lt;/code&gt;
-* &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7595&quot;&gt;CB-7595&lt;/a&gt;:
 &lt;strong&gt;Android L&lt;/strong&gt; changes the type from 
&lt;code&gt;Mobile&lt;/code&gt; to &lt;code&gt;Cellular&lt;/code&gt;, I’m 
pretty sure this isn’t documented&lt;/p&gt;
-
-&lt;p&gt;&lt;code&gt;[email protected]&lt;/code&gt;
-* Finalized &lt;strong&gt;iOS&lt;/strong&gt; splash screen (image name) tests. 
176 tests in all, 44 for each type of device (&lt;code&gt;iPad&lt;/code&gt;, 
&lt;code&gt;iPhone&lt;/code&gt;, &lt;code&gt;iPhone5&lt;/code&gt;, 
&lt;code&gt;iPhone6&lt;/code&gt;, &lt;code&gt;iPhone 6 Plus&lt;/code&gt;).
-* &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7633&quot;&gt;CB-7633&lt;/a&gt;
 - (Re-fix based on updated unit tests) &lt;code&gt;iPhone 6&lt;/code&gt; Plus 
support
-* Updated &lt;strong&gt;iOS&lt;/strong&gt; tests for locked orientations
-* Added more &lt;strong&gt;iOS&lt;/strong&gt; splash screen tests.
-* &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7633&quot;&gt;CB-7633&lt;/a&gt;
 - Add support for &lt;code&gt;iPhone 6/6+&lt;/code&gt;
-* Added failing &lt;code&gt;iPhone 6/6&lt;/code&gt; Plus tests.
-* Added &lt;code&gt;npm test&lt;/code&gt;
-* &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7663&quot;&gt;CB-7663&lt;/a&gt;
 - &lt;strong&gt;iOS&lt;/strong&gt; unit tests for splash screen
-* Properly formatted splashscreen preference docs.&lt;/p&gt;
+&lt;li&gt;Append &lt;strong&gt;Windows 8.1&lt;/strong&gt; platform 
configuration in &lt;code&gt;plugin.xml&lt;/code&gt;&lt;/li&gt;
+
+&lt;li&gt;Append &lt;strong&gt;Windows 8.1&lt;/strong&gt; proxy using 
&lt;code&gt;x-ms-webview&lt;/code&gt;&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;p&gt;&lt;code&gt;[email protected]&lt;/code&gt;&lt;/p&gt;
+
+&lt;ul&gt;
+&lt;li&gt;&lt;strong&gt;Amazon&lt;/strong&gt; Specific changes: Added 
&lt;code&gt;READ_PHONE_STATE&lt;/code&gt; permission same as done in 
&lt;strong&gt;Android&lt;/strong&gt;&lt;/li&gt;
+
+&lt;li&gt;make possible to play &lt;code&gt;wav&lt;/code&gt; files&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7638&quot;&gt;CB-7638&lt;/a&gt;
 Get audio duration properly on &lt;strong&gt;Windows&lt;/strong&gt;&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7454&quot;&gt;CB-7454&lt;/a&gt;
 Adds support for &lt;code&gt;m4a&lt;/code&gt; audio format for 
&lt;strong&gt;Windows&lt;/strong&gt;&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7547&quot;&gt;CB-7547&lt;/a&gt;
 Fixes audio recording on &lt;strong&gt;Windows&lt;/strong&gt; 
platform&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7531&quot;&gt;CB-7531&lt;/a&gt;
 Fixes &lt;code&gt;play()&lt;/code&gt; failure after 
&lt;code&gt;release()&lt;/code&gt; call&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;p&gt;&lt;code&gt;[email protected]&lt;/code&gt;&lt;/p&gt;
+
+&lt;ul&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7453&quot;&gt;CB-7453&lt;/a&gt;
 Adds fallback to &lt;code&gt;m4a&lt;/code&gt; audio format when 
&lt;code&gt;mp3&lt;/code&gt; recording fails.&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7429&quot;&gt;CB-7429&lt;/a&gt;
 Fixes image capture manual tests on 
&lt;strong&gt;Windows&lt;/strong&gt;&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7429&quot;&gt;CB-7429&lt;/a&gt;
 Move &lt;strong&gt;Windows 8&lt;/strong&gt; and 
&lt;strong&gt;Windows&lt;/strong&gt; &lt;code&gt;Proxies&lt;/code&gt; into one 
&lt;code&gt;file&lt;/code&gt;&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7429&quot;&gt;CB-7429&lt;/a&gt;
 Adds &lt;code&gt;media capture&lt;/code&gt; support for 
&lt;strong&gt;Windows&lt;/strong&gt;&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;p&gt;&lt;code&gt;[email protected]&lt;/code&gt;
 * &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7595&quot;&gt;CB-7595&lt;/a&gt;:
 &lt;strong&gt;Android L&lt;/strong&gt; changes the type from 
&lt;code&gt;Mobile&lt;/code&gt; to &lt;code&gt;Cellular&lt;/code&gt;, I’m 
pretty sure this isn’t documented&lt;/p&gt;
+
+&lt;p&gt;&lt;code&gt;[email protected]&lt;/code&gt;&lt;/p&gt;
+
+&lt;ul&gt;
+&lt;li&gt;Finalized &lt;strong&gt;iOS&lt;/strong&gt; splash screen (image 
name) tests. 176 tests in all, 44 for each type of device 
(&lt;code&gt;iPad&lt;/code&gt;, &lt;code&gt;iPhone&lt;/code&gt;, 
&lt;code&gt;iPhone5&lt;/code&gt;, &lt;code&gt;iPhone6&lt;/code&gt;, 
&lt;code&gt;iPhone 6 Plus&lt;/code&gt;).&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7633&quot;&gt;CB-7633&lt;/a&gt;
 - (Re-fix based on updated unit tests) &lt;code&gt;iPhone 6&lt;/code&gt; Plus 
support&lt;/li&gt;
+
+&lt;li&gt;Updated &lt;strong&gt;iOS&lt;/strong&gt; tests for locked 
orientations&lt;/li&gt;
+
+&lt;li&gt;Added more &lt;strong&gt;iOS&lt;/strong&gt; splash screen 
tests.&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7633&quot;&gt;CB-7633&lt;/a&gt;
 - Add support for &lt;code&gt;iPhone 6/6+&lt;/code&gt;&lt;/li&gt;
+
+&lt;li&gt;Added failing &lt;code&gt;iPhone 6/6&lt;/code&gt; Plus 
tests.&lt;/li&gt;
+
+&lt;li&gt;Added &lt;code&gt;npm test&lt;/code&gt;&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7663&quot;&gt;CB-7663&lt;/a&gt;
 - &lt;strong&gt;iOS&lt;/strong&gt; unit tests for splash screen&lt;/li&gt;
+
+&lt;li&gt;Properly formatted splashscreen preference docs.&lt;/li&gt;
+&lt;/ul&gt;
 </description>
                 
<link>http://cordova.apache.org/news/2014/10/17/plugins-release.html</link>
                 
<guid>http://cordova.apache.org/news/2014/10/17/plugins-release</guid>
@@ -365,3439 +577,5297 @@ cordova plugin add org.apache.cordova.ca
 
         <item>
                 <title>Apache Cordova CLI 4.0 Release</title>
-                <description>&lt;p&gt;We are happy to announce that 
&lt;code&gt;Apache Cordova CLI 4.0&lt;/code&gt; has been released!&lt;/p&gt;
+                <description>
+&lt;p&gt;We are happy to announce that &lt;code&gt;Apache Cordova CLI 
4.0&lt;/code&gt; has been released!&lt;/p&gt;
 
 &lt;p&gt;We have also released &lt;code&gt;Cordova-Browser 3.6.0&lt;/code&gt;, 
&lt;code&gt;Cordova-Android 3.6.4&lt;/code&gt;, &lt;code&gt;Cordova-Windows 
3.6.4&lt;/code&gt;, and &lt;code&gt;Cordova-WP8 3.6.4&lt;/code&gt;.&lt;/p&gt;
 
 &lt;p&gt;Most notable changes include:&lt;/p&gt;
 
 &lt;ul&gt;
-  &lt;li&gt;&lt;strong&gt;Cordova CLI&lt;/strong&gt; version bump to 
&lt;code&gt;4.0.0&lt;/code&gt; to reflect our changes in &lt;a 
href=&quot;https://github.com/apache/cordova-coho/blob/master/docs/versioning-and-release-strategy.md&quot;&gt;release
 policy&lt;/a&gt;.&lt;/li&gt;
-  &lt;li&gt;&lt;strong&gt;WP8&lt;/strong&gt; and 
&lt;strong&gt;Windows&lt;/strong&gt; both implemented support for 
&lt;code&gt;--target&lt;/code&gt; flag&lt;/li&gt;
-  &lt;li&gt;Initial support for &lt;strong&gt;Cordova-Browser&lt;/strong&gt; 
platform.&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-5390&quot;&gt;CB-5390&lt;/a&gt;
 Uninstall - recursively remove dependencies of dependencies&lt;/li&gt;
+&lt;li&gt;&lt;strong&gt;Cordova CLI&lt;/strong&gt; version bump to 
&lt;code&gt;4.0.0&lt;/code&gt; to reflect our changes in &lt;a 
href=&quot;https://github.com/apache/cordova-coho/blob/master/docs/versioning-and-release-strategy.md&quot;&gt;release
 policy&lt;/a&gt;.&lt;/li&gt;
+
+&lt;li&gt;&lt;strong&gt;WP8&lt;/strong&gt; and 
&lt;strong&gt;Windows&lt;/strong&gt; both implemented support for 
&lt;code&gt;--target&lt;/code&gt; flag&lt;/li&gt;
+
+&lt;li&gt;Initial support for &lt;strong&gt;Cordova-Browser&lt;/strong&gt; 
platform.&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-5390&quot;&gt;CB-5390&lt;/a&gt;
 Uninstall - recursively remove dependencies of dependencies&lt;/li&gt;
 &lt;/ul&gt;
 
 &lt;p&gt;To upgrade: (replace &lt;code&gt;android&lt;/code&gt; with the 
platform you want to update):&lt;/p&gt;
 
 &lt;pre&gt;&lt;code&gt;npm install -g cordova
 cd my_project
-cordova platform update android
-&lt;/code&gt;&lt;/pre&gt;
+cordova platform update android&lt;/code&gt;&lt;/pre&gt;
 
 &lt;p&gt;For non-CLI projects or for pre-3.0 projects, refer to the &lt;a 
href=&quot;http://cordova.apache.org/docs/en/4.0.0/guide_platforms_index.md.html&quot;&gt;upgrade
 guides&lt;/a&gt;.&lt;/p&gt;
 
-&lt;h2 id=&quot;cordova-cli-bumped-to-version-40&quot;&gt;Cordova CLI bumped 
to version 4.0&lt;/h2&gt;
+&lt;h2 id=&quot;cordova_cli_bumped_to_version_40&quot;&gt;Cordova CLI bumped 
to version 4.0&lt;/h2&gt;
 
-&lt;p&gt;We have recently decided to update our release process to include 
independent releases for platforms. This means that our platform maintainers 
can release updates when they need to and not have to wait for other platforms 
to be ready to release.  &lt;/p&gt;
+&lt;p&gt;We have recently decided to update our release process to include 
independent releases for platforms. This means that our platform maintainers 
can release updates when they need to and not have to wait for other platforms 
to be ready to release.&lt;/p&gt;
 
 &lt;p&gt;Users should expect more frequent releases with bug fixes and new 
features. Users can always view what versions of platforms they are using in a 
cordova project with the &lt;code&gt;cordova platform list&lt;/code&gt; 
command. Users workflow is exactly the same and updating existing projects 
should not be an issue.&lt;/p&gt;
 
-&lt;p&gt;Our &lt;a 
href=&quot;http://cordova.apache.org/docs/en/edge/index.html&quot;&gt;docs&lt;/a&gt;
 will be released alongside our &lt;strong&gt;CLI&lt;/strong&gt;. &lt;/p&gt;
+&lt;p&gt;Our &lt;a 
href=&quot;http://cordova.apache.org/docs/en/edge/index.html&quot;&gt;docs&lt;/a&gt;
 will be released alongside our &lt;strong&gt;CLI&lt;/strong&gt;.&lt;/p&gt;
 
 &lt;p&gt;The &lt;strong&gt;CLI&lt;/strong&gt; is released with a set of 
default platforms pinned. For instance, this release of 
&lt;strong&gt;Cordova-CLI&lt;/strong&gt; will include 
&lt;strong&gt;[email protected]&lt;/strong&gt; pinned by default. This 
means that when you type &lt;code&gt;cordova platform add android&lt;/code&gt;, 
it will fetch and install version &lt;code&gt;3.6.4&lt;/code&gt; into your 
project. It is also very simple to install a different version of a platform 
for a project if you wish by specifying the version of the platform when you 
are adding. Ex. &lt;code&gt;cordova platform add [email protected]&lt;/code&gt;. Of 
course we always recommend using the latest release when possible.&lt;/p&gt;
 
-&lt;p&gt;In this release, all of our platforms are still in the 3.6.x range in 
terms of versions. Expect this to change as we do more releases. &lt;/p&gt;
+&lt;p&gt;In this release, all of our platforms are still in the 3.6.x range in 
terms of versions. Expect this to change as we do more releases.&lt;/p&gt;
 
 &lt;p&gt;You can read more about our new versioning strategy at &lt;a 
href=&quot;https://github.com/apache/cordova-coho/blob/master/docs/versioning-and-release-strategy.md&quot;&gt;https://github.com/apache/cordova-coho/blob/master/docs/versioning-and-release-strategy.md&lt;/a&gt;.&lt;/p&gt;
 
-&lt;h2 id=&quot;new-platform-cordova-browser&quot;&gt;New Platform: Cordova 
Browser&lt;/h2&gt;
+&lt;h2 id=&quot;new_platform_cordova_browser&quot;&gt;New Platform: Cordova 
Browser&lt;/h2&gt;
 
 &lt;p&gt;We have just released &lt;strong&gt;Browser&lt;/strong&gt; as a 
platform. Add it to your projects with &lt;code&gt;cordova platform add 
browser&lt;/code&gt;. This feature is intended for development purposes. We are 
working on adding &lt;strong&gt;browser&lt;/strong&gt; support to our core 
plugins. &lt;a href=&quot;https://twitter.com/raymondcamden&quot;&gt;Ray 
Camden&lt;/a&gt; has put together detailed blog post outlining which plugins we 
currently support at &lt;a 
href=&quot;http://www.raymondcamden.com/2014/9/24/Browser-as-a-platform-for-your-PhoneGapCordova-apps&quot;&gt;http://www.raymondcamden.com/2014/9/24/Browser-as-a-platform-for-your-PhoneGapCordova-apps&lt;/a&gt;.&lt;/p&gt;
 
 &lt;p&gt;Please file any issues and feature requests in our &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB/&quot;&gt;issue 
tracker&lt;/a&gt;. Make sure to fill in the component field as 
&lt;code&gt;browser&lt;/code&gt;.&lt;/p&gt;
 
-&lt;h2 id=&quot;whats-new-in-android&quot;&gt;What’s new in 
Android&lt;/h2&gt;
+&lt;h2 id=&quot;whats_new_in_android&quot;&gt;What’s new in 
Android&lt;/h2&gt;
 &lt;!--more--&gt;
-
 &lt;ul&gt;
-  &lt;li&gt;Update JS snapshot to version 
&lt;code&gt;3.6.4&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7634&quot;&gt;CB-7634&lt;/a&gt;
 Detect &lt;code&gt;JAVA_HOME&lt;/code&gt; properly on 
&lt;strong&gt;Ubuntu&lt;/strong&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7579&quot;&gt;CB-7579&lt;/a&gt;
 Fix &lt;code&gt;run&lt;/code&gt; script’s ability to use non-arch-specific 
&lt;code&gt;APKs&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-6511&quot;&gt;CB-6511&lt;/a&gt;
 Fixes build for &lt;strong&gt;Android&lt;/strong&gt; when app name contains 
unicode characters.&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7460&quot;&gt;CB-7460&lt;/a&gt;
 Fixing bug with &lt;code&gt;KitKat&lt;/code&gt; where the background colour 
would override the CSS colours on the application&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7674&quot;&gt;CB-7674&lt;/a&gt;
 Preference activation no longer occurs in 
&lt;code&gt;CordovaActivity.onCreate()&lt;/code&gt;&lt;/li&gt;
-&lt;/ul&gt;
+&lt;li&gt;Update JS snapshot to version 
&lt;code&gt;3.6.4&lt;/code&gt;&lt;/li&gt;
 
-&lt;h2 id=&quot;whats-new-in-windows-phone-8&quot;&gt;What’s new in Windows 
Phone 8&lt;/h2&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7634&quot;&gt;CB-7634&lt;/a&gt;
 Detect &lt;code&gt;JAVA_HOME&lt;/code&gt; properly on 
&lt;strong&gt;Ubuntu&lt;/strong&gt;&lt;/li&gt;
 
-&lt;ul&gt;
-  &lt;li&gt;Updated JS snapshot to version 
&lt;code&gt;3.6.4&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7616&quot;&gt;CB-7616&lt;/a&gt;
 partial match support for &lt;code&gt;--target&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;Fixing paths for &lt;code&gt;npm&lt;/code&gt; published 
versions&lt;/li&gt;
-  &lt;li&gt;move &lt;code&gt;node_modules&lt;/code&gt; up to same level as 
&lt;code&gt;package.json&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7455&quot;&gt;CB-7455&lt;/a&gt;
 add &lt;code&gt;bundledDependencies&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;Moves &lt;code&gt;node_modules&lt;/code&gt; from package root to 
bin/ folder&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7444&quot;&gt;CB-7444&lt;/a&gt;
 Fixes &lt;code&gt;XHR&lt;/code&gt; callback failure when requested file 
doesn’t exists&lt;/li&gt;
-&lt;/ul&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7579&quot;&gt;CB-7579&lt;/a&gt;
 Fix &lt;code&gt;run&lt;/code&gt; script’s ability to use non-arch-specific 
&lt;code&gt;APKs&lt;/code&gt;&lt;/li&gt;
 
-&lt;h2 id=&quot;whats-new-in-windows&quot;&gt;What’s new in 
Windows&lt;/h2&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-6511&quot;&gt;CB-6511&lt;/a&gt;
 Fixes build for &lt;strong&gt;Android&lt;/strong&gt; when app name contains 
unicode characters.&lt;/li&gt;
 
-&lt;ul&gt;
-  &lt;li&gt;Update JS snapshot to version 
&lt;code&gt;3.6.4&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7617&quot;&gt;CB-7617&lt;/a&gt;
 partial match support for &lt;code&gt;--target&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;Added &lt;code&gt;bundledDependencies&lt;/code&gt; + fixed some 
whitespace&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7460&quot;&gt;CB-7460&lt;/a&gt;
 Fixing bug with &lt;code&gt;KitKat&lt;/code&gt; where the background colour 
would override the CSS colours on the application&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7674&quot;&gt;CB-7674&lt;/a&gt;
 Preference activation no longer occurs in 
&lt;code&gt;CordovaActivity.onCreate()&lt;/code&gt;&lt;/li&gt;
 &lt;/ul&gt;
 
-&lt;h2 id=&quot;whats-new-in-cordova-browser&quot;&gt;What’s new in 
Cordova-Browser&lt;/h2&gt;
+&lt;h2 id=&quot;whats_new_in_windows_phone_8&quot;&gt;What’s new in Windows 
Phone 8&lt;/h2&gt;
 
 &lt;ul&gt;
-  &lt;li&gt;Update JS snapshot to version 
&lt;code&gt;3.6.0&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;added initial &lt;strong&gt;Windows&lt;/strong&gt; 
&lt;code&gt;run&lt;/code&gt; support&lt;/li&gt;
-  &lt;li&gt;No longer need to kill &lt;code&gt;Chrome&lt;/code&gt; for 
&lt;code&gt;macOS&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;added &lt;code&gt;create.bat&lt;/code&gt; for 
&lt;strong&gt;Windows&lt;/strong&gt; support&lt;/li&gt;
-&lt;/ul&gt;
+&lt;li&gt;Updated JS snapshot to version 
&lt;code&gt;3.6.4&lt;/code&gt;&lt;/li&gt;
 
-&lt;h2 id=&quot;whats-new-in-cordova-cli&quot;&gt;What’s new in 
Cordova-CLI&lt;/h2&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7616&quot;&gt;CB-7616&lt;/a&gt;
 partial match support for &lt;code&gt;--target&lt;/code&gt;&lt;/li&gt;
 
-&lt;ul&gt;
-  &lt;li&gt;Made version &lt;code&gt;semVer&lt;/code&gt; compliant and bumped 
to &lt;code&gt;4.0.0&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;Pinned dependencies&lt;/li&gt;
+&lt;li&gt;Fixing paths for &lt;code&gt;npm&lt;/code&gt; published 
versions&lt;/li&gt;
+
+&lt;li&gt;move &lt;code&gt;node_modules&lt;/code&gt; up to same level as 
&lt;code&gt;package.json&lt;/code&gt;&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7455&quot;&gt;CB-7455&lt;/a&gt;
 add &lt;code&gt;bundledDependencies&lt;/code&gt;&lt;/li&gt;
+
+&lt;li&gt;Moves &lt;code&gt;node_modules&lt;/code&gt; from package root to 
bin/ folder&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7444&quot;&gt;CB-7444&lt;/a&gt;
 Fixes &lt;code&gt;XHR&lt;/code&gt; callback failure when requested file 
doesn’t exists&lt;/li&gt;
 &lt;/ul&gt;
 
-&lt;h2 id=&quot;whats-new-in-cordova-plugman&quot;&gt;What’s new in 
Cordova-Plugman&lt;/h2&gt;
+&lt;h2 id=&quot;whats_new_in_windows&quot;&gt;What’s new in 
Windows&lt;/h2&gt;
 
 &lt;ul&gt;
-  &lt;li&gt;Pinned dependencies&lt;/li&gt;
+&lt;li&gt;Update JS snapshot to version 
&lt;code&gt;3.6.4&lt;/code&gt;&lt;/li&gt;
+
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7617&quot;&gt;CB-7617&lt;/a&gt;
 partial match support for &lt;code&gt;--target&lt;/code&gt;&lt;/li&gt;
+
+&lt;li&gt;Added &lt;code&gt;bundledDependencies&lt;/code&gt; + fixed some 
whitespace&lt;/li&gt;
 &lt;/ul&gt;
 
-&lt;h2 id=&quot;whats-new-in-cordova-lib&quot;&gt;What’s new in 
Cordova-Lib&lt;/h2&gt;
+&lt;h2 id=&quot;whats_new_in_cordovabrowser&quot;&gt;What’s new in 
Cordova-Browser&lt;/h2&gt;
 
 &lt;ul&gt;
-  &lt;li&gt;Bumped version to &lt;code&gt;4.0.0&lt;/code&gt; to be 
&lt;code&gt;semVer&lt;/code&gt; compliant and to match &lt;strong&gt;Cordova 
CLI&lt;/strong&gt; version&lt;/li&gt;
-  &lt;li&gt;Pinned dependencies in 
&lt;code&gt;package.json&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;Updated &lt;code&gt;platforms.js&lt;/code&gt; for 
&lt;code&gt;3.6.4&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-5390&quot;&gt;CB-5390&lt;/a&gt;
 Uninstall - recursively remove dependencies of dependencies&lt;/li&gt;
-  &lt;li&gt;Fixes &lt;code&gt;HooksRunner&lt;/code&gt; test - should run 
&lt;code&gt;before_plugin_uninstall&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-6481&quot;&gt;CB-6481&lt;/a&gt;
 &lt;code&gt;getPluginsHookScripts&lt;/code&gt; to work if plugin platform not 
defined&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-6481&quot;&gt;CB-6481&lt;/a&gt;
 Context opts should copy not reference&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-6481&quot;&gt;CB-6481&lt;/a&gt;
 Fixed &lt;code&gt;HooksRunner&lt;/code&gt; and tests. Avoided issue with 
parallel tests running. Added checks for handling mocked 
&lt;code&gt;config.xml&lt;/code&gt; and &lt;code&gt;package.json&lt;/code&gt; 
in &lt;code&gt;HooksRunner&lt;/code&gt; and 
&lt;code&gt;scriptsFinder&lt;/code&gt;. Addressed 
&lt;code&gt;jshint&lt;/code&gt; issues. Renamed 
&lt;code&gt;ScriptsFinder&lt;/code&gt; to 
&lt;code&gt;scriptsFinder&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-6481&quot;&gt;CB-6481&lt;/a&gt;
 Addressed community review notes: Removed 
&lt;code&gt;commonModules&lt;/code&gt; from &lt;code&gt;Context&lt;/code&gt;. 
Renamed &lt;code&gt;Hooker&lt;/code&gt; and subclasses to 
&lt;code&gt;HooksRunner&lt;/code&gt; and 
&lt;code&gt;scriptsFinder&lt;/code&gt;. Moved 
&lt;code&gt;scriptsRunner&lt;/code&gt; code into 
&lt;code&gt;HooksRunner&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-6481&quot;&gt;CB-6481&lt;/a&gt;
 Replaced &lt;code&gt;CordovaError&lt;/code&gt; throwing with Error per @kamrik 
review. Extracted &lt;code&gt;prepareOptions&lt;/code&gt; 
&lt;code&gt;Hooker&lt;/code&gt; method&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-6481&quot;&gt;CB-6481&lt;/a&gt;
 Docs: deprecated &lt;code&gt;.cordova/hooks&lt;/code&gt; + other minor 
updates&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-6481&quot;&gt;CB-6481&lt;/a&gt;
 Updated hooks documentation&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-6481&quot;&gt;CB-6481&lt;/a&gt;
 Added unified hooks support for cordova app and plugins&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7572&quot;&gt;CB-7572&lt;/a&gt;
 Serve - respond with &lt;code&gt;304&lt;/code&gt; when resource 
&lt;strong&gt;not modified&lt;/strong&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;code&gt;computeCommitId&lt;/code&gt; for 
&lt;strong&gt;browserify&lt;/strong&gt; workflow fixed to handle cli and non 
cli workflows&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7219&quot;&gt;CB-7219&lt;/a&gt;
 &lt;code&gt;prepare-browserify&lt;/code&gt; now supports 
&lt;code&gt;commitId&lt;/code&gt; and &lt;code&gt;platformVersion&lt;/code&gt; 
for &lt;code&gt;cordovajs&lt;/code&gt;&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7615&quot;&gt;CB-7615&lt;/a&gt;
 Read &lt;code&gt;config.xml&lt;/code&gt; after pre-prepare hooks 
fire&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7578&quot;&gt;CB-7578&lt;/a&gt;
 &lt;strong&gt;Windows&lt;/strong&gt; Fix platform name reported by 
&lt;code&gt;pre_package&lt;/code&gt; hook&lt;/li&gt;
-  &lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-7576&quot;&gt;CB-7576&lt;/a&gt;
 Support &lt;code&gt;windows&lt;/code&gt; &lt;code&gt;merges&lt;/code&gt; 
folder for &lt;strong&gt;Windows&lt;/strong&gt; platform&lt;/li&gt;
-  &lt;li&gt;Added tests for browser platform&lt;/li&gt;
+&lt;li&gt;Update JS snapshot to version 
&lt;code&gt;3.6.0&lt;/code&gt;&lt;/li&gt;
+
+&lt;li&gt;added initial &lt;strong&gt;Windows&lt;/strong&gt; 
&lt;code&gt;run&lt;/code&gt; support&lt;/li&gt;
+
+&lt;li&gt;No longer need to kill &lt;code&gt;Chrome&lt;/code&gt; for 
&lt;code&gt;macOS&lt;/code&gt;&lt;/li&gt;
+
+&lt;li&gt;added &lt;code&gt;create.bat&lt;/code&gt; for 
&lt;strong&gt;Windows&lt;/strong&gt; support&lt;/li&gt;
 &lt;/ul&gt;
 
-&lt;h2 id=&quot;plugin-versions-tested-with-this-release&quot;&gt;Plugin 
versions tested with this release&lt;/h2&gt;
+&lt;h2 id=&quot;whats_new_in_cordovacli&quot;&gt;What’s new in 
Cordova-CLI&lt;/h2&gt;
 
 &lt;ul&gt;
-  &lt;li&gt;cordova-plugin-battery-status: 0.2.11&lt;/li&gt;
-  &lt;li&gt;cordova-plugin-camera: 0.3.2&lt;/li&gt;
-  &lt;li&gt;cordova-plugin-console: 0.2.11&lt;/li&gt;
-  &lt;li&gt;cordova-plugin-contacts: 0.2.13&lt;/li&gt;
-  &lt;li&gt;cordova-plugin-device: 0.2.12&lt;/li&gt;
-  &lt;li&gt;cordova-plugin-device-motion: 0.2.10&lt;/li&gt;
-  &lt;li&gt;cordova-plugin-device-orientation: 0.3.9&lt;/li&gt;
-  &lt;li&gt;cordova-plugin-dialogs: 0.2.10&lt;/li&gt;
-  &lt;li&gt;cordova-plugin-file: 1.3.1&lt;/li&gt;
-  &lt;li&gt;cordova-plugin-file-transfer: 0.4.6&lt;/li&gt;
-  &lt;li&gt;cordova-plugin-geolocation: 0.3.10&lt;/li&gt;
-  &lt;li&gt;cordova-plugin-globalization: 0.3.1&lt;/li&gt;
-  &lt;li&gt;cordova-plugin-inappbrowser: 0.5.2&lt;/li&gt;
-  &lt;li&gt;cordova-plugin-media: 0.2.13&lt;/li&gt;
-  &lt;li&gt;cordova-plugin-media-capture: 0.3.3&lt;/li&gt;
-  &lt;li&gt;cordova-plugin-network-information: 0.2.13&lt;/li&gt;
-  &lt;li&gt;cordova-plugin-splashscreen: 0.3.3&lt;/li&gt;
-  &lt;li&gt;cordova-plugin-statusbar: 0.1.8&lt;/li&gt;
-  &lt;li&gt;cordova-plugin-vibration: 0.3.11&lt;/li&gt;
+&lt;li&gt;Made version &lt;code&gt;semVer&lt;/code&gt; compliant and bumped to 
&lt;code&gt;4.0.0&lt;/code&gt;&lt;/li&gt;
+
+&lt;li&gt;Pinned dependencies&lt;/li&gt;
 &lt;/ul&gt;
 
-&lt;h2 id=&quot;pinned-platform-versions-for-cordova-cli-400&quot;&gt;Pinned 
Platform Versions for Cordova CLI 4.0.0&lt;/h2&gt;
+&lt;h2 id=&quot;whats_new_in_cordovaplugman&quot;&gt;What’s new in 
Cordova-Plugman&lt;/h2&gt;
 
 &lt;ul&gt;
-  &lt;li&gt;Cordova Amazon-FireOS: 3.6.3&lt;/li&gt;
-  &lt;li&gt;Cordova Android: 3.6.4&lt;/li&gt;
-  &lt;li&gt;Cordova BlackBerry: 3.6.3&lt;/li&gt;
-  &lt;li&gt;Cordova Browser: 3.6.0&lt;/li&gt;
-  &lt;li&gt;Cordova FirefoxOS: 3.6.3&lt;/li&gt;
-  &lt;li&gt;Cordova iOS: 3.6.3&lt;/li&gt;

[... 9152 lines stripped ...]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to