Modified: cordova/site/public/docs/en/dev/cordova/events/events.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/cordova/events/events.html?rev=1766733&r1=1766732&r2=1766733&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/cordova/events/events.html (original)
+++ cordova/site/public/docs/en/dev/cordova/events/events.html Wed Oct 26 
20:28:35 2016
@@ -3045,6 +3045,8 @@ the default volume up behavior you can r
 <li><p>Original activated event args are available in 
<code>args.raw.detail[0]</code> property and can be used to get a type 
information or invoke methods of one of the activation arguments,</p></li>
 <li><p>Original activated event args are also cloned to 
<code>args.detail[0]</code> and can be used as a fallback in case an inner args 
property has been lost.<br>
 See https://issues.apache.org/jira/browse/CB-10653 for details.</p></li>
+<li><p><code>activated</code> event might be fired before 
<code>deviceready</code> so you should save the activation flag and args to the 
app context in case you need them - for example in the <a 
href="https://issues.apache.org/jira/browse/CB-11924";>Share target case</a>.
+The subscription to the <code>activated</code> event should be done before 
<code>deviceready</code> handler (in <code>app.bindEvents</code> in terms of 
the Cordova template).</p></li>
 </ul>
 
 

Modified: cordova/site/public/docs/en/dev/guide/appdev/whitelist/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/guide/appdev/whitelist/index.html?rev=1766733&r1=1766732&r2=1766733&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/guide/appdev/whitelist/index.html (original)
+++ cordova/site/public/docs/en/dev/guide/appdev/whitelist/index.html Wed Oct 
26 20:28:35 2016
@@ -2745,14 +2745,35 @@ prior to 4.0.0, see older versions of th
 
 <p><a 
href="https://developer.apple.com/library/prerelease/ios/documentation/General/Reference/InfoPlistKeyReference/Articles/CocoaKeys.html#//apple_ref/doc/uid/TP40009251-SW33";>Application
 Transport Security (ATS)</a> is new in iOS 9 (Xcode 7). This new feature acts 
as a whitelist for your app. The cordova cli will automatically convert 
<code>&lt;access&gt;</code> and <code>&lt;allow-navigation&gt;</code> tags to 
the appropriate ATS directives.</p>
 
-<p>The <code>&lt;access&gt;</code> and <code>&lt;allow-navigation&gt;</code> 
tags support these two new attributes below, which have their equivalents in 
ATS:</p>
+<p>The <code>&lt;access&gt;</code> and <code>&lt;allow-navigation&gt;</code> 
tags support these three attributes below, which have their equivalents in 
ATS:</p>
 
 <ol>
 <li>minimum-tls-version (String, defaults to &#39;TLSv1.2&#39;)</li>
 <li>requires-forward-secrecy (Boolean, defaults to &#39;true&#39;)</li>
+<li>requires-certificate-transparency (Boolean, defaults to &#39;false&#39;, 
new in iOS 10)</li>
 </ol>
 
-<p>See the <a 
href="https://developer.apple.com/library/prerelease/ios/documentation/General/Reference/InfoPlistKeyReference/Articles/CocoaKeys.html#//apple_ref/doc/uid/TP40009251-SW33";>ATS
 Technote</a> for details.</p>
+<ul>
+<li><p>example:</p>
+<div class="highlight"><pre><code class="language-xml" data-lang="xml"><span 
class="nt">&lt;access</span> <span class="na">origin=</span><span 
class="s">'https://cordova.apache.org'</span> <span 
class="na">minimum-tls-version=</span><span class="s">'TLSv1.1'</span> <span 
class="na">requires-forward-secrecy=</span><span class="s">'false'</span> <span 
class="na">requires-certificate-transparency=</span><span 
class="s">'true'</span> <span class="nt">/&gt;</span>
+</code></pre></div></li>
+</ul>
+
+<p>In iOS 10 and above, the <code>&lt;access&gt;</code> tag supports these 
three attributes below, when paired with the origin wildcard <code>*</code>. 
These attributes also have their equivalents in ATS:</p>
+
+<ol>
+<li>allows-arbitrary-loads-in-media (Boolean, defaults to &#39;false&#39;, new 
in iOS 10)</li>
+<li>allows-arbitrary-loads-in-web-content (Boolean, defaults to 
&#39;false&#39;, new in iOS 10)</li>
+<li>allows-local-networking (Boolean, defaults to &#39;false&#39;, new in iOS 
10)</li>
+</ol>
+
+<ul>
+<li><p>example:</p>
+<div class="highlight"><pre><code class="language-xml" data-lang="xml"><span 
class="nt">&lt;access</span> <span class="na">origin=</span><span 
class="s">'*'</span> <span 
class="na">allows-arbitrary-loads-in-media=</span><span class="s">'true'</span> 
<span class="na">allows-arbitrary-loads-in-web-content=</span><span 
class="s">'true'</span> <span class="na">allows-local-networking=</span><span 
class="s">'true'</span> <span class="nt">/&gt;</span>
+</code></pre></div></li>
+</ul>
+
+<p>See the <a 
href="https://developer.apple.com/library/prerelease/ios/documentation/General/Reference/InfoPlistKeyReference/Articles/CocoaKeys.html#//apple_ref/doc/uid/TP40009251-SW33";>ATS
 Technote</a> for more details.</p>
 
 <h2>BlackBerry 10 Whitelisting</h2>
 

Modified: cordova/site/public/docs/en/dev/guide/platforms/ios/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/guide/platforms/ios/index.html?rev=1766733&r1=1766732&r2=1766733&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/guide/platforms/ios/index.html (original)
+++ cordova/site/public/docs/en/dev/guide/platforms/ios/index.html Wed Oct 26 
20:28:35 2016
@@ -2721,13 +2721,11 @@ for Cordova to run. From the command lin
 </code></pre></div>
 <h3>Deployment Tools</h3>
 
-<p>The <a href="https://www.npmjs.org/package/ios-sim";>ios-sim</a> and
-<a href="https://www.npmjs.org/package/ios-deploy";>ios-deploy</a> tools - 
allows you
-to launch iOS apps into the iOS Simulator and iOS Device from the 
command-line.</p>
-
-<p>To install them, run the following from command-line terminal:</p>
-<div class="highlight"><pre><code class="language-bash" data-lang="bash"><span 
class="gp">$ </span>npm install -g ios-sim
-<span class="gp">$ </span>npm install -g ios-deploy
+<p>The <a href="https://www.npmjs.org/package/ios-deploy";>ios-deploy</a> tools 
- allows you
+to launch iOS apps into an iOS Device from the command-line.</p>
+
+<p>To install it, run the following from command-line terminal:</p>
+<div class="highlight"><pre><code class="language-bash" data-lang="bash"><span 
class="gp">$ </span>npm install -g ios-deploy
 </code></pre></div>
 <h2>Project Configuration</h2>
 
@@ -2827,6 +2825,16 @@ and the <a href="https://developer.apple
 <td><code>--codesignResourceRules</code></td>
 <td>(Optional) Used to control which files in a bundle should be sealed by a 
code signature. For more details, read <a 
href="https://developer.apple.com/library/mac/technotes/tn2206/_index.html#//apple_ref/doc/uid/DTS40007919-CH1-TNTAG206";>The
 OS X Code Signing In Depth article</a></td>
 </tr>
+<tr>
+<td>Development Team</td>
+<td><code>--developmentTeam</code></td>
+<td>This is new for Xcode 8. The development team (<a 
href="https://developer.apple.com/account/#/membership/";>Team ID</a>) to use 
for code signing. You would use this setting and a simplified Code Sign 
Identity (i.e. just &#39;iPhone Developer&#39;) to sign your apps, you do not 
need to provide a Provisioning Profile.</td>
+</tr>
+<tr>
+<td>Packaging Type</td>
+<td><code>--packageType</code></td>
+<td>This will determine what type of build is generated by Xcode. Valid 
options are <code>development</code> (the default), <code>enterprise</code>, 
<code>ad-hoc</code>, and <code>app-store</code>.</td>
+</tr>
 </tbody></table>
 
 <h3>Using build.json</h3>
@@ -2838,19 +2846,24 @@ build configuration file:</p>
     </span><span class="nt">"ios"</span><span class="p">:</span><span 
class="w"> </span><span class="p">{</span><span class="w">
         </span><span class="nt">"debug"</span><span class="p">:</span><span 
class="w"> </span><span class="p">{</span><span class="w">
             </span><span class="nt">"codeSignIdentity"</span><span 
class="p">:</span><span class="w"> </span><span class="s2">"iPhone 
Development"</span><span class="p">,</span><span class="w">
-            </span><span class="nt">"provisioningProfile"</span><span 
class="p">:</span><span class="w"> </span><span 
class="s2">"926c2bd6-8de9-4c2f-8407-1016d2d12954"</span><span class="w">
+            </span><span class="nt">"provisioningProfile"</span><span 
class="p">:</span><span class="w"> </span><span 
class="s2">"926c2bd6-8de9-4c2f-8407-1016d2d12954"</span><span 
class="p">,</span><span class="w">
+            </span><span class="nt">"developmentTeam"</span><span 
class="p">:</span><span class="w"> </span><span 
class="s2">"FG35JLLMXX4A"</span><span class="p">,</span><span class="w">
+            </span><span class="nt">"packageType"</span><span 
class="p">:</span><span class="w"> </span><span 
class="s2">"development"</span><span class="w">
         </span><span class="p">},</span><span class="w">
         </span><span class="nt">"release"</span><span class="p">:</span><span 
class="w"> </span><span class="p">{</span><span class="w">
             </span><span class="nt">"codeSignIdentity"</span><span 
class="p">:</span><span class="w"> </span><span class="s2">"iPhone 
Distribution"</span><span class="p">,</span><span class="w">
-            </span><span class="nt">"provisioningProfile"</span><span 
class="p">:</span><span class="w"> </span><span 
class="s2">"70f699ad-faf1-4adE-8fea-9d84738fb306"</span><span class="w">
+            </span><span class="nt">"provisioningProfile"</span><span 
class="p">:</span><span class="w"> </span><span 
class="s2">"70f699ad-faf1-4adE-8fea-9d84738fb306"</span><span 
class="p">,</span><span class="w">
+            </span><span class="nt">"developmentTeam"</span><span 
class="p">:</span><span class="w"> </span><span 
class="s2">"FG35JLLMXX4A"</span><span class="p">,</span><span class="w">
+            </span><span class="nt">"packageType"</span><span 
class="p">:</span><span class="w"> </span><span 
class="s2">"app-store"</span><span class="w">
         </span><span class="p">}</span><span class="w">
     </span><span class="p">}</span><span class="w">
 </span><span class="p">}</span><span class="w">
 </span></code></pre></div>
-<h3>Using xcrun</h3>
+<h2>Xcode Build Flags</h2>
 
-<p>You can also sign from the command line using the following command:</p>
-<div class="highlight"><pre><code class="language-bash" data-lang="bash">xcrun 
-sdk iphoneos PackageApplication -v /home/user/app/build/device/MyApp.app -o 
/home/user/app/build/device/MyApp.ipa --sign <span class="s2">"iPhone 
Development"</span> --embed <span 
class="s2">"7151ab45-6085-4ea1-9bcd-022b5cebe44b"</span>
+<p>If you have a custom situation where you need to pass additional build 
flags to Xcode -- you would use one or more <code>--buildFlag</code> options to 
pass these flags to <code>xcodebuild</code>. If you use an 
<code>xcodebuild</code> built-in flag, it will show a warning.</p>
+<div class="highlight"><pre><code class="language-" data-lang="">cordova build 
--device --buildFlag="MYSETTING=myvalue" 
--buildFlag="MY_OTHER_SETTING=othervalue"
+cordova run --device --buildFlag="DEVELOPMENT_TEAM=FG35JLLMXX4A" 
--buildFlag="-scheme TestSchemeFlag"
 </code></pre></div>
 <h2>Debugging</h2>
 

Modified: cordova/site/public/docs/en/dev/plugin_ref/spec.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/plugin_ref/spec.html?rev=1766733&r1=1766732&r2=1766733&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/plugin_ref/spec.html (original)
+++ cordova/site/public/docs/en/dev/plugin_ref/spec.html Wed Oct 26 20:28:35 
2016
@@ -2971,7 +2971,7 @@ like. Any object not available on <code>
   <span class="c">&lt;!-- android-specific elements --&gt;</span>
 <span class="nt">&lt;/platform&gt;</span>
 </code></pre></div>
-<h3>source-file</h3>
+<h2>source-file</h2>
 
 <p>Identifies executable source code that should be installed into a 
project.</p>
 
@@ -3007,7 +3007,7 @@ like. Any object not available on <code>
 <span class="nt">&lt;source-file</span> <span class="na">src=</span><span 
class="s">"src/ios/someLib.a"</span> <span class="na">framework=</span><span 
class="s">"true"</span> <span class="nt">/&gt;</span>
 <span class="nt">&lt;source-file</span> <span class="na">src=</span><span 
class="s">"src/ios/someLib.a"</span> <span 
class="na">compiler-flags=</span><span class="s">"-fno-objc-arc"</span> <span 
class="nt">/&gt;</span>
 </code></pre></div>
-<h3>header-file</h3>
+<h2>header-file</h2>
 
 <p>This is like <code>&lt;source-file&gt;</code> element but specifically for 
platforms such as iOS and Android that distinguish between source files, 
headers, and resources. This is not supported by Windows.</p>
 
@@ -3032,7 +3032,7 @@ like. Any object not available on <code>
 <p>For iOS:</p>
 <div class="highlight"><pre><code class="language-xml" data-lang="xml"><span 
class="nt">&lt;header-file</span> <span class="na">src=</span><span 
class="s">"CDVFoo.h"</span> <span class="nt">/&gt;</span>
 </code></pre></div>
-<h3>resource-file</h3>
+<h2>resource-file</h2>
 
 <p>This is like <code>&lt;source-file&gt;</code> element, but specifically for 
platforms such as iOS and Android that distinguish between source files, 
headers, and resources.</p>
 
@@ -3072,7 +3072,7 @@ like. Any object not available on <code>
 <p>For Windows:</p>
 <div class="highlight"><pre><code class="language-xml" data-lang="xml"><span 
class="nt">&lt;resource-file</span> <span class="na">src=</span><span 
class="s">"src/windows/win81/MobServices.pri"</span> <span 
class="na">target=</span><span class="s">"win81/MobServices.pri"</span> <span 
class="na">device-target=</span><span class="s">"windows"</span> <span 
class="na">versions=</span><span class="s">"8.1"</span> <span 
class="na">arch=</span><span class="s">"x64"</span><span class="nt">/&gt;</span>
 </code></pre></div>
-<h3>config-file</h3>
+<h2>config-file</h2>
 
 <p>Identifies an XML-based configuration file to be modified, where in that 
document the modification should take place, and what should be modified.
 Two file types that have been tested for modification with this element are 
<code>xml</code> and <code>plist</code> files.
@@ -3137,7 +3137,7 @@ The <code>config-file</code> element onl
 </code></pre></div>
 <p>The above example will set pre-8.1 platforms (Windows 8, specifically) to 
require the <code>webcam</code> device capability and the 
<code>picturesLibrary</code> general capability, and apply the 
<code>webcam</code> device capability only to Windows 8.1 projects that build 
for Windows Phone.  Windows desktop 8.1 systems are unmodified.</p>
 
-<h3>edit-config</h3>
+<h2>edit-config</h2>
 
 <p>Similar to <code>config-file</code>, <code>edit-config</code> identifies an 
XML-based configuration file to be modified, where in that document the 
modification should take place, and what should be modified. Instead of 
appending new children to an XML document tree, <code>edit-config</code> makes 
modifications to attributes of XML elements. There are two modes which will 
determine what type of attribute modification will be made, <code>merge</code> 
or <code>overwrite</code>. <code>edit-config</code> has one child and that 
child will contain the attributes to be added.</p>
 
@@ -3243,14 +3243,14 @@ The <code>config-file</code> element onl
 </code></pre></div>
 <p>Note: Reverted changes from <code>--force</code> are gone for good. They 
will not reappear after removing the plugin that was force added. If the 
reverted changes are needed, all associated plugins should be removed and 
re-added.</p>
 
-<h3>plugins-plist</h3>
+<h2>plugins-plist</h2>
 
 <p>Specifies a key and value to append to the correct 
<code>AppInfo.plist</code> file in an iOS Cordova project. This is 
<em>outdated</em> as it only applies to cordova-ios 2.2.0 and below. Use the 
<code>&lt;config-file&gt;</code> tag for newer versions of Cordova.</p>
 
 <p>Example:</p>
 <div class="highlight"><pre><code class="language-xml" data-lang="xml"><span 
class="nt">&lt;plugins-plist</span> <span class="na">key=</span><span 
class="s">"Foo"</span> <span class="na">string=</span><span 
class="s">"CDVFoo"</span> <span class="nt">/&gt;</span>
 </code></pre></div>
-<h3>lib-file</h3>
+<h2>lib-file</h2>
 
 <p>Like source, resource, and header files, but specifically for platforms 
such as BlackBerry 10 that use user-generated libraries. For the Windows 
platform, the <code>&lt;lib-file&gt;</code> element allows the inclusion of an 
<code>&lt;SDKReference&gt;</code> in the generated Windows project files.</p>
 
@@ -3288,7 +3288,7 @@ The <code>config-file</code> element onl
 <span class="nt">&lt;lib-file</span> <span class="na">src=</span><span 
class="s">"Microsoft.WinJS.2.0, Version=1.0"</span> <span 
class="na">target=</span><span class="s">"phone"</span> <span 
class="nt">/&gt;</span>
 <span class="nt">&lt;lib-file</span> <span class="na">src=</span><span 
class="s">"Microsoft.WinJS.2.0, Version=1.0"</span> <span 
class="na">target=</span><span class="s">"win"</span> <span 
class="na">versions=</span><span class="s">"8.0"</span> <span 
class="na">arch=</span><span class="s">"x86"</span> <span 
class="nt">/&gt;</span>
 </code></pre></div>
-<h3>framework</h3>
+<h2>framework</h2>
 
 <p>Identifies a framework (usually part of the OS/platform) on which the 
plugin depends.</p>
 
@@ -3334,6 +3334,10 @@ The <code>config-file</code> element onl
 <td>target-dir(string) <br/> <mark>windows</mark></td>
 <td>Indicates a subdirectory into which the framework should be copied. In 
practice, this is most important when plugin contains different framework 
versions for different chip architectures or device targets, but which have the 
same name. This allows you to specify different subfolders for each framework 
version so that they don&#39;t overlap each other.</td>
 </tr>
+<tr>
+<td>spec(string) <br/> <mark>ios</mark></td>
+<td>Paired with <code>type=&quot;podspec&quot;</code>, this is the spec string 
for the CocoaPod you want to install (static library only). CocoaPod support 
only exists in <code>cordova-ios 4.3.0</code> and <code>cordova-cli 
6.4.0</code>. For your plugin, make sure  you add the appropriate 
<code>&lt;engine&gt;</code> tags and <code>package.json</code> <a 
href="../guide/hybrid/plugins/index.html#specifying-cordova-dependencies">dependencies</a>
 to ensure backwards-compatible support.</td>
+</tr>
 </tbody></table>
 
 <p>Examples:</p>
@@ -3342,6 +3346,7 @@ The <code>config-file</code> element onl
 <div class="highlight"><pre><code class="language-xml" data-lang="xml"><span 
class="nt">&lt;framework</span> <span class="na">src=</span><span 
class="s">"libsqlite3.dylib"</span> <span class="nt">/&gt;</span>
 <span class="nt">&lt;framework</span> <span class="na">src=</span><span 
class="s">"social.framework"</span> <span class="na">weak=</span><span 
class="s">"true"</span> <span class="nt">/&gt;</span>
 <span class="nt">&lt;framework</span> <span class="na">src=</span><span 
class="s">"relative/path/to/my.framework"</span> <span 
class="na">custom=</span><span class="s">"true"</span> <span 
class="nt">/&gt;</span>
+<span class="nt">&lt;framework</span> <span class="na">src=</span><span 
class="s">"GoogleCloudMessaging"</span> <span class="na">type=</span><span 
class="s">"podspec"</span> <span class="na">spec=</span><span class="s">"~&gt; 
1.2.0"</span> <span class="nt">/&gt;</span>
 </code></pre></div>
 <p>On Android (as of [email protected]), framework tags are used to 
include Maven dependencies, or to include bundled library projects.</p>
 <div class="highlight"><pre><code class="language-xml" data-lang="xml"><span 
class="c">&lt;!-- Depend on latest version of GCM from play services 
--&gt;</span>

Modified: 
cordova/site/public/docs/en/dev/reference/cordova-plugin-geolocation/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/reference/cordova-plugin-geolocation/index.html?rev=1766733&r1=1766732&r2=1766733&view=diff
==============================================================================
--- 
cordova/site/public/docs/en/dev/reference/cordova-plugin-geolocation/index.html 
(original)
+++ 
cordova/site/public/docs/en/dev/reference/cordova-plugin-geolocation/index.html 
Wed Oct 26 20:28:35 2016
@@ -2865,6 +2865,17 @@ error, the <code>geolocationError</code>
     <span class="nx">navigator</span><span class="p">.</span><span 
class="nx">geolocation</span><span class="p">.</span><span 
class="nx">getCurrentPosition</span><span class="p">(</span><span 
class="nx">onSuccess</span><span class="p">,</span> <span 
class="nx">onError</span><span class="p">);</span>
 
 </code></pre></div>
+<h3>iOS Quirks</h3>
+
+<p>Since iOS 10 it&#39;s mandatory to add a 
<code>NSLocationWhenInUseUsageDescription</code> entry in the info.plist.</p>
+
+<p><code>NSLocationWhenInUseUsageDescription</code> describes the reason that 
the app accesses the user&#39;s location. When the system prompts the user to 
allow access, this string is displayed as part of the dialog box. To add this 
entry you can pass the variable <code>GEOLOCATION_USAGE_DESCRIPTION</code> on 
plugin install.</p>
+
+<p>Example:
+ <code>cordova plugin add cordova-plugin-geolocation --variable 
GEOLOCATION_USAGE_DESCRIPTION=&quot;your usage message&quot;</code></p>
+
+<p>If you don&#39;t pass the variable, the plugin will add an empty string as 
value.</p>
+
 <h3>Android Quirks</h3>
 
 <p>If Geolocation service is turned off the <code>onError</code> callback is 
invoked after <code>timeout</code> interval (if specified).

Modified: 
cordova/site/public/docs/en/dev/reference/cordova-plugin-inappbrowser/index.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/reference/cordova-plugin-inappbrowser/index.html?rev=1766733&r1=1766732&r2=1766733&view=diff
==============================================================================
--- 
cordova/site/public/docs/en/dev/reference/cordova-plugin-inappbrowser/index.html
 (original)
+++ 
cordova/site/public/docs/en/dev/reference/cordova-plugin-inappbrowser/index.html
 Wed Oct 26 20:28:35 2016
@@ -2773,7 +2773,7 @@ function onDeviceReady() {
 </code></pre></div>
 <p>Report issues with this plugin on the <a 
href="https://issues.apache.org/jira/issues/?jql=project%20%3D%20CB%20AND%20status%20in%20%28Open%2C%20%22In%20Progress%22%2C%20Reopened%29%20AND%20resolution%20%3D%20Unresolved%20AND%20component%20%3D%20%22Plugin%20InAppBrowser%22%20ORDER%20BY%20priority%20DESC%2C%20summary%20ASC%2C%20updatedDate%20DESC";>Apache
 Cordova issue tracker</a></p>
 
-<h2><a id="reference">Reference</h2>
+<h2><a id="reference">Reference</a></h2>
 
 <h2>Installation</h2>
 <div class="highlight"><pre><code class="language-" data-lang="">cordova 
plugin add cordova-plugin-inappbrowser
@@ -2857,6 +2857,7 @@ instance, or the system browser.</p>
 <li>BlackBerry 10</li>
 <li>Firefox OS</li>
 <li>iOS</li>
+<li>OSX</li>
 <li>Windows 8 and 8.1</li>
 <li>Windows Phone 7 and 8</li>
 <li>Browser</li>
@@ -2894,6 +2895,12 @@ opened with <code>target=&#39;_blank&#39
     <span class="nl">color</span><span class="p">:</span> <span 
class="m">#777</span><span class="p">;</span>
 <span class="p">}</span>
 </code></pre></div>
+<h3>OSX Quirks</h3>
+
+<p>At the moment the only supported target in OSX is <code>_system</code>.</p>
+
+<p><code>_blank</code> and <code>_self</code> targets are not yet implemented 
and are ignored silently. Pull requests and patches to get these to work are 
greatly appreciated.</p>
+
 <h3>Windows Quirks</h3>
 
 <p>Windows 8.0, 8.1 and Windows Phone 8.1 don&#39;t support remote urls to be 
opened in the Cordova WebView so remote urls are always showed in the 
system&#39;s web browser if opened with <code>target=&#39;_self&#39;</code>.</p>
@@ -2920,6 +2927,7 @@ opened with <code>target=&#39;_blank&#39
 <li>removeEventListener</li>
 <li>close</li>
 <li>show</li>
+<li>hide</li>
 <li>executeScript</li>
 <li>insertCSS</li>
 </ul>
@@ -3130,6 +3138,31 @@ ref.close();
 // some time later...
 ref.show();
 </code></pre></div>
+<h2>InAppBrowser.hide</h2>
+
+<blockquote>
+<p>Hides the InAppBrowser window. Calling this has no effect if the 
InAppBrowser was already hidden.</p>
+</blockquote>
+<div class="highlight"><pre><code class="language-" data-lang="">ref.hide();
+</code></pre></div>
+<ul>
+<li><strong>ref</strong>: reference to the InAppBrowser window 
(<code>InAppBrowser</code>)</li>
+</ul>
+
+<h3>Supported Platforms</h3>
+
+<ul>
+<li>Amazon Fire OS</li>
+<li>Android</li>
+<li>iOS</li>
+<li>Windows 8 and 8.1</li>
+</ul>
+
+<h3>Quick Example</h3>
+<div class="highlight"><pre><code class="language-" data-lang="">var ref = 
cordova.InAppBrowser.open('http://apache.org', '_blank');
+// some time later...
+ref.hide();
+</code></pre></div>
 <h2>InAppBrowser.executeScript</h2>
 
 <blockquote>

Modified: cordova/site/public/feed.xml
URL: 
http://svn.apache.org/viewvc/cordova/site/public/feed.xml?rev=1766733&r1=1766732&r2=1766733&view=diff
==============================================================================
--- cordova/site/public/feed.xml (original)
+++ cordova/site/public/feed.xml Wed Oct 26 20:28:35 2016
@@ -6,11 +6,331 @@
 </description>
     <link>https://cordova.apache.org/</link>
     <atom:link href="https://cordova.apache.org/feed.xml"; rel="self" 
type="application/rss+xml"/>
-    <pubDate>Wed, 05 Oct 2016 10:54:08 -0700</pubDate>
-    <lastBuildDate>Wed, 05 Oct 2016 10:54:08 -0700</lastBuildDate>
+    <pubDate>Wed, 26 Oct 2016 11:24:49 -0700</pubDate>
+    <lastBuildDate>Wed, 26 Oct 2016 11:24:49 -0700</lastBuildDate>
     <generator>Jekyll v2.5.3</generator>
     
       <item>
+        <title>Tools Released!</title>
+        <description>&lt;p&gt;New updates of our tools are now 
available!&lt;/p&gt;
+
+&lt;ul&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/cordova-lib&quot;&gt;[email protected]&lt;/a&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://www.npmjs.com/package/plugman&quot;&gt;[email protected]&lt;/a&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://www.npmjs.com/package/cordova-js&quot;&gt;[email protected]&lt;/a&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://www.npmjs.com/package/cordova-common&quot;&gt;[email protected]&lt;/a&gt;&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;p&gt;&lt;strong&gt;Release Highlights&lt;/strong&gt;&lt;/p&gt;
+
+&lt;ul&gt;
+&lt;li&gt;&lt;strong&gt;Updated Platforms&lt;/strong&gt; &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-12039&quot;&gt;CB-12039&lt;/a&gt;:
 updated pinned &lt;strong&gt;Android&lt;/strong&gt; to 
&lt;code&gt;6.0.0&lt;/code&gt; and &lt;strong&gt;iOS&lt;/strong&gt; to 
&lt;code&gt;4.3.0&lt;/code&gt;. Read the &lt;a 
href=&quot;http://cordova.apache.org/announcements/2016/10/24/android-release.html&quot;&gt;[email protected]
 release blog&lt;/a&gt; and the &lt;a 
href=&quot;http://cordova.apache.org/announcements/2016/10/24/ios-release.html&quot;&gt;[email protected]
 release blog&lt;/a&gt;.&lt;/li&gt;
+&lt;li&gt;&lt;strong&gt;Deprecation&lt;/strong&gt; &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11976&quot;&gt;CB-11976&lt;/a&gt;:
 Add deprecated node version warning for 0.x. Lean more about our &lt;a 
href=&quot;http://cordova.apache.org/news/2016/10/01/0.x-4.x-deprecation-timeline.html&quot;&gt;node
 deprecation timeline&lt;/a&gt;.&lt;/li&gt;
+&lt;li&gt;&lt;strong&gt;Deprecation&lt;/strong&gt; &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11979&quot;&gt;CB-11979&lt;/a&gt;:
 added deprecation warning for installing plugins via subdirectories&lt;/li&gt;
+&lt;li&gt;&lt;strong&gt;Security&lt;/strong&gt; &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-12017&quot;&gt;CB-12017&lt;/a&gt;:
 Updated npm dependencies due to security vulnerabilities. &lt;/li&gt;
+&lt;li&gt;&lt;strong&gt;New Feature&lt;/strong&gt; &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11908&quot;&gt;CB-11908&lt;/a&gt;:
 Add &lt;code&gt;edit-config&lt;/code&gt; support to 
&lt;code&gt;config.xml&lt;/code&gt;. &lt;code&gt;edit-config&lt;/code&gt; works 
the same way now in &lt;code&gt;plugin.xml&lt;/code&gt; as well as 
&lt;code&gt;config.xml&lt;/code&gt;. Read about it at 
http://cordova.apache.org/docs/en/6.x/plugin_ref/spec.html#edit-config&lt;/li&gt;
+&lt;li&gt;&lt;strong&gt;New Feature&lt;/strong&gt; &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-3785&quot;&gt;CB-3785&lt;/a&gt;:
 add support for &lt;code&gt;EventListener interface&lt;/code&gt; to 
&lt;code&gt;Channel.prototype.subscribe&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;strong&gt;New Module&lt;/strong&gt; &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11607&quot;&gt;CB-11607&lt;/a&gt;:
 split out &lt;code&gt;cordova-create&lt;/code&gt; from 
&lt;code&gt;cordova-lib&lt;/code&gt;. &lt;a 
href=&quot;https://www.npmjs.com/package/cordova-create&quot;&gt;Published&lt;/a&gt;
 &lt;code&gt;cordova-create&lt;/code&gt; to 
&lt;code&gt;npm&lt;/code&gt;.&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;p&gt;To update your cordova CLI:&lt;/p&gt;
+&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code 
class=&quot;language-&quot; data-lang=&quot;&quot;&gt;npm install -g 
cordova@latest
+&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
+&lt;p&gt;Please report any issues you find at &lt;a 
href=&quot;http://issues.cordova.io/&quot;&gt;issues.cordova.io&lt;/a&gt;!&lt;/p&gt;
+
+&lt;!--more--&gt;
+
+&lt;h1&gt;Changes include:&lt;/h1&gt;
+
+&lt;h2&gt;cordova-lib&lt;/h2&gt;
+
+&lt;ul&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-12039&quot;&gt;CB-12039&lt;/a&gt;:
 updated pinned &lt;code&gt;Android&lt;/code&gt; to 6.0.0 and 
&lt;code&gt;iOS&lt;/code&gt; to 4.3.0&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11979&quot;&gt;CB-11979&lt;/a&gt;:
 added deprecation warning for installing plugins via subdirectories&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11730&quot;&gt;CB-11730&lt;/a&gt;:
 Modify condition of if clause to avoid similar project name with plugin 
name&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11985&quot;&gt;CB-11985&lt;/a&gt;:
 Check if cached platform/plugin exists before &lt;code&gt;npm 
cache&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11951&quot;&gt;CB-11951&lt;/a&gt;:
 &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11967&quot;&gt;CB-11967&lt;/a&gt;:
 Respect preference default values when installling plugins&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11771&quot;&gt;CB-11771&lt;/a&gt;:
 Deep symlink directories to target project instead of linking the directory 
itself&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11908&quot;&gt;CB-11908&lt;/a&gt;:
 Handle &lt;code&gt;edit-config&lt;/code&gt; in 
&lt;code&gt;config.xml&lt;/code&gt; on prepare&lt;/li&gt;
+&lt;li&gt;Add github pull request template&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-8320&quot;&gt;CB-8320&lt;/a&gt;:
 We look for a &lt;code&gt;build.gradle&lt;/code&gt; to make sure it&amp;#39;s 
&lt;strong&gt;Android&lt;/strong&gt;, not an 
&lt;code&gt;AndroidManifest&lt;/code&gt;, because it moved&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11811&quot;&gt;CB-11811&lt;/a&gt;:
 Moved &lt;strong&gt;iOS&lt;/strong&gt; platform specific tests to 
&lt;code&gt;platform.spec.ios.js&lt;/code&gt;, added 
&lt;code&gt;test-ios&lt;/code&gt; npm run script.&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11811&quot;&gt;CB-11811&lt;/a&gt;:
 disable &lt;code&gt;CocoaPods&lt;/code&gt; e2e test temporarily since it is 
platform specific and requires cocoapods to be installed.&lt;/li&gt;
+&lt;li&gt;updated &lt;code&gt;save.spec.js&lt;/code&gt; to use latest 
&lt;strong&gt;android&lt;/strong&gt; and newer fb plugin&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11607&quot;&gt;CB-11607&lt;/a&gt;:
 breakout &lt;code&gt;cordova-create&lt;/code&gt; from 
&lt;code&gt;cordova-lib&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-9825&quot;&gt;CB-9825&lt;/a&gt;:
 framework tag spec parsing&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11698&quot;&gt;CB-11698&lt;/a&gt;:
 Fix plugin installation when restoring platform&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11679&quot;&gt;CB-11679&lt;/a&gt;:
 Speed up save/restore tests&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11205&quot;&gt;CB-11205&lt;/a&gt;:
 Respect saved variables when installing plugin&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11589&quot;&gt;CB-11589&lt;/a&gt;:
 Fix missing plugin files after restore&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;h2&gt;cordova-cli&lt;/h2&gt;
+
+&lt;ul&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-12039&quot;&gt;CB-12039&lt;/a&gt;:
 updated &lt;code&gt;cordova-lib&lt;/code&gt; to 
&lt;code&gt;6.4.0&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11976&quot;&gt;CB-11976&lt;/a&gt;:
 Updated &lt;code&gt;package.json&lt;/code&gt; engine key&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11976&quot;&gt;CB-11976&lt;/a&gt;:
 Add deprecated node version warning for 0.x&lt;/li&gt;
+&lt;li&gt;Add github pull request template&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11607&quot;&gt;CB-11607&lt;/a&gt;:
 breakout &lt;code&gt;cordova-create&lt;/code&gt; from 
&lt;code&gt;cordova-lib&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt; &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11623&quot;&gt;CB-11623&lt;/a&gt;:
 added back linking&lt;/li&gt;
+&lt;li&gt;Document cli - cordova plugin save&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11023&quot;&gt;CB-11023&lt;/a&gt;:
 Add doc for conflicting plugins&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;h2&gt;plugman&lt;/h2&gt;
+
+&lt;ul&gt;
+&lt;li&gt;Add github pull request template&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-12039&quot;&gt;CB-12039&lt;/a&gt;:
 updated &lt;code&gt;cordova-lib&lt;/code&gt; to 
&lt;code&gt;6.4.0&lt;/code&gt;&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;h2&gt;cordova-js&lt;/h2&gt;
+
+&lt;ul&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-12017&quot;&gt;CB-12017&lt;/a&gt;:
 updated dependencies in &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-3785&quot;&gt;CB-3785&lt;/a&gt;:
 add support for &lt;code&gt;EventListener interface&lt;/code&gt; to 
&lt;code&gt;Channel.prototype.subscribe&lt;/code&gt; &lt;/li&gt;
+&lt;li&gt;Add github pull request template&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11928&quot;&gt;CB-11928&lt;/a&gt;:
 removed jshint from &lt;code&gt;grunt.registerTask&lt;/code&gt; because it 
doesn&amp;#39;t work with node6&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-9967&quot;&gt;CB-9967&lt;/a&gt;:
 deleted legacy platform specific files&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11522&quot;&gt;CB-11522&lt;/a&gt;:
 [&lt;strong&gt;windows&lt;/strong&gt;] Make cordova-js handle 
&lt;code&gt;unknown&lt;/code&gt; type&lt;/li&gt;
+&lt;li&gt;SECURITY ISSUE: Resolve minimatch DDOS issue.&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11522&quot;&gt;CB-11522&lt;/a&gt;:
 Make &lt;code&gt;utils.clone&lt;/code&gt; handle properties 
gracefully&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;h2&gt;cordova-common&lt;/h2&gt;
+
+&lt;ul&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-12002&quot;&gt;CB-12002&lt;/a&gt;:
 Add &lt;code&gt;getAllowIntents()&lt;/code&gt; to 
&lt;code&gt;ConfigParser&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11998&quot;&gt;CB-11998&lt;/a&gt;:
 &lt;code&gt;cordova platform add&lt;/code&gt; error with 
&lt;code&gt;[email protected]&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11776&quot;&gt;CB-11776&lt;/a&gt;:
 Add test case for different &lt;code&gt;edit-config&lt;/code&gt; 
targets&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11908&quot;&gt;CB-11908&lt;/a&gt;:
 Add &lt;code&gt;edit-config&lt;/code&gt; to 
&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-11936&quot;&gt;CB-11936&lt;/a&gt;:
 Support four new &lt;strong&gt;App Transport Security (ATS)&lt;/strong&gt; 
keys&lt;/li&gt;
+&lt;li&gt;update &lt;code&gt;config.xml&lt;/code&gt; location if it is a 
&lt;strong&gt;Android Studio&lt;/strong&gt; project.&lt;/li&gt;
+&lt;li&gt;use &lt;code&gt;array&lt;/code&gt; methods and 
&lt;code&gt;object.keys&lt;/code&gt; for iterating. avoiding 
&lt;code&gt;for-in&lt;/code&gt; loops&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11517&quot;&gt;CB-11517&lt;/a&gt;:
 Allow &lt;code&gt;.folder&lt;/code&gt; matches&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11776&quot;&gt;CB-11776&lt;/a&gt;:
 check &lt;code&gt;edit-config&lt;/code&gt; target exists&lt;/li&gt;
+&lt;/ul&gt;
+</description>
+        <pubDate>Tue, 25 Oct 2016 00:00:00 -0700</pubDate>
+        
<link>https://cordova.apache.org/news/2016/10/25/tools-release.html</link>
+        <guid 
isPermaLink="true">https://cordova.apache.org/news/2016/10/25/tools-release.html</guid>
+        
+        <category>release</category>
+        
+        <category>tools</category>
+        
+        
+        <category>news</category>
+        
+      </item>
+    
+      <item>
+        <title>Cordova iOS 4.3.0</title>
+        <description>&lt;p&gt;We are happy to announce the minor version of 
&lt;code&gt;Cordova iOS 4.3.0&lt;/code&gt; has been released!&lt;/p&gt;
+
+&lt;p&gt;This release includes:&lt;/p&gt;
+
+&lt;ol&gt;
+&lt;li&gt;&lt;code&gt;CocoaPods&lt;/code&gt; support in &lt;a 
href=&quot;/docs/en/latest/plugin_ref/spec.html#framework&quot;&gt;&lt;code&gt;&amp;lt;framework&amp;gt;&lt;/code&gt;
 tags&lt;/a&gt; of plugins (static libraries only)&lt;/li&gt;
+&lt;li&gt;the &lt;a 
href=&quot;/docs/en/latest/guide/platforms/ios/index.html#xcode-build-flags&quot;&gt;&lt;code&gt;--buildFlag&lt;/code&gt;
 option&lt;/a&gt; to send extra &lt;code&gt;xcodebuild&lt;/code&gt; flags when 
building/running your app&lt;/li&gt;
+&lt;li&gt;Both Xcode 7 and Xcode 8 support (&lt;a 
href=&quot;/docs/en/latest/guide/platforms/ios/index.html#signing-an-app&quot;&gt;automatic
 code signing&lt;/a&gt;). Xcode 6 support has been dropped.&lt;/li&gt;
+&lt;li&gt;Support for the &lt;a 
href=&quot;/docs/en/latest/guide/appdev/whitelist/index.html&quot;&gt;four new 
App Transport Security&lt;/a&gt; (ATS) keys &lt;a 
href=&quot;https://developer.apple.com/library/content/documentation/General/Reference/InfoPlistKeyReference/Articles/CocoaKeys.html#//apple_ref/doc/uid/TP40009251-SW33&quot;&gt;introduced&lt;/a&gt;
 in iOS 10&lt;/li&gt;
+&lt;/ol&gt;
+
+&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
+
+&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; When updating 
&lt;strong&gt;iOS&lt;/strong&gt;, make sure to save your plugins as current 
unsaved plugins may not be reinstalled otherwise. Run the following command in 
your project to save your currently installed plugins into 
&lt;code&gt;config.xml&lt;/code&gt;:&lt;/p&gt;
+&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code 
class=&quot;language-&quot; data-lang=&quot;&quot;&gt;cordova plugin save
+&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
+&lt;p&gt;To upgrade:&lt;/p&gt;
+&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code 
class=&quot;language-&quot; data-lang=&quot;&quot;&gt;npm install -g cordova
+cd my_project
+cordova platform update [email protected]
+&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
+&lt;p&gt;To add it explicitly:&lt;/p&gt;
+&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code 
class=&quot;language-&quot; data-lang=&quot;&quot;&gt;cordova platform add 
[email protected]
+&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
+&lt;!--more--&gt;
+
+&lt;h2&gt;What&amp;#39;s new in iOS&lt;/h2&gt;
+
+&lt;ul&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-12054&quot;&gt;CB-12054&lt;/a&gt;
 - Remove npm absolute paths in node_modules/package.json (using 
removeNPMAbsolutePaths utility)&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-12054&quot;&gt;CB-12054&lt;/a&gt;
 - Updated checked-in node_modules&lt;/li&gt;
+&lt;li&gt;Update bundled ios-sim to 5.0.9&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-12003&quot;&gt;CB-12003&lt;/a&gt;
 - Updated node_modules for cordova-common 1.5.1&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11999&quot;&gt;CB-11999&lt;/a&gt;
 - platformAPIs contain js code that is deceptively uncallable&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11936&quot;&gt;CB-11936&lt;/a&gt;
 - Support four new App Transport Security (ATS) keys&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11952&quot;&gt;CB-11952&lt;/a&gt;
 - Introduce buildFlag option - adds buildFlag option for passing args to 
xcodebuild &lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11970&quot;&gt;CB-11970&lt;/a&gt;
 - Support CocoaPod pod specification other than version&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11729&quot;&gt;CB-11729&lt;/a&gt;
 - template file MainViewController.m has deprecated override 
shouldAutorotateToInterfaceOrientation&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11957&quot;&gt;CB-11957&lt;/a&gt;
 - Update docs for remote/local notifications removed in 
cordova-ios-4.0&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11920&quot;&gt;CB-11920&lt;/a&gt;
 - Add github pull request template&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11860&quot;&gt;CB-11860&lt;/a&gt;
 - Update packaging strategy for Xcode 8&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11771&quot;&gt;CB-11771&lt;/a&gt;
 - Deep symlink directories to target project instead of linking the directory 
itself&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-10078&quot;&gt;CB-10078&lt;/a&gt;
 - Refresh cached userAgent on version bump&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-9762&quot;&gt;CB-9762&lt;/a&gt;
   - Add launch storyboard support&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11792&quot;&gt;CB-11792&lt;/a&gt;
 - Fixed configuration file could not be parsed due to preprocessing 
errors&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11854&quot;&gt;CB-11854&lt;/a&gt;
 - Create Entitlements.plist file (one each for Debug and Release 
configurations)&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11863&quot;&gt;CB-11863&lt;/a&gt;
 - Update README&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11863&quot;&gt;CB-11863&lt;/a&gt;
 - Update travis.yml to xcode 7.3 image&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11863&quot;&gt;CB-11863&lt;/a&gt;
 - Update xcodebuild minimum version to 7.0.0&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11862&quot;&gt;CB-11862&lt;/a&gt;
 - Update ios-deploy minimum version required to 1.9.0&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11831&quot;&gt;CB-11831&lt;/a&gt;
 - Add missing LD&lt;em&gt;RUNPATH&lt;/em&gt;SEARCH_PATHS setting to the 
Release build configuration&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11845&quot;&gt;CB-11845&lt;/a&gt;
 - Add developmentTeam flag to cordova build and 
&amp;#39;developmentTeam&amp;#39; key in build.json buildConfig file&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11811&quot;&gt;CB-11811&lt;/a&gt;
 - CocoaPods error in cordova-lib tests&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11790&quot;&gt;CB-11790&lt;/a&gt;
 - Check that Cocoapods is installed by checking &lt;code&gt;pod 
install&lt;/code&gt; return code, show help text&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11791&quot;&gt;CB-11791&lt;/a&gt;
 - &amp;#39;pod install&amp;#39; should pass in the &amp;#39;--verbose&amp;#39; 
flag, if set&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11789&quot;&gt;CB-11789&lt;/a&gt;
 - Generated Podfile should not have an absolute path to .xcodeproj&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11792&quot;&gt;CB-11792&lt;/a&gt;
 - Add Cocoapods .xcconfig includes to build.xcconfig files in template, modify 
create script&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11712&quot;&gt;CB-11712&lt;/a&gt;
 - &lt;name&gt; changes in config.xml does a &amp;#39;search and replace 
all&amp;#39; for occurrences of the old name with the new name in the 
pbxproj&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11788&quot;&gt;CB-11788&lt;/a&gt;
 - Change create and build scripts to use .xcworkspace&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11731&quot;&gt;CB-11731&lt;/a&gt;
 - Re-read ios.json on every prepare&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11705&quot;&gt;CB-11705&lt;/a&gt;
 - Adding CordovaDefaultWebViewEngine configuration option to be able to use a 
different WebView as default and/or fallback&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11725&quot;&gt;CB-11725&lt;/a&gt;
 - Update appveyor node versions to 4 and 6, so they will always use the latest 
versions&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-9789&quot;&gt;CB-9789&lt;/a&gt;
 - Allow setting the default locale&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11703&quot;&gt;CB-11703&lt;/a&gt;
 - travis ci setup is still using 0.10.32 node (specify specific version, using 
LTS version)&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11706&quot;&gt;CB-11706&lt;/a&gt;
 - travis ci setup is not running unit-tests&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11238&quot;&gt;CB-11238&lt;/a&gt;
 - Expose supportedOrientations methods so native code can override the current 
behavior&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11648&quot;&gt;CB-11648&lt;/a&gt;
 - Make CDVViewController send notifications when UIViewController methods are 
called&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-9825&quot;&gt;CB-9825&lt;/a&gt;
 - Cocoapod integration for plugins&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11528&quot;&gt;CB-11528&lt;/a&gt;
 - Remove verbose mode from xcrun in build.js to prevent logging of environment 
variables.&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11270&quot;&gt;CB-11270&lt;/a&gt;
 - Handle JavaScript onclick handler navigation&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11535&quot;&gt;CB-11535&lt;/a&gt;
 &lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-10361&quot;&gt;CB-10361&lt;/a&gt;
 - ios: fix bug with remove frameworks&lt;/li&gt;
+&lt;/ul&gt;
+</description>
+        <pubDate>Mon, 24 Oct 2016 00:00:00 -0700</pubDate>
+        
<link>https://cordova.apache.org/announcements/2016/10/24/ios-release.html</link>
+        <guid 
isPermaLink="true">https://cordova.apache.org/announcements/2016/10/24/ios-release.html</guid>
+        
+        <category>news</category>
+        
+        <category>releases</category>
+        
+        
+        <category>announcements</category>
+        
+      </item>
+    
+      <item>
+        <title>Apache Cordova Windows 4.4.3</title>
+        <description>&lt;p&gt;We are happy to announce that 
&lt;code&gt;Cordova Windows 4.4.3&lt;/code&gt; has been released!&lt;/p&gt;
+
+&lt;p&gt;This release fixes some major issues with application activation, 
splashscreen and VS project generation.&lt;br&gt;
+See release notes below for more detals and the rest of the changes.&lt;/p&gt;
+
+&lt;p&gt;Cordova CLI starting from version 6.3.0 will automatically start 
using this version of &lt;strong&gt;cordova-windows&lt;/strong&gt; when 
creating new projects.&lt;/p&gt;
+
+&lt;p&gt;To upgrade:&lt;/p&gt;
+&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code 
class=&quot;language-&quot; data-lang=&quot;&quot;&gt;npm install -g cordova
+cd my_project
+cordova platform update [email protected]
+&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
+&lt;p&gt;To add it explicitly:&lt;/p&gt;
+&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code 
class=&quot;language-&quot; data-lang=&quot;&quot;&gt;cordova platform add 
[email protected]
+&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
+&lt;!--more--&gt;
+
+&lt;h2&gt;What&amp;#39;s new in Windows platform&lt;/h2&gt;
+
+&lt;ul&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-12044&quot;&gt;CB-12044&lt;/a&gt;
 Fix splashscreen image path for ms-appx on Windows&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-12042&quot;&gt;CB-12042&lt;/a&gt;
 Copy base.js to www directory at create&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11933&quot;&gt;CB-11933&lt;/a&gt;
 Add uap prefixes for capabilities at plugin install&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11933&quot;&gt;CB-11933&lt;/a&gt;
 Remove capabilities from manifest&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11825&quot;&gt;CB-11825&lt;/a&gt;
 Windows dll file won&amp;#39;t be copied as resource while adding custom 
plugin to a UWP project&lt;/li&gt;
+&lt;li&gt;output message, catch exception if require fails, change 
eventEmitter to events to be consistent with ios+android&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11522&quot;&gt;CB-11522&lt;/a&gt;
 [windows] Make cordova-js handle &amp;#39;unknown&amp;#39; type&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11857&quot;&gt;CB-11857&lt;/a&gt;
 Fixed VS 2015 detection on Windows 10 Anniversary&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-10738&quot;&gt;CB-10738&lt;/a&gt;
 Use hardcoded Id attribute in Win10 manifest&lt;/li&gt;
+&lt;li&gt;Update bundled cordova-common dependency to 1.4.1&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11658&quot;&gt;CB-11658&lt;/a&gt;
 activated event is not fired on Windows 10 RS1&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11657&quot;&gt;CB-11657&lt;/a&gt;
 Add bom to www after plugin operations&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11478&quot;&gt;CB-11478&lt;/a&gt;
 Parse --archs option consistently&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11558&quot;&gt;CB-11558&lt;/a&gt;
 Make windows plugin rm remove ProjectReference items&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11579&quot;&gt;CB-11579&lt;/a&gt;
 windows: fix bug with &amp;#39;cordova clean windows&amp;#39;&lt;/li&gt;
+&lt;/ul&gt;
+</description>
+        <pubDate>Mon, 24 Oct 2016 00:00:00 -0700</pubDate>
+        
<link>https://cordova.apache.org/announcements/2016/10/24/cordova-windows-4.4.3.html</link>
+        <guid 
isPermaLink="true">https://cordova.apache.org/announcements/2016/10/24/cordova-windows-4.4.3.html</guid>
+        
+        <category>news</category>
+        
+        <category>releases</category>
+        
+        
+        <category>announcements</category>
+        
+      </item>
+    
+      <item>
+        <title>Cordova Android 6.0.0 Released!</title>
+        <description>&lt;p&gt;We are happy to announce a major release 
for&lt;code&gt;Cordova Android 6.0.0&lt;/code&gt; has been released! &lt;/p&gt;
+
+&lt;p&gt;Run the following command in your project to save your currently 
installed plugins into &lt;code&gt;config.xml&lt;/code&gt;:&lt;/p&gt;
+&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code 
class=&quot;language-&quot; data-lang=&quot;&quot;&gt;cordova plugin save
+&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
+&lt;p&gt;To upgrade:&lt;/p&gt;
+&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code 
class=&quot;language-&quot; data-lang=&quot;&quot;&gt;npm install -g cordova
+cd my_project
+cordova platform update [email protected]
+&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
+&lt;p&gt;To add it explicitly:&lt;/p&gt;
+&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code 
class=&quot;language-&quot; data-lang=&quot;&quot;&gt;cordova platform add 
[email protected]
+&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
+&lt;!--more--&gt;
+
+&lt;h2&gt;What&amp;#39;s new in Android&lt;/h2&gt;
+
+&lt;p&gt;This release adds significant functionality, and also introduces a 
number
+of breaking changes.  Some of the changes to the code base will be of
+particular interest to third party webview plugin developers.&lt;/p&gt;
+
+&lt;h4&gt;Major Changes&lt;/h4&gt;
+
+&lt;ul&gt;
+&lt;li&gt;Primary bridge is the &lt;code&gt;EVAL_BRIDGE&lt;/code&gt;, which 
tells the WebView to execute JS directly.  This is more stable than the 
&lt;code&gt;ONLINE_EVENT&lt;/code&gt; bridge&lt;/li&gt;
+&lt;li&gt;Full Support for &lt;code&gt;Android Nougat (API 
24)&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;code&gt;Ice Cream Sandwich Support&lt;/code&gt; has been 
&lt;strong&gt;deprecated&lt;/strong&gt;.  Minimum Supported 
&lt;strong&gt;Android&lt;/strong&gt; Version is &lt;code&gt;Jellybean (API 16/ 
Android 4.1)&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;Plugin Installation now &lt;strong&gt;CLEANS&lt;/strong&gt; the 
build directory, this speeds up gradle build times and allows for CLI 
develoment to be more predictable&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;p&gt;Changes For Third-Party &lt;code&gt;WebView&lt;/code&gt; 
Developers:&lt;/p&gt;
+
+&lt;ul&gt;
+&lt;li&gt;&lt;code&gt;executeJavascript&lt;/code&gt; method added and is an 
abstract method that must be implemented&lt;/li&gt;
+&lt;li&gt;the &lt;code&gt;EVAL_BRIDGE&lt;/code&gt; must be added to the 
&lt;code&gt;WebView&lt;/code&gt;&lt;/li&gt;
+&lt;/ul&gt;
+
+&lt;h4&gt;Curated Changes from the Git Commit Logs, check release notes for a 
more complete list&lt;/h4&gt;
+
+&lt;ul&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11083&quot;&gt;CB-11083&lt;/a&gt;:
 Fix to deal with custom frameworks with their own 
&lt;code&gt;Gradle&lt;/code&gt; configuration&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-8722&quot;&gt;CB-8722&lt;/a&gt;:
 Move icons from drawable to &lt;code&gt;mipmap&lt;/code&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11964&quot;&gt;CB-11964&lt;/a&gt;:
 Call clean after plugin install and mock it in tests&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11935&quot;&gt;CB-11935&lt;/a&gt;:
 Does a best-effort attempt to pause any processing that can be paused safely, 
such as animations and geolocation.&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11640&quot;&gt;CB-11640&lt;/a&gt;:
  Changing requirements check to ask for &lt;strong&gt;Java 
8&lt;/strong&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apahce.org/jira/browse/CB-11907&quot;&gt;CB-11907&lt;/a&gt;:
 Bumping Gradle to work with &lt;strong&gt;Android Studio 2.2&lt;/strong&gt; 
and the &lt;strong&gt;Android Gradle Plugin&lt;/strong&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a 
href=&quot;https://issues.apahce.org/jira/browse/CB-11907&quot;&gt;CB-11078&lt;/a&gt;:
 Empty string for &lt;code&gt;BackgroundColor&lt;/code&gt; preference crashes 
application.&lt;/li&gt;
+&lt;/ul&gt;
+</description>
+        <pubDate>Mon, 24 Oct 2016 00:00:00 -0700</pubDate>
+        
<link>https://cordova.apache.org/announcements/2016/10/24/android-release.html</link>
+        <guid 
isPermaLink="true">https://cordova.apache.org/announcements/2016/10/24/android-release.html</guid>
+        
+        <category>news</category>
+        
+        <category>releases</category>
+        
+        
+        <category>announcements</category>
+        
+      </item>
+    
+      <item>
         <title>Minor Releases</title>
         <description>&lt;p&gt;The following were recently released:&lt;/p&gt;
 
@@ -718,271 +1038,6 @@ cordova platform update [email protected]
         
         <category>news</category>
         
-        <category>releases</category>
-        
-        
-        <category>announcements</category>
-        
-      </item>
-    
-      <item>
-        <title>Tools Release</title>
-        <description>&lt;p&gt;New updates of &lt;code&gt;cordova&lt;/code&gt;, 
&lt;code&gt;cordova-lib&lt;/code&gt;, &lt;code&gt;cordova-common&lt;/code&gt; 
and &lt;code&gt;cordova-fetch&lt;/code&gt; are now live!&lt;/p&gt;
-
-&lt;ul&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/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-lib&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;/ul&gt;
-
-&lt;p&gt;Release Highlights:&lt;/p&gt;
-
-&lt;ul&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11023&quot;&gt;CB-11023&lt;/a&gt;
 Add edit-config functionality&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11412&quot;&gt;CB-11412&lt;/a&gt;
 template support for www folders&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11349&quot;&gt;CB-11349&lt;/a&gt;
 added --fetch and cordova fetch to create --template&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11491&quot;&gt;CB-11491&lt;/a&gt;
 Introduce before_deploy hook&lt;/li&gt;
-&lt;/ul&gt;
-
-&lt;p&gt;Starting from this version app and plugin developers will get the 
ability to edit XML configuration files from 
&lt;code&gt;config.xml&lt;/code&gt; and
-&lt;code&gt;plugin.xml&lt;/code&gt; files using 
&lt;code&gt;edit-config&lt;/code&gt; directive. The documentation for this 
feature is still under development but for now you can refer to this
-&lt;a 
href=&quot;https://github.com/apache/cordova-docs/pull/614/files?short_path=05fc570#diff-05fc570968adb1e99e14d627e082f7ea&quot;&gt;pull
 request&lt;/a&gt;&lt;/p&gt;
-
-&lt;p&gt;Also the &lt;code&gt;cordova-fetch&lt;/code&gt; feature is now 
available for &lt;code&gt;create&lt;/code&gt; command and you can use it when 
creating new app from template.&lt;/p&gt;
-&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code 
class=&quot;language-&quot; data-lang=&quot;&quot;&gt;cordova create Foo 
--template TEMPLATE_NAME --fetch
-&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
-&lt;p&gt;To update your cordova CLI:&lt;/p&gt;
-&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code 
class=&quot;language-&quot; data-lang=&quot;&quot;&gt;npm install -g 
cordova@latest
-&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
-&lt;p&gt;Make sure to report any issues you find at &lt;a 
href=&quot;http://issues.cordova.io/&quot;&gt;issues.cordova.io&lt;/a&gt;!&lt;/p&gt;
-
-&lt;!--more--&gt;
-
-&lt;h1&gt;Changes include:&lt;/h1&gt;
-
-&lt;h2&gt;cordova-lib&lt;/h2&gt;
-
-&lt;ul&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11491&quot;&gt;CB-11491&lt;/a&gt;
 Introduce before_deploy hook&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11412&quot;&gt;CB-11412&lt;/a&gt;
 template support for www folders&lt;/li&gt;
-&lt;li&gt;Fix config.xml path in PlatformApi.prepare&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11412&quot;&gt;CB-11412&lt;/a&gt;
 improve template implementation&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11164&quot;&gt;CB-11164&lt;/a&gt;
 Allow forced dependent plugin removal&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11339&quot;&gt;CB-11339&lt;/a&gt;
 Add a warning about prerelease platform usage&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11349&quot;&gt;CB-11349&lt;/a&gt;
 added --fetch and cordova fetch to create --template&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11337&quot;&gt;CB-11337&lt;/a&gt;
 Use latest released platform version in e2e tests&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11274&quot;&gt;CB-11274&lt;/a&gt;
 Platform browser: wrong path for config.xml&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11274&quot;&gt;CB-11274&lt;/a&gt;
 Make serve dashboard take config.xml -&amp;gt; content.src entry point into 
account&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11261&quot;&gt;CB-11261&lt;/a&gt;
 Cut out &amp;#39;-nightly&amp;#39; prerelease tag when checking plugin 
engines&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-9858&quot;&gt;CB-9858&lt;/a&gt;
 added fetch tests to travis&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-9858&quot;&gt;CB-9858&lt;/a&gt;
 fixed failing travis and appveyor tests&lt;/li&gt;
-&lt;/ul&gt;
-
-&lt;h2&gt;cordova-cli&lt;/h2&gt;
-
-&lt;ul&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11412&quot;&gt;CB-11412&lt;/a&gt;
 removed link-to, aliased copy-from to template&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11349&quot;&gt;CB-11349&lt;/a&gt;
 passing --fetch to create&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11284&quot;&gt;CB-11284&lt;/a&gt;
 Telemetry: Track platforms/plugins subcommands(add/rm/etc...)&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11262&quot;&gt;CB-11262&lt;/a&gt;
 Add a warning about prerelease lib/cli usage&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11263&quot;&gt;CB-11263&lt;/a&gt;
 &amp;#39;cordova telemetry help&amp;#39; should display help text&lt;/li&gt;
-&lt;/ul&gt;
-
-&lt;h2&gt;cordova-common&lt;/h2&gt;
-
-&lt;ul&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11023&quot;&gt;CB-11023&lt;/a&gt;
 Add edit-config functionality&lt;/li&gt;
-&lt;/ul&gt;
-
-&lt;h2&gt;cordova-fetch&lt;/h2&gt;
-
-&lt;ul&gt;
-&lt;li&gt;Fixed broken fetch tests&lt;/li&gt;
-&lt;li&gt;enhanced cordova-fetch to better handle multiple fetches via git 
urls&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11252&quot;&gt;CB-11252&lt;/a&gt;
 Fix cordova-fetch tests&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11252&quot;&gt;CB-11252&lt;/a&gt;
 minor fix to trimID function in cordova-fetch&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11252&quot;&gt;CB-11252&lt;/a&gt;
 Fix cordova fetch for scoped packages&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11252&quot;&gt;CB-11252&lt;/a&gt;
 added scoped package test to cordova-fetch&lt;/li&gt;
-&lt;/ul&gt;
-
-&lt;h2&gt;Pinned Platform Versions for &lt;strong&gt;Cordova CLI 
6.3.0&lt;/strong&gt;&lt;/h2&gt;
-
-&lt;ul&gt;
-&lt;li&gt;Cordova Amazon-FireOS: ~3.6.3&lt;/li&gt;
-&lt;li&gt;Cordova Android: ~5.2.0&lt;/li&gt;
-&lt;li&gt;Cordova BlackBerry10: ~3.8.0&lt;/li&gt;
-&lt;li&gt;Cordova Browser: ~4.1.0&lt;/li&gt;
-&lt;li&gt;Cordova FirefoxOS: ~3.6.3&lt;/li&gt;
-&lt;li&gt;Cordova iOS: ~4.2.0&lt;/li&gt;
-&lt;li&gt;Cordova OSX: ~4.0.1&lt;/li&gt;
-&lt;li&gt;Cordova Ubuntu: ~4.3.4&lt;/li&gt;
-&lt;li&gt;Cordova Windows: ~4.4.0&lt;/li&gt;
-&lt;li&gt;Cordova WebOS: ~3.7.0&lt;/li&gt;
-&lt;li&gt;Cordova WP8: ~3.8.2&lt;/li&gt;
-&lt;/ul&gt;
-</description>
-        <pubDate>Wed, 13 Jul 2016 00:00:00 -0700</pubDate>
-        
<link>https://cordova.apache.org/news/2016/07/13/tools-release.html</link>
-        <guid 
isPermaLink="true">https://cordova.apache.org/news/2016/07/13/tools-release.html</guid>
-        
-        <category>release</category>
-        
-        <category>tools</category>
-        
-        
-        <category>news</category>
-        
-      </item>
-    
-      <item>
-        <title>Apache Cordova Windows 4.4.1</title>
-        <description>&lt;p&gt;We are happy to announce that 
&lt;code&gt;Cordova Windows 4.4.1&lt;/code&gt; has been released!&lt;/p&gt;
-
-&lt;p&gt;In this release we have fixed a number of issues, related to 
application resuming, splash screen functionality and others.
-Also we have added an ability to specify location of 
&lt;code&gt;msbuild&lt;/code&gt; executable to build project.&lt;/p&gt;
-
-&lt;p&gt;The next Cordova CLI version will automatically start using this 
version of &lt;strong&gt;Cordova-Windows&lt;/strong&gt; when creating new 
projects.&lt;/p&gt;
-
-&lt;p&gt;To upgrade:&lt;/p&gt;
-&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code 
class=&quot;language-&quot; data-lang=&quot;&quot;&gt;npm install -g cordova
-cd my_project
-cordova platform update [email protected]
-&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
-&lt;p&gt;To add it explicitly:&lt;/p&gt;
-&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code 
class=&quot;language-&quot; data-lang=&quot;&quot;&gt;cordova platform add 
[email protected]
-&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
-&lt;!--more--&gt;
-
-&lt;h2&gt;What&amp;#39;s new in Windows platform&lt;/h2&gt;
-
-&lt;ul&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11522&quot;&gt;CB-11522&lt;/a&gt;
 Save raw &amp;#39;detail&amp;#39; object to activation context&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11538&quot;&gt;CB-11538&lt;/a&gt;
 Update README with information about logging&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11537&quot;&gt;CB-11537&lt;/a&gt;
 Do not duplicate log entries when printing logs&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11548&quot;&gt;CB-11548&lt;/a&gt;
 windows: Respect user-specified msbuild location&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11516&quot;&gt;CB-11516&lt;/a&gt;
 windows: Preparing icons w/ target fails&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11470&quot;&gt;CB-11470&lt;/a&gt;
 App crashes when trying to open from another app using Custom URL 
(Protocol)&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11443&quot;&gt;CB-11443&lt;/a&gt;
 Splashscreen is created the second time on resume on Windows&lt;/li&gt;
-&lt;/ul&gt;
-</description>
-        <pubDate>Wed, 13 Jul 2016 00:00:00 -0700</pubDate>
-        
<link>https://cordova.apache.org/announcements/2016/07/13/cordova-windows-4.4.1.html</link>
-        <guid 
isPermaLink="true">https://cordova.apache.org/announcements/2016/07/13/cordova-windows-4.4.1.html</guid>
-        
-        <category>news</category>
-        
-        <category>releases</category>
-        
-        
-        <category>announcements</category>
-        
-      </item>
-    
-      <item>
-        <title>Cordova Android 5.2.1</title>
-        <description>&lt;p&gt;We are happy to announce that 
&lt;code&gt;Cordova Android 5.2.1&lt;/code&gt; has been released!&lt;/p&gt;
-
-&lt;p&gt;This release fixes a small yet annoying bug that results in 
impossibility to deploy app on emulator with API 23 image.&lt;/p&gt;
-
-&lt;p&gt;This version will be used by default in next Cordova versions. As for 
now to install this version of &lt;strong&gt;Cordova-android&lt;/strong&gt; 
you&amp;#39;ll need to specify version explicitly.&lt;/p&gt;
-
-&lt;p&gt;To upgrade:&lt;/p&gt;
-&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code 
class=&quot;language-&quot; data-lang=&quot;&quot;&gt;npm install -g cordova
-cd my_project
-cordova platform update [email protected]
-&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
-&lt;p&gt;To add it explicitly:&lt;/p&gt;
-&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code 
class=&quot;language-&quot; data-lang=&quot;&quot;&gt;cordova platform add 
[email protected]
-&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
-&lt;!--more--&gt;
-
-&lt;h2&gt;What&amp;#39;s new in Android platform&lt;/h2&gt;
-
-&lt;ul&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-9489&quot;&gt;CB-9489&lt;/a&gt;
 Fixed &amp;quot;endless waiting for emulator&amp;quot; issue&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11481&quot;&gt;CB-11481&lt;/a&gt;
 android-library is deprecated use com.android.library instead&lt;/li&gt;
-&lt;/ul&gt;
-
-&lt;p&gt;You can also take a look at the changes included in the previous 
release of &lt;code&gt;Android&lt;/code&gt; platform - 
&lt;code&gt;cordova-android 5.2.0&lt;/code&gt; - &lt;a 
href=&quot;http://cordova.apache.org/announcements/2016/07/02/android-5.2.0.html&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;
-</description>
-        <pubDate>Mon, 11 Jul 2016 00:00:00 -0700</pubDate>
-        
<link>https://cordova.apache.org/announcements/2016/07/11/cordova-android-5.2.1.html</link>
-        <guid 
isPermaLink="true">https://cordova.apache.org/announcements/2016/07/11/cordova-android-5.2.1.html</guid>
-        
-        <category>news</category>
-        
-        <category>releases</category>
-        
-        
-        <category>announcements</category>
-        
-      </item>
-    
-      <item>
-        <title>Cordova Android 5.2.0</title>
-        <description>&lt;p&gt;We are happy to announce that 
&lt;code&gt;Cordova Android 5.2.0&lt;/code&gt; has been released!&lt;/p&gt;
-
-&lt;p&gt;This release includes many bug fixes. Read below for the full 
changelog.&lt;/p&gt;
-
-&lt;p&gt;A new version of the &lt;code&gt;cordova-cli&lt;/code&gt; will need 
to be released to pin this version of 
&lt;strong&gt;cordova-android&lt;/strong&gt; as the default version when 
creating a new project. If you want to start using this version now, make sure 
to specify the version when doing a &lt;code&gt;cordova platform 
add/update&lt;/code&gt;.&lt;/p&gt;
-
-&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; When updating, make sure to save 
your plugins as current unsaved plugins may not be reinstalled otherwise. Run 
the following command in your project to save your currently installed plugins 
into &lt;code&gt;config.xml&lt;/code&gt;:&lt;/p&gt;
-&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code 
class=&quot;language-&quot; data-lang=&quot;&quot;&gt;cordova plugin save
-&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
-&lt;p&gt;To upgrade:&lt;/p&gt;
-&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code 
class=&quot;language-&quot; data-lang=&quot;&quot;&gt;npm install -g cordova
-cd my_project
-cordova platform update [email protected]
-&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
-&lt;p&gt;To add it explicitly:&lt;/p&gt;
-&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code 
class=&quot;language-&quot; data-lang=&quot;&quot;&gt;cordova platform add 
[email protected]
-&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
-&lt;!--more--&gt;
-
-&lt;h2&gt;What&amp;#39;s new in Android platform&lt;/h2&gt;
-
-&lt;ul&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11383&quot;&gt;CB-11383&lt;/a&gt;
 Update to gradle for using &lt;code&gt;jcenter&lt;/code&gt; and correct 
Application plugin&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11365&quot;&gt;CB-11365&lt;/a&gt;
 fixed plugin rm issue with emit being 
&lt;code&gt;undefined&lt;/code&gt;&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11117&quot;&gt;CB-11117&lt;/a&gt;
 Use &lt;code&gt;FileUpdater&lt;/code&gt; to optimize prepare for 
&lt;strong&gt;android&lt;/strong&gt; platform&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-10096&quot;&gt;CB-10096&lt;/a&gt;
 Upgrade test project to &lt;code&gt;Gradle Plugin 2.1.0&lt;/code&gt;&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11292&quot;&gt;CB-11292&lt;/a&gt;
 fix broken &lt;code&gt;MessageChannel&lt;/code&gt; after plugins are 
recreated&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11259&quot;&gt;CB-11259&lt;/a&gt;
 Improving build output&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-10096&quot;&gt;CB-10096&lt;/a&gt;
 Upgrading to &lt;code&gt;Gradle Plugin 2.1.0&lt;/code&gt;&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11198&quot;&gt;CB-11198&lt;/a&gt;
 Skip &lt;strong&gt;android&lt;/strong&gt; target sdk check. This closes 
#303.&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11138&quot;&gt;CB-11138&lt;/a&gt;
 Reuse &lt;code&gt;PluginManager&lt;/code&gt; from 
&lt;code&gt;common&lt;/code&gt; to add/rm plugins&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11133&quot;&gt;CB-11133&lt;/a&gt;
 Handle &lt;strong&gt;android&lt;/strong&gt; emulator start failure&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11132&quot;&gt;CB-11132&lt;/a&gt;
 Fix Error: Cannot read property &lt;code&gt;match&lt;/code&gt; of undefined in 
&lt;code&gt;cordova-android&lt;/code&gt; 
&lt;code&gt;emulator.js&lt;/code&gt;&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11015&quot;&gt;CB-11015&lt;/a&gt;
 Error adding plugin with gradle extras&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11095&quot;&gt;CB-11095&lt;/a&gt;
 Fix plugin add/removal when running on &lt;code&gt;Node 
v0.10&lt;/code&gt;&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-11022&quot;&gt;CB-11022&lt;/a&gt;
 Duplicate www files to both destinations on plugin operations&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-10964&quot;&gt;CB-10964&lt;/a&gt;
 Handle &lt;code&gt;build.json&lt;/code&gt; file starting with a BOM.&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-10963&quot;&gt;CB-10963&lt;/a&gt;
 Handle overlapping permission requests from plugins&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-8582&quot;&gt;CB-8582&lt;/a&gt;
 Obscure &lt;code&gt;INSTALL_FAILED_VERSION_DOWNGRADE&lt;/code&gt; error when 
installing app&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-10862&quot;&gt;CB-10862&lt;/a&gt;
 Cannot set &lt;code&gt;minsdkversion&lt;/code&gt;&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-10896&quot;&gt;CB-10896&lt;/a&gt;
 We never enabled cookies on the &lt;code&gt;WebView&lt;/code&gt; 
proper&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-10837&quot;&gt;CB-10837&lt;/a&gt;
 Support platform-specific orientation on 
&lt;strong&gt;Android&lt;/strong&gt;&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-10600&quot;&gt;CB-10600&lt;/a&gt;
 &lt;code&gt;cordova run android --release&lt;/code&gt; does not use signed and 
zip-aligned version of &lt;code&gt;APK&lt;/code&gt;&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-9710&quot;&gt;CB-9710&lt;/a&gt;
 Fixing issues parsing &lt;code&gt;android avd list&lt;/code&gt; output for 
certain AVDs which resulted in them not being included in the selection process 
even if they are the best match.&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-10888&quot;&gt;CB-10888&lt;/a&gt;
 Enable coverage reports collection via codecov&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-10846&quot;&gt;CB-10846&lt;/a&gt;
 Add Travis and AppVeyor badges to readme&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-10846&quot;&gt;CB-10846&lt;/a&gt;
 Add AppVeyor configuration&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-10749&quot;&gt;CB-10749&lt;/a&gt;
 Use &lt;code&gt;cordova-common.CordovaLogger&lt;/code&gt; in 
&lt;code&gt;cordova-android&lt;/code&gt;&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-10673&quot;&gt;CB-10673&lt;/a&gt;
 fixed conflicting plugin install issue with overlapped 
&lt;code&gt;&amp;lt;source-file&amp;gt;&lt;/code&gt; tag. Add 
&lt;code&gt;--force&lt;/code&gt; flag.&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-8976&quot;&gt;CB-8976&lt;/a&gt;
 Removing the auto-version for non-Crosswalk applications&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-10768&quot;&gt;CB-10768&lt;/a&gt;
 Use &lt;code&gt;cordova-common.superspawn&lt;/code&gt; in 
&lt;code&gt;GradleBuilder&lt;/code&gt;&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-10729&quot;&gt;CB-10729&lt;/a&gt;
 Move plugin handlers tests for into platform&amp;#39;s repo&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-10669&quot;&gt;CB-10669&lt;/a&gt;
 &lt;code&gt;cordova run --list&lt;/code&gt; cannot find 
&lt;code&gt;adb&lt;/code&gt;&lt;/li&gt;
-&lt;li&gt;&lt;a 
href=&quot;https://issues.apache.org/jira/browse/CB-10660&quot;&gt;CB-10660&lt;/a&gt;
 fixed the exception when removing a non-existing directory.&lt;/li&gt;
-&lt;/ul&gt;
-</description>
-        <pubDate>Sat, 02 Jul 2016 00:00:00 -0700</pubDate>
-        
<link>https://cordova.apache.org/announcements/2016/07/02/android-5.2.0.html</link>
-        <guid 
isPermaLink="true">https://cordova.apache.org/announcements/2016/07/02/android-5.2.0.html</guid>
-        
-        <category>news</category>
-        
         <category>releases</category>
         
         

Modified: cordova/site/public/news/2016/10/04/small-releases.html
URL: 
http://svn.apache.org/viewvc/cordova/site/public/news/2016/10/04/small-releases.html?rev=1766733&r1=1766732&r2=1766733&view=diff
==============================================================================
--- cordova/site/public/news/2016/10/04/small-releases.html (original)
+++ cordova/site/public/news/2016/10/04/small-releases.html Wed Oct 26 20:28:35 
2016
@@ -198,6 +198,26 @@ cordova plugin add cordova-plugin-geoloc
             </div>
             <div class="col-sm-6">
                 
+                    <a 
href="/announcements/2016/10/24/android-release.html">Next</a>
+                    <br>
+                    <br>
+                    <a class="title" 
href="/announcements/2016/10/24/android-release.html">Cordova Android 6.0.0 
Released!</a>
+                    <div class="date"> 24 Oct 2016 - By Joe Bowser </div>
+                    <p class="content">
+                        <!--
+                            NOTE:
+                                the markdownify filter is used here
+                                because posts are rendered in sequence;
+                                that is, the next post's content isn't
+                                yet rendered at the time that this post
+                                is being rendered, so page.next.excerpt
+                                is still in Markdown and not HTML
+
+                            Reference: 
https://github.com/jekyll/jekyll/issues/2860
+                        -->
+                        We are happy to announce a major release forCordova 
Android 6.0.0 has...
+                    </p>
+                
             </div>
         </div>
     </footer>



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

Reply via email to