Author: janpio
Date: Sat Jun 13 10:27:50 2020
New Revision: 1878801
URL: http://svn.apache.org/viewvc?rev=1878801&view=rev
Log:
Updated docs
Added:
cordova/site/public/news/2020/06/13/
cordova/site/public/news/2020/06/13/plugins-release.html
Modified:
cordova/site/public/blog/index.html
cordova/site/public/docs/en/dev/reference/cordova-plugin-network-information/index.html
cordova/site/public/feed.xml
cordova/site/public/news/2020/06/01/tools-release.html
cordova/site/public/sitemap.xml
cordova/site/public/static/js/index.js
Modified: cordova/site/public/blog/index.html
URL:
http://svn.apache.org/viewvc/cordova/site/public/blog/index.html?rev=1878801&r1=1878800&r2=1878801&view=diff
==============================================================================
--- cordova/site/public/blog/index.html (original)
+++ cordova/site/public/blog/index.html Sat Jun 13 10:27:50 2020
@@ -123,6 +123,55 @@
<li>
<header>
+ <div class="adorner" blogTime="Sat, 13 Jun 2020 00:00:00
+0000"></div>
+ <h2 class="title">
+ <a href="/news/2020/06/13/plugins-release.html">Splash
Screen and InAppBrowser plugin Released!</a>
+ </h2>
+ <div class="details">
+ <span class="date">13 Jun 2020</span>
+ - by
+ <span class="author">
+
+ <a
href="https://twitter.com/niklasmaerz">Niklas Merz</a>
+
+ </span>
+ <a class="comment"
href="/news/2020/06/13/plugins-release.html#disqus_thread"></a>
+ </div>
+ </header>
+ <section class="post-excerpt">
+ <p><p>We are happy to announce that we have just released
an update to some plugins!</p>
+
+<ul>
+<li><a
href="https://www.npmjs.org/package/cordova-plugin-inappbrowser">[email protected]</a></li>
+<li><a
href="https://www.npmjs.org/package/cordova-plugin-splashscreen">[email protected]</a></li>
+</ul>
+
+<h2>Release Highlights</h2>
+
+<h3>InAppBrowser</h3>
+
+<p>The most notable changes in this major release are:</p>
+
+<ul>
+<li>The Cordova-iOS 6.x platform removes all <code>UIWebView</code> code and
this version also removes the <code>UIWebView</code> code from the InAppBrowser
plugin <a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/635">GH-635</a>.</li>
+<li>For backwards compatibility, this plugin used to hook window.open.
However, the plugin-installed hook of window.open could have unintended side
effects (especially if this plugin is included only as a dependency of another
plugin) and it has been removed in this release. <a
href="https://github.com/apache/cordova-plugin-inappbrowser/issues/599">GH-599</a></li>
+<li>The InAppBrowser plugin used to implement its own status bar. It has been
removed in this release to correctly display the content of the iOS status bar
without overlapping the content in the InAppBrowser on different devices. <a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/656">GH-656</a></li>
+</ul>
+
+<h3>Splash Screen</h3>
+
+<p>In the Cordova-iOS 6.x platform, the splash screen feature has been
integrated into its core and no longer needs this plugin. This release prevents
the plugin from being added to the iOS 6.x platform.</p>
+
+<ul>
+<li><a
href="https://github.com/apache/cordova-plugin-splashscreen/pull/261">GH-261</a>
chore: add <code>cordova-ios</code> requirement <6.0.0</li>
+</ul>
+</p>
+ <div><a
href="/news/2020/06/13/plugins-release.html">More...</a></div>
+ </section>
+ </li>
+
+ <li>
+ <header>
<div class="adorner" blogTime="Mon, 01 Jun 2020 00:00:00
+0000"></div>
<h2 class="title">
<a href="/news/2020/06/01/tools-release.html">Cordova
Create, Common, and Xcode Released!</a>
@@ -9458,7 +9507,7 @@ window.twttr = (function(d, s, id) {
<script>
window.onload = function(){
setTimeout(function(){
- var lastPostTime = new Date("Mon, 01 Jun 2020 00:00:00
+0000").getTime();
+ var lastPostTime = new Date("Sat, 13 Jun 2020 00:00:00
+0000").getTime();
setCookie("visitTime", lastPostTime, 365);
}, 2000);
};
Modified:
cordova/site/public/docs/en/dev/reference/cordova-plugin-network-information/index.html
URL:
http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/reference/cordova-plugin-network-information/index.html?rev=1878801&r1=1878800&r2=1878801&view=diff
==============================================================================
---
cordova/site/public/docs/en/dev/reference/cordova-plugin-network-information/index.html
(original)
+++
cordova/site/public/docs/en/dev/reference/cordova-plugin-network-information/index.html
Sat Jun 13 10:27:50 2020
@@ -2650,14 +2650,6 @@ connection state, and type of connection
<span class="nx">checkConnection</span><span class="p">();</span>
</code></pre></div>
-<h3>API Change</h3>
-
-<p>Until Cordova 2.3.0, the <code>Connection</code> object was accessed via
-<code>navigator.network.connection</code>, after which it was changed to
-<code>navigator.connection</code> to match the W3C specification. It's
still
-available at its original location, but is deprecated and will
-eventually be removed.</p>
-
<h3>iOS Quirks</h3>
<ul>
@@ -2706,6 +2698,10 @@ attach an event listener once the <code>
<span class="c1">// Handle the offline event</span>
<span class="p">}</span>
</code></pre></div>
+<h3>Quirks</h3>
+
+<p>This plugin is unable to broadcast events while in the background. Use
<code>navigator.connection.type</code> to check connection status on the <a
href="https://cordova.apache.org/docs/en/latest/cordova/events/events.html#resume">resume</a>
event instead.</p>
+
<h3>iOS Quirks</h3>
<p>During initial startup, the first offline event (if applicable) takes at
least a second to fire.</p>
@@ -2734,6 +2730,10 @@ attach an event listener once the <code>
<span class="c1">// Handle the online event</span>
<span class="p">}</span>
</code></pre></div>
+<h3>Quirks</h3>
+
+<p>This plugin is unable to broadcast events while in the background. Use
<code>navigator.connection.type</code> to check connection status on the <a
href="https://cordova.apache.org/docs/en/latest/cordova/events/events.html#resume">resume</a>
event instead.</p>
+
<h3>iOS Quirks</h3>
<p>During initial startup, the first <code>online</code> event (if applicable)
takes
@@ -2785,34 +2785,52 @@ at least a second to fire, prior to whic
</code></pre></div>
<p>When the online event fires in the preceding code, call the app's
<code>tryToUploadFile</code> function.</p>
-<p>If the FileTransfer object's upload function fails, call the app's
<code>offlineWrite</code> function to save the current data somewhere.</p>
+<p>If the upload fails, then call the app's <code>offlineWrite</code>
function to save the current data somewhere.</p>
<blockquote>
-<p><em>Note</em> This example requires the FileTransfer plugin.</p>
+<p><em>Note</em> For simplicity, file reading & writing was omitted. Refer
to the <a
href="https://github.com/apache/cordova-plugin-file#cordova-plugin-file">cordova-plugin-file</a>
documentation for more information on file handling.</p>
</blockquote>
<div class="highlight"><pre><code class="language-js" data-lang="js"><span
class="kd">function</span> <span class="nx">tryToUploadFile</span><span
class="p">()</span> <span class="p">{</span>
<span class="c1">// !! Assumes variable fileURL contains a valid URL to a
text file on the device,</span>
<span class="kd">var</span> <span class="nx">fileURL</span> <span
class="o">=</span> <span class="nx">getDataFileEntry</span><span
class="p">().</span><span class="nx">toURL</span><span class="p">();</span>
- <span class="kd">var</span> <span class="nx">success</span> <span
class="o">=</span> <span class="kd">function</span> <span
class="p">(</span><span class="nx">r</span><span class="p">)</span> <span
class="p">{</span>
- <span class="nx">console</span><span class="p">.</span><span
class="nx">log</span><span class="p">(</span><span class="s2">"Response =
"</span> <span class="o">+</span> <span class="nx">r</span><span
class="p">.</span><span class="nx">response</span><span class="p">);</span>
- <span class="nx">display</span><span class="p">(</span><span
class="s2">"Uploaded. Response: "</span> <span class="o">+</span> <span
class="nx">r</span><span class="p">.</span><span
class="nx">response</span><span class="p">);</span>
- <span class="p">}</span>
+ <span class="nx">getFileBlobSomehow</span><span class="p">(</span><span
class="nx">fileURL</span><span class="p">,</span> <span
class="kd">function</span><span class="p">(</span><span
class="nx">fileBlob</span><span class="p">)</span> <span class="p">{</span>
+ <span class="kd">var</span> <span class="nx">success</span> <span
class="o">=</span> <span class="kd">function</span> <span
class="p">(</span><span class="nx">r</span><span class="p">)</span> <span
class="p">{</span>
+ <span class="nx">console</span><span class="p">.</span><span
class="nx">log</span><span class="p">(</span><span class="s2">"Response =
"</span> <span class="o">+</span> <span class="nx">r</span><span
class="p">.</span><span class="nx">response</span><span class="p">);</span>
+ <span class="nx">display</span><span class="p">(</span><span
class="s2">"Uploaded. Response: "</span> <span class="o">+</span> <span
class="nx">r</span><span class="p">.</span><span
class="nx">response</span><span class="p">);</span>
+ <span class="p">};</span>
+
+ <span class="kd">var</span> <span class="nx">fail</span> <span
class="o">=</span> <span class="kd">function</span> <span
class="p">(</span><span class="nx">error</span><span class="p">)</span> <span
class="p">{</span>
+ <span class="nx">console</span><span class="p">.</span><span
class="nx">log</span><span class="p">(</span><span class="s2">"An error has
occurred: Code = "</span> <span class="o">+</span> <span
class="nx">error</span><span class="p">.</span><span class="nx">code</span>
<span class="o">||</span> <span class="nx">error</span><span
class="p">.</span><span class="nx">status</span><span class="p">);</span>
+ <span class="nx">offlineWrite</span><span class="p">(</span><span
class="s2">"Failed to upload: some offline data"</span><span class="p">);</span>
+ <span class="p">}</span>
- <span class="kd">var</span> <span class="nx">fail</span> <span
class="o">=</span> <span class="kd">function</span> <span
class="p">(</span><span class="nx">error</span><span class="p">)</span> <span
class="p">{</span>
- <span class="nx">console</span><span class="p">.</span><span
class="nx">log</span><span class="p">(</span><span class="s2">"An error has
occurred: Code = "</span> <span class="o">+</span> <span
class="nx">error</span><span class="p">.</span><span
class="nx">code</span><span class="p">);</span>
- <span class="nx">offlineWrite</span><span class="p">(</span><span
class="s2">"Failed to upload: some offline data"</span><span class="p">);</span>
- <span class="p">}</span>
+ <span class="kd">var</span> <span class="nx">xhr</span> <span
class="o">=</span> <span class="k">new</span> <span
class="nx">XMLHttpRequest</span><span class="p">();</span>
+
+ <span class="nx">xhr</span><span class="p">.</span><span
class="nx">onerror</span> <span class="o">=</span> <span
class="nx">fail</span><span class="p">;</span>
+ <span class="nx">xhr</span><span class="p">.</span><span
class="nx">ontimeout</span> <span class="o">=</span> <span
class="nx">fail</span><span class="p">;</span>
+ <span class="nx">xhr</span><span class="p">.</span><span
class="nx">onload</span> <span class="o">=</span> <span
class="kd">function</span><span class="p">()</span> <span class="p">{</span>
+ <span class="c1">// If the response code was successful...</span>
+ <span class="k">if</span> <span class="p">(</span><span
class="nx">xhr</span><span class="p">.</span><span class="nx">status</span>
<span class="o">>=</span> <span class="mi">200</span> <span
class="o">&&</span> <span class="nx">xhr</span><span
class="p">.</span><span class="nx">status</span> <span class="o"><</span>
<span class="mi">400</span><span class="p">)</span> <span class="p">{</span>
+ <span class="nx">success</span><span class="p">(</span><span
class="nx">xhr</span><span class="p">);</span>
+ <span class="p">}</span>
+ <span class="k">else</span> <span class="p">{</span>
+ <span class="nx">fail</span><span class="p">(</span><span
class="nx">xhr</span><span class="p">)</span>
+ <span class="p">}</span>
+ <span class="p">}</span>
+
+ <span class="c1">// Make sure you add the domain of your server URL to
the</span>
+ <span class="c1">// Content-Security-Policy <meta> element in
index.html.</span>
+ <span class="nx">xhr</span><span class="p">.</span><span
class="nx">open</span><span class="p">(</span><span
class="s2">"POST"</span><span class="p">,</span> <span
class="nb">encodeURI</span><span class="p">(</span><span
class="nx">SERVER</span><span class="p">));</span>
+
+ <span class="nx">xhr</span><span class="p">.</span><span
class="nx">setRequestHeader</span><span class="p">(</span><span
class="s2">"Content-Type"</span><span class="p">,</span> <span
class="s2">"text/plain"</span><span class="p">);</span>
+
+ <span class="c1">// The server request handler could read this header
to</span>
+ <span class="c1">// set the filename.</span>
+ <span class="nx">xhr</span><span class="p">.</span><span
class="nx">setRequestHeader</span><span class="p">(</span><span
class="s2">"X-Filename"</span><span class="p">,</span> <span
class="nx">fileURL</span><span class="p">.</span><span
class="nx">substr</span><span class="p">(</span><span
class="nx">fileURL</span><span class="p">.</span><span
class="nx">lastIndexOf</span><span class="p">(</span><span
class="s2">"/"</span><span class="p">)</span> <span class="o">+</span> <span
class="mi">1</span><span class="p">));</span>
- <span class="kd">var</span> <span class="nx">options</span> <span
class="o">=</span> <span class="k">new</span> <span
class="nx">FileUploadOptions</span><span class="p">();</span>
- <span class="nx">options</span><span class="p">.</span><span
class="nx">fileKey</span> <span class="o">=</span> <span
class="s2">"file"</span><span class="p">;</span>
- <span class="nx">options</span><span class="p">.</span><span
class="nx">fileName</span> <span class="o">=</span> <span
class="nx">fileURL</span><span class="p">.</span><span
class="nx">substr</span><span class="p">(</span><span
class="nx">fileURL</span><span class="p">.</span><span
class="nx">lastIndexOf</span><span class="p">(</span><span
class="s1">'/'</span><span class="p">)</span> <span class="o">+</span> <span
class="mi">1</span><span class="p">);</span>
- <span class="nx">options</span><span class="p">.</span><span
class="nx">mimeType</span> <span class="o">=</span> <span
class="s2">"text/plain"</span><span class="p">;</span>
-
- <span class="kd">var</span> <span class="nx">ft</span> <span
class="o">=</span> <span class="k">new</span> <span
class="nx">FileTransfer</span><span class="p">();</span>
- <span class="c1">// Make sure you add the domain of your server URL to
the</span>
- <span class="c1">// Content-Security-Policy <meta> element in
index.html.</span>
- <span class="nx">ft</span><span class="p">.</span><span
class="nx">upload</span><span class="p">(</span><span
class="nx">fileURL</span><span class="p">,</span> <span
class="nb">encodeURI</span><span class="p">(</span><span
class="nx">SERVER</span><span class="p">),</span> <span
class="nx">success</span><span class="p">,</span> <span
class="nx">fail</span><span class="p">,</span> <span
class="nx">options</span><span class="p">);</span>
+ <span class="nx">xhr</span><span class="p">.</span><span
class="nx">send</span><span class="p">(</span><span
class="nx">fileBlob</span><span class="p">);</span>
+ <span class="p">});</span>
<span class="p">};</span>
</code></pre></div>
<p>Here is the code for the <code>offlineWrite</code> function.</p>
Modified: cordova/site/public/feed.xml
URL:
http://svn.apache.org/viewvc/cordova/site/public/feed.xml?rev=1878801&r1=1878800&r2=1878801&view=diff
==============================================================================
--- cordova/site/public/feed.xml (original)
+++ cordova/site/public/feed.xml Sat Jun 13 10:27:50 2020
@@ -6,11 +6,99 @@
</description>
<link>https://cordova.apache.org/</link>
<atom:link href="https://cordova.apache.org/feed.xml" rel="self"
type="application/rss+xml"/>
- <pubDate>Fri, 05 Jun 2020 23:11:38 +0000</pubDate>
- <lastBuildDate>Fri, 05 Jun 2020 23:11:38 +0000</lastBuildDate>
+ <pubDate>Sat, 13 Jun 2020 10:13:27 +0000</pubDate>
+ <lastBuildDate>Sat, 13 Jun 2020 10:13:27 +0000</lastBuildDate>
<generator>Jekyll v2.5.3</generator>
<item>
+ <title>Splash Screen and InAppBrowser plugin Released!</title>
+ <description><p>We are happy to announce that we have just
released an update to some plugins!</p>
+
+<ul>
+<li><a
href="https://www.npmjs.org/package/cordova-plugin-inappbrowser">[email protected]</a></li>
+<li><a
href="https://www.npmjs.org/package/cordova-plugin-splashscreen">[email protected]</a></li>
+</ul>
+
+<h2>Release Highlights</h2>
+
+<h3>InAppBrowser</h3>
+
+<p>The most notable changes in this major release are:</p>
+
+<ul>
+<li>The Cordova-iOS 6.x platform removes all
<code>UIWebView</code> code and this version also removes the
<code>UIWebView</code> code from the InAppBrowser plugin <a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/635">GH-635</a>.</li>
+<li>For backwards compatibility, this plugin used to hook window.open.
However, the plugin-installed hook of window.open could have unintended side
effects (especially if this plugin is included only as a dependency of another
plugin) and it has been removed in this release. <a
href="https://github.com/apache/cordova-plugin-inappbrowser/issues/599">GH-599</a></li>
+<li>The InAppBrowser plugin used to implement its own status bar. It has
been removed in this release to correctly display the content of the iOS status
bar without overlapping the content in the InAppBrowser on different devices.
<a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/656">GH-656</a></li>
+</ul>
+
+<h3>Splash Screen</h3>
+
+<p>In the Cordova-iOS 6.x platform, the splash screen feature has been
integrated into its core and no longer needs this plugin. This release prevents
the plugin from being added to the iOS 6.x platform.</p>
+
+<ul>
+<li><a
href="https://github.com/apache/cordova-plugin-splashscreen/pull/261">GH-261</a>
chore: add <code>cordova-ios</code> requirement
&lt;6.0.0</li>
+</ul>
+
+<!--more-->
+
+<h1>Changes include:</h1>
+
+<h3>InAppBrowser 4.0.0 (Jun 09, 2020)</h3>
+
+<ul>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/715">GH-715</a>
(ios): fix regression in <a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/656">GH-656</a></li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/685">GH-685</a>
chore: update install engines</li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/656">GH-656</a>
(ios) Remove fake status bar with hardcoded height to fix issues in
<strong>iOS</strong> devices with a notch</li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/693">GH-693</a>
fix(ios): Allow loading local html files</li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/293">GH-293</a>
<strong>Android</strong>: SSL errors handling in
<strong>Android</strong></li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/672">GH-672</a>
fix(ios): prevent statusbar rotation after closing
<code>InAppBrowser</code></li>
+<li>chore(asf): update git notification settings</li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/669">GH-669</a>
Allow App using <code>InAppBrowser</code> to be hosted in a
cross-origin iframe</li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/600">GH-600</a>
(all platforms): remove &quot;window.open&quot; overwrite</li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/670">GH-670</a>
chore: bump version to 4.0.0-dev</li>
+<li>Update CONTRIBUTING.md</li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/662">GH-662</a>
docs: replaces outdated transition and presentation style links</li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/666">GH-666</a>
chore: remove deprecated orientation methods</li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/515">GH-515</a>
Fix incorrect TypeScript typings</li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/654">GH-654</a>
add check for openInSystem postNotification</li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/659">GH-659</a>
ci: updates Node.js versions</li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/658">GH-658</a>
chore(npm): improve ignore list</li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/442">GH-442</a>
fix(android): Reset lefttoright if not set</li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/648">GH-648</a>
(android) Correcting the documentation regarding lefttoright optâ¦</li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/634">GH-634</a>
(android) Added option to turn on/off fullscreen mode in
<strong>Android</strong></li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/616">GH-616</a>
(android) <code>InAppBrowser</code>:
java.lang.IllegalArgumentException</li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/635">GH-635</a>
breaking(ios): remove UIWebView</li>
+</ul>
+
+<h3>Splash Screen 5.0.4 (Jun 03, 2020)</h3>
+
+<ul>
+<li><a
href="https://github.com/apache/cordova-plugin-splashscreen/pull/261">GH-261</a>
chore: add <code>cordova-ios</code> requirement
&lt;6.0.0</li>
+<li>chore(asf): update git notification settings</li>
+<li>update CONTRIBUTING.md</li>
+<li><a
href="https://github.com/apache/cordova-plugin-splashscreen/pull/251">GH-251</a>
chore(npm): adds ignore list</li>
+<li><a
href="https://github.com/apache/cordova-plugin-splashscreen/pull/252">GH-252</a>
ci: updates Node.js versions</li>
+<li><a
href="https://github.com/apache/cordova-plugin-splashscreen/pull/236">GH-236</a>
update homepage to github <code>README</code> page</li>
+<li><a
href="https://github.com/apache/cordova-plugin-splashscreen/pull/239">GH-239</a>
update <code>README</code>.md by adding missing info</li>
+<li>ci(travis): Upgrade node from 6 to 8</li>
+<li>ci(travis): Remove <strong>Android 4.4</strong>, Add
<strong>Android</strong> 9.0</li>
+<li><a
href="https://github.com/apache/cordova-plugin-splashscreen/pull/212">GH-212</a>
ci(travis): Add ADDITIONAL<em>TESTS</em>DIR=./tests/ios</li>
+</ul>
+</description>
+ <pubDate>Sat, 13 Jun 2020 00:00:00 +0000</pubDate>
+
<link>https://cordova.apache.org/news/2020/06/13/plugins-release.html</link>
+ <guid
isPermaLink="true">https://cordova.apache.org/news/2020/06/13/plugins-release.html</guid>
+
+ <category>release</category>
+
+ <category>plugins</category>
+
+
+ <category>news</category>
+
+ </item>
+
+ <item>
<title>Cordova Create, Common, and Xcode Released!</title>
<description><p>We are happy to announce that we have just
released an update to our tools!</p>
@@ -819,66 +907,6 @@ cordova platform add [email protected]
<category>news</category>
- <category>releases</category>
-
-
- <category>announcements</category>
-
- </item>
-
- <item>
- <title>Cordova iOS 5.1.0 Released!</title>
- <description><p>We are happy to announce that we have just
released <code>Cordova iOS 5.1.0</code>! This is Cordova&#39;s
official platform for building iOS mobile applications.</p>
-
-<ul>
-<li><a
href="https://www.npmjs.com/package/cordova-ios">[email protected]</a></li>
-</ul>
-
-<h2>Release Highlights</h2>
-
-<p><strong>To upgrade:</strong></p>
-<div class="highlight"><pre><code
class="language-bash" data-lang="bash">cordova platform
remove ios
-cordova platform add [email protected]
-</code></pre></div>
-<p>The most notable improvements in this minor release are:</p>
-
-<ul>
-<li>The ability to disable <code>UIWebView</code> during the
compile-time.</li>
-<li>Avoid locking when adding platforms on a non-synced pods repo.
(CocoaPods &gt;=1.8.0)</li>
-<li>Bumped the <code>minDeploymentTarget</code> to
<code>10.0</code> in Podfile.</li>
-</ul>
-
-<p>Please report any issues you find at <a
href="http://issues.cordova.io/">issues.cordova.io</a>!</p>
-
-<!--more-->
-
-<h1>Changes include:</h1>
-
-<ul>
-<li><a
href="https://github.com/apache/cordova-ios/pull/719">GH-719</a>
Add check for newer versions of cocoapods to avoid locking adding platforms on
non synced pods repo</li>
-<li><a
href="https://github.com/apache/cordova-ios/pull/715">GH-715</a>
feat: add optional compile-time decision for disabling
<code>UIWebView</code></li>
-<li><a
href="https://github.com/apache/cordova-ios/pull/712">GH-712</a>
Update Xcode versions used in CI to latest minor release</li>
-<li><a
href="https://github.com/apache/cordova-ios/pull/710">GH-710</a>
Lint everything</li>
-<li><a
href="https://github.com/apache/cordova-ios/pull/614">GH-614</a>
Don&#39;t use whitespace as an indent indicator</li>
-<li><a
href="https://github.com/apache/cordova-ios/pull/704">GH-704</a>
Reuse common <code>xcodebuild</code> arguments in npm
scripts</li>
-<li><a
href="https://github.com/apache/cordova-ios/pull/705">GH-705</a>
Let Jasmine handle <code>async</code> test results</li>
-<li><a
href="https://github.com/apache/cordova-ios/pull/703">GH-703</a>
Reduce verbosity of <code>xcodebuild</code> output during
tests</li>
-<li><a
href="https://github.com/apache/cordova-ios/pull/702">GH-702</a>
Fix, simplify and improve tests</li>
-<li><a
href="https://github.com/apache/cordova-ios/pull/695">GH-695</a>
fix: Support all valid SemVer syntax in version comparison helper</li>
-<li><a
href="https://github.com/apache/cordova-ios/pull/608">GH-608</a>
chore: add Node.js 12 to CI services</li>
-<li><a
href="https://github.com/apache/cordova-ios/pull/650">GH-650</a>
fix(<code>build.json</code>): spacing in error message and missing
path in log</li>
-<li><a
href="https://github.com/apache/cordova-ios/pull/646">GH-646</a>
<code>[email protected]</code> update in devDependencies</li>
-<li><a
href="https://github.com/apache/cordova-ios/pull/635">GH-635</a>
Bump default <code>minDeploymentTarget</code> to 10.0 in
Podfile</li>
-<li><a
href="https://github.com/apache/cordova-ios/pull/632">GH-632</a>
Update jasmine &amp; fix broken tests</li>
-<li><a
href="https://github.com/apache/cordova-ios/pull/622">GH-622</a>
Remove outdated component/duo package manager package definition</li>
-</ul>
-</description>
- <pubDate>Mon, 25 Nov 2019 00:00:00 +0000</pubDate>
-
<link>https://cordova.apache.org/announcements/2019/11/25/cordova-ios-release-5.1.0.html</link>
- <guid
isPermaLink="true">https://cordova.apache.org/announcements/2019/11/25/cordova-ios-release-5.1.0.html</guid>
-
- <category>news</category>
-
<category>releases</category>
Modified: cordova/site/public/news/2020/06/01/tools-release.html
URL:
http://svn.apache.org/viewvc/cordova/site/public/news/2020/06/01/tools-release.html?rev=1878801&r1=1878800&r2=1878801&view=diff
==============================================================================
--- cordova/site/public/news/2020/06/01/tools-release.html (original)
+++ cordova/site/public/news/2020/06/01/tools-release.html Sat Jun 13 10:27:50
2020
@@ -245,6 +245,26 @@
</div>
<div class="col-sm-6">
+ <a href="/news/2020/06/13/plugins-release.html">Next</a>
+ <br>
+ <br>
+ <a class="title"
href="/news/2020/06/13/plugins-release.html">Splash Screen and InAppBrowser
plugin Released!</a>
+ <div class="date"> 13 Jun 2020 - By Niklas Merz </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 that we have just released an
update...
+ </p>
+
</div>
</div>
</footer>
Added: cordova/site/public/news/2020/06/13/plugins-release.html
URL:
http://svn.apache.org/viewvc/cordova/site/public/news/2020/06/13/plugins-release.html?rev=1878801&view=auto
==============================================================================
--- cordova/site/public/news/2020/06/13/plugins-release.html (added)
+++ cordova/site/public/news/2020/06/13/plugins-release.html Sat Jun 13
10:27:50 2020
@@ -0,0 +1,345 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+ <meta name="format-detection" content="telephone=no">
+ <meta name="viewport" content="user-scalable=no, initial-scale=1,
maximum-scale=1, minimum-scale=1, width=device-width" />
+ <meta name="description" content="We are happy to announce that we have
just released an update to some
plugins!cordova-plugin-inappbrowser@[email protected]
Highl...">
+
+ <title>
+
+
+ Splash Screen and InAppBrowser plugin Released! - Apache
Cordova
+
+
+ </title>
+
+ <link rel="SHORTCUT ICON" href="/favicon.ico"/>
+
+
+
+
+
+
+ <link rel="canonical"
href="https://cordova.apache.org/news/2020/06/13/plugins-release.html">
+
+ <!-- CSS -->
+ <link rel="stylesheet" type="text/css" href="/static/css/main.css">
+ <link rel="stylesheet" type="text/css" href="/static/css/lib/syntax.css">
+ <!-- Algolia Search CSS -->
+ <link rel="stylesheet"
href="https://cdn.jsdelivr.net/docsearch.js/1/docsearch.min.css" />
+
+ <!-- Fonts -->
+ <!-- For attribution information, see www/attributions.html -->
+ <link
href='https://fonts.googleapis.com/css?family=Raleway:700,400,300,700italic,400italic,300italic'
rel='stylesheet' type='text/css'>
+
+ <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media
queries -->
+ <!--[if lt IE 9]>
+ <script
src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
+ <script
src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
+ <![endif]-->
+ <script type="text/javascript">
+ var disqus_developer = 1; // this would set it to developer mode
+ </script>
+
+ <!-- JS -->
+ <script defer type="text/javascript"
src="/static/js/lib/jquery-2.1.1.min.js"></script>
+ <script defer type="text/javascript"
src="/static/js/lib/bootstrap.min.js"></script>
+
+ <script>
+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
+ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new
Date();a=s.createElement(o),
+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
+
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
+ ga('create', 'UA-64283057-3', 'auto');
+ ga('send', 'pageview');
+</script>
+
+</head>
+
+<body>
+ <header>
+ <a class="scroll-point pt-top" name="top"></a>
+ <nav class="navbar navbar-inverse navbar-fixed-top">
+ <div class="container-fluid">
+ <div class="navbar-header">
+ <button type="button" class="navbar-toggle collapsed"
data-toggle="collapse" data-target="#navbar" aria-expanded="false"
aria-controls="navbar">
+ <span class="sr-only">Toggle navigation</span>
+ <span class="icon-bar"></span>
+ <span class="icon-bar"></span>
+ <span class="icon-bar"></span>
+ </button>
+ <a class="navbar-brand" href="/"><img id="logo_top"
src="/static/img/cordova-logo-newbrand.svg"/></a>
+ </div>
+ <div id="navbar" class="navbar-collapse collapse">
+ <div class="nav_bar_center">
+ <ul class="nav navbar-nav">
+ <li >
+ <a href="/docs/en/latest/">Documentation</a>
+ </li>
+ <li >
+ <a href="/plugins">Plugins</a>
+ </li>
+ <li class="active">
+ <a href="/blog" id="blog_button">Blog<span
class="badge" id="new_blog_count"></span></a>
+ </li>
+ <li >
+ <a href="/contribute">Contribute</a>
+ </li>
+ <li>
+ <a href="/#getstarted">Get Started</a>
+ </li>
+ <li>
+ <form class="navbar-form navbar-right"
id="header-search-form" role="search">
+ <div class="input-group">
+
+
+
+ <input id="header-search-field"
type="text" placeholder="Search '9.x' docs..." class="form-control hidden-xs"
autocomplete="off">
+ </div>
+ </form>
+ </li>
+ </ul>
+ </div>
+ </div><!--/.navbar-collapse -->
+ </div>
+ </nav>
+ <div id="_fixed_navbar_spacer" style="padding-top:50px"></div>
+</header>
+
+<div class="page container">
+ <div class="blog">
+ <h1 class="blogHeader">
+ Blog
+ <span class="rss">
+ <img src="/static/img/subscribe.png"><a href="/feed.xml">RSS Feed</a>
+ </span>
+</h1>
+
+<div class="post">
+ <header>
+ <div class="title">Splash Screen and InAppBrowser plugin
Released!</div>
+ <div class="author">By:
+
+ <a href="https://twitter.com/niklasmaerz">Niklas Merz</a>
+
+ </div>
+ <div class="date">13 Jun 2020</div>
+ </header>
+ <section>
+ <div>
+ <p>We are happy to announce that we have just released an update
to some plugins!</p>
+
+<ul>
+<li><a
href="https://www.npmjs.org/package/cordova-plugin-inappbrowser">[email protected]</a></li>
+<li><a
href="https://www.npmjs.org/package/cordova-plugin-splashscreen">[email protected]</a></li>
+</ul>
+
+<h2>Release Highlights</h2>
+
+<h3>InAppBrowser</h3>
+
+<p>The most notable changes in this major release are:</p>
+
+<ul>
+<li>The Cordova-iOS 6.x platform removes all <code>UIWebView</code> code and
this version also removes the <code>UIWebView</code> code from the InAppBrowser
plugin <a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/635">GH-635</a>.</li>
+<li>For backwards compatibility, this plugin used to hook window.open.
However, the plugin-installed hook of window.open could have unintended side
effects (especially if this plugin is included only as a dependency of another
plugin) and it has been removed in this release. <a
href="https://github.com/apache/cordova-plugin-inappbrowser/issues/599">GH-599</a></li>
+<li>The InAppBrowser plugin used to implement its own status bar. It has been
removed in this release to correctly display the content of the iOS status bar
without overlapping the content in the InAppBrowser on different devices. <a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/656">GH-656</a></li>
+</ul>
+
+<h3>Splash Screen</h3>
+
+<p>In the Cordova-iOS 6.x platform, the splash screen feature has been
integrated into its core and no longer needs this plugin. This release prevents
the plugin from being added to the iOS 6.x platform.</p>
+
+<ul>
+<li><a
href="https://github.com/apache/cordova-plugin-splashscreen/pull/261">GH-261</a>
chore: add <code>cordova-ios</code> requirement <6.0.0</li>
+</ul>
+
+<!--more-->
+
+<h1>Changes include:</h1>
+
+<h3>InAppBrowser 4.0.0 (Jun 09, 2020)</h3>
+
+<ul>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/715">GH-715</a>
(ios): fix regression in <a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/656">GH-656</a></li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/685">GH-685</a>
chore: update install engines</li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/656">GH-656</a>
(ios) Remove fake status bar with hardcoded height to fix issues in
<strong>iOS</strong> devices with a notch</li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/693">GH-693</a>
fix(ios): Allow loading local html files</li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/293">GH-293</a>
<strong>Android</strong>: SSL errors handling in <strong>Android</strong></li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/672">GH-672</a>
fix(ios): prevent statusbar rotation after closing
<code>InAppBrowser</code></li>
+<li>chore(asf): update git notification settings</li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/669">GH-669</a>
Allow App using <code>InAppBrowser</code> to be hosted in a cross-origin
iframe</li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/600">GH-600</a>
(all platforms): remove "window.open" overwrite</li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/670">GH-670</a>
chore: bump version to 4.0.0-dev</li>
+<li>Update CONTRIBUTING.md</li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/662">GH-662</a>
docs: replaces outdated transition and presentation style links</li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/666">GH-666</a>
chore: remove deprecated orientation methods</li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/515">GH-515</a>
Fix incorrect TypeScript typings</li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/654">GH-654</a>
add check for openInSystem postNotification</li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/659">GH-659</a>
ci: updates Node.js versions</li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/658">GH-658</a>
chore(npm): improve ignore list</li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/442">GH-442</a>
fix(android): Reset lefttoright if not set</li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/648">GH-648</a>
(android) Correcting the documentation regarding lefttoright optâ¦</li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/634">GH-634</a>
(android) Added option to turn on/off fullscreen mode in
<strong>Android</strong></li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/616">GH-616</a>
(android) <code>InAppBrowser</code>: java.lang.IllegalArgumentException</li>
+<li><a
href="https://github.com/apache/cordova-plugin-inappbrowser/pull/635">GH-635</a>
breaking(ios): remove UIWebView</li>
+</ul>
+
+<h3>Splash Screen 5.0.4 (Jun 03, 2020)</h3>
+
+<ul>
+<li><a
href="https://github.com/apache/cordova-plugin-splashscreen/pull/261">GH-261</a>
chore: add <code>cordova-ios</code> requirement <6.0.0</li>
+<li>chore(asf): update git notification settings</li>
+<li>update CONTRIBUTING.md</li>
+<li><a
href="https://github.com/apache/cordova-plugin-splashscreen/pull/251">GH-251</a>
chore(npm): adds ignore list</li>
+<li><a
href="https://github.com/apache/cordova-plugin-splashscreen/pull/252">GH-252</a>
ci: updates Node.js versions</li>
+<li><a
href="https://github.com/apache/cordova-plugin-splashscreen/pull/236">GH-236</a>
update homepage to github <code>README</code> page</li>
+<li><a
href="https://github.com/apache/cordova-plugin-splashscreen/pull/239">GH-239</a>
update <code>README</code>.md by adding missing info</li>
+<li>ci(travis): Upgrade node from 6 to 8</li>
+<li>ci(travis): Remove <strong>Android 4.4</strong>, Add
<strong>Android</strong> 9.0</li>
+<li><a
href="https://github.com/apache/cordova-plugin-splashscreen/pull/212">GH-212</a>
ci(travis): Add ADDITIONAL<em>TESTS</em>DIR=./tests/ios</li>
+</ul>
+
+ </div>
+ </section>
+ <footer>
+ <div class="row">
+ <div class="col-sm-6">
+
+ <a href="/news/2020/06/01/tools-release.html">Previous</a>
+ <br>
+ <br>
+ <a class="title"
href="/news/2020/06/01/tools-release.html">Cordova Create, Common, and Xcode
Released!</a>
+ <div class="date"> 01 Jun 2020 - By Bryan Ellis </div>
+ <p class="content">
+ We are happy to announce that we have just released an
update...
+ </p>
+
+ </div>
+ <div class="col-sm-6">
+
+ </div>
+ </div>
+ </footer>
+ <div class="disqus">
+ <div id="disqus_thread"></div>
+<script type="text/javascript">
+ /* * * CONFIGURATION VARIABLES * * */
+ var disqus_shortname = 'cordovablogs';
+
+ /* * * DON'T EDIT BELOW THIS LINE * * */
+ (function() {
+ var dsq = document.createElement('script'); dsq.type =
'text/javascript'; dsq.async = true;
+ dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
+ (document.getElementsByTagName('head')[0] ||
document.getElementsByTagName('body')[0]).appendChild(dsq);
+ })();
+</script>
+<noscript>Please enable JavaScript to view the <a
href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by
Disqus.</a></noscript>
+
+ </div>
+</div>
+
+</div>
+
+</div>
+
+<div class="blue-divider"></div>
+<footer>
+ <div class="container">
+ <div class="row">
+ <div class="col-sm-9">
+ <h1>More Resources</h1>
+ <div class="row">
+ <div class="col-sm-4">
+ <h2>General</h2>
+ <ul class="nav">
+ <li>
+ <a target="_blank"
href="https://projects.apache.org/project.html?cordova">Apache Project Page</a>
+ </li>
+ <li>
+ <a
href="http://www.apache.org/dyn/closer.cgi/cordova">Source Distribution</a>
+ </li>
+ <li>
+ <a target="_blank"
href="http://www.apache.org/licenses/LICENSE-2.0">License</a>
+ </li>
+ <li>
+ <a href="/artwork">Artwork</a>
+ </li>
+ </ul>
+ </div>
+ <div class="col-sm-4">
+ <h2>Development</h2>
+ <ul class="nav">
+ <li><a target="_blank"
href="https://github.com/apache?utf8=%E2%9C%93&q=cordova-">Source
Code</a></li>
+ <li><a target="_blank"
href="https://issues.apache.org/jira/browse/CB/">Issue Tracker</a></li>
+ <li><a target="_blank"
href="http://stackoverflow.com/questions/tagged/cordova">Stack Overflow</a></li>
+ <li><a href="/contact">Mailing List</a></li>
+ <li><a href="/contribute/nightly_builds.html">Nightly
builds</a></li>
+ </ul>
+ </div>
+ <div class="col-sm-4">
+ <h2>Apache Software Foundation</h2>
+ <ul class="nav">
+ <li>
+ <a target="_blank" href="http://www.apache.org/">About
ASF</a>
+ </li>
+ <li>
+ <a target="_blank"
href="http://www.apache.org/foundation/sponsorship.html">Become a Sponsor</a>
+ </li>
+ <li>
+ <a target="_blank"
href="http://www.apache.org/foundation/thanks.html">Thanks</a>
+ </li>
+ <li>
+ <a target="_blank"
href="http://www.apache.org/security/">Security</a>
+ </li>
+ </ul>
+ </div>
+ </div>
+ </div>
+ <div class="col-sm-3">
+ <h1>Contribute</h1>
+ <p style="padding-top:20px"><strong>Help Cordova move
forward!</strong></p>
+ <p>Report bugs, improve the docs, or contribute to the code.</p>
+ <a href="/contribute" class="btn btn-lg btn-primary">
+ Learn More
+ </a>
+ <p style="padding-top:20px"> <a
href="https://twitter.com/apachecordova" class="twitter-follow-button"
data-show-count="false">Follow @apachecordova</a></p>
+ <script async defer
src="https://slack-cordova-io.herokuapp.com/slackin.js"></script>
+ </div>
+</div>
+<p class="copyright_text">
+ Copyright © 2012, 2013, 2015 The Apache Software Foundation, Licensed
under the <a target="_blank"
href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version
2.0</a>.<br/>
+ Apache and the Apache feather logos are <a target="_blank"
href="http://www.apache.org/foundation/marks/list/">trademarks</a> of The
Apache Software Foundation.
+ <br/>
+ "Raleway" font used under license. For details see the <a
href="/attributions/">attributions page</a>.
+</p>
+
+ </div>
+</footer>
+
+
+ <script defer type="text/javascript" src="/static/js/index.js"></script>
+ <script defer type="text/javascript" src="/static/js/twitter.js"></script>
+
+
+
+
+
+
+
+
+<script type="text/javascript"
src="https://cdn.jsdelivr.net/docsearch.js/1/docsearch.min.js"></script>
+<script type="text/javascript">
+ docsearch({
+ apiKey: '0a916ab198bd93d031aa70611271e42e',
+ indexName: 'cordova',
+ inputSelector: '#header-search-field',
+ algoliaOptions: { 'facetFilters': ["version: 9.x", "language: en"] }
+ });
+</script>
+
+</body>
+</html>
Modified: cordova/site/public/sitemap.xml
URL:
http://svn.apache.org/viewvc/cordova/site/public/sitemap.xml?rev=1878801&r1=1878800&r2=1878801&view=diff
==============================================================================
--- cordova/site/public/sitemap.xml (original)
+++ cordova/site/public/sitemap.xml Sat Jun 13 10:27:50 2020
@@ -4,6 +4,11 @@
<!-- posts -->
<url>
+ <loc>https://cordova.apache.org/news/2020/06/13/plugins-release.html</loc>
+</url>
+
+
+<url>
<loc>https://cordova.apache.org/news/2020/06/01/tools-release.html</loc>
</url>
Modified: cordova/site/public/static/js/index.js
URL:
http://svn.apache.org/viewvc/cordova/site/public/static/js/index.js?rev=1878801&r1=1878800&r2=1878801&view=diff
==============================================================================
--- cordova/site/public/static/js/index.js (original)
+++ cordova/site/public/static/js/index.js Sat Jun 13 10:27:50 2020
@@ -77,6 +77,7 @@ function checkNotification() {
var dates = [];
if (lastVisit != "") {
+ dates.push('Sat, 13 Jun 2020 00:00:00 +0000');
dates.push('Mon, 01 Jun 2020 00:00:00 +0000');
dates.push('Mon, 01 Jun 2020 00:00:00 +0000');
dates.push('Mon, 13 Apr 2020 00:00:00 +0000');
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]