Author: janpio
Date: Fri Aug 7 17:33:42 2020
New Revision: 1880687
URL: http://svn.apache.org/viewvc?rev=1880687&view=rev
Log:
Updated docs
Modified:
cordova/site/public/docs/en/dev/guide/platforms/windows/index.html
cordova/site/public/docs/en/dev/reference/cordova-plugin-camera/index.html
cordova/site/public/feed.xml
Modified: cordova/site/public/docs/en/dev/guide/platforms/windows/index.html
URL:
http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/guide/platforms/windows/index.html?rev=1880687&r1=1880686&r2=1880687&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/guide/platforms/windows/index.html
(original)
+++ cordova/site/public/docs/en/dev/guide/platforms/windows/index.html Fri Aug
7 17:33:42 2020
@@ -2564,16 +2564,25 @@
<p>To develop apps for Windows 10 you need:</p>
<ul>
-<li>Windows 10 (or Windows 8.1), 32- or 64-bit, along with <a
href="http://www.visualstudio.com/downloads">Visual Studio</a> 2015 or Visual
Studio 2017. (Cordova Windows is not supported by Visual Studio 2019.)</li>
+<li><a href="https://www.microsoft.com/windows">Windows</a> 10 or 8.1</li>
+<li><a href="https://visualstudio.microsoft.com/vs/older-downloads/">Visual
Studio</a> 2017 or 2015</li>
</ul>
+<blockquote>
+<p>❗ Visual Studio 2019 does not support Cordova-Windows. See <a
href="https://github.com/apache/cordova-windows/issues/327">apache/cordova-windows#327</a></p>
+</blockquote>
+
<p>To develop apps for Windows 8.1:</p>
<ul>
-<li>Windows 8.1, 32 or 64-bit, along with <a
href="http://www.visualstudio.com/downloads">Visual Studio</a> 2015 or Visual
Studio 2013.</li>
-<li>For the Windows Phone emulators, Windows 8.1 (x64) Professional edition or
higher, and a processor that supports <a
href="https://msdn.microsoft.com/en-us/library/windows/apps/ff626524(v=vs.105).aspx#hyperv">Client
Hyper-V and Second Level Address Translation (SLAT)</a></li>
+<li><a href="https://www.microsoft.com/windows">Windows</a> 8.1</li>
+<li><a href="https://visualstudio.microsoft.com/vs/older-downloads/">Visual
Studio</a> 2015 or 2013</li>
</ul>
+<blockquote>
+<p>❗ Windows Phone 8 Emulator requires Windows 8.1 (x64) Professional
edition or higher, and a processor that supports <a
href="https://msdn.microsoft.com/en-us/library/windows/apps/ff626524(v=vs.105).aspx#hyperv">Client
Hyper-V and Second Level Address Translation (SLAT)</a></p>
+</blockquote>
+
<p>Cordova apps targeting Windows can be developed on a Mac, either by running
a
virtual machine environment or by using Boot Camp to dual-boot a
Windows partition. Consult these resources to set up the required
Modified:
cordova/site/public/docs/en/dev/reference/cordova-plugin-camera/index.html
URL:
http://svn.apache.org/viewvc/cordova/site/public/docs/en/dev/reference/cordova-plugin-camera/index.html?rev=1880687&r1=1880686&r2=1880687&view=diff
==============================================================================
--- cordova/site/public/docs/en/dev/reference/cordova-plugin-camera/index.html
(original)
+++ cordova/site/public/docs/en/dev/reference/cordova-plugin-camera/index.html
Fri Aug 7 17:33:42 2020
@@ -2939,11 +2939,7 @@ after calling <a href="#module_camera.ge
<h3>Camera.DestinationType : <code>enum</code></h3>
-<p>Defines the output format of <code>Camera.getPicture</code> call.
-<em>Note:</em> On iOS passing <code>DestinationType.NATIVE_URI</code> along
with
-<code>PictureSourceType.PHOTOLIBRARY</code> or
<code>PictureSourceType.SAVEDPHOTOALBUM</code> will
-disable any image modifications (resize, quality change, cropping, etc.) due
-to implementation specific.</p>
+<p>Defines the output format of <code>Camera.getPicture</code> call.</p>
<p><strong>Kind</strong>: static enum property of <code><a
href="#module_Camera">Camera</a></code><br>
<strong>Properties</strong></p>
@@ -2960,7 +2956,7 @@ to implementation specific.</p>
<td>DATA_URL</td>
<td><code>number</code></td>
<td><code>0</code></td>
-<td>Return base64 encoded string. DATA<em>URL can be very memory intensive and
cause app crashes or out of memory errors. Use FILE</em>URI or NATIVE_URI if
possible</td>
+<td>Return base64 encoded string. DATA<em>URL can be very memory intensive and
cause app crashes or out of memory errors. Use FILE</em>URI if possible</td>
</tr>
<tr>
<td>FILE_URI</td>
@@ -2968,12 +2964,6 @@ to implementation specific.</p>
<td><code>1</code></td>
<td>Return file uri (content://media/external/images/media/2 for Android)</td>
</tr>
-<tr>
-<td>NATIVE_URI</td>
-<td><code>number</code></td>
-<td><code>2</code></td>
-<td>Return native uri (eg. asset-library://... for iOS)</td>
-</tr>
</tbody></table>
<p><a name="module_Camera.EncodingType"></a></p>
@@ -3044,10 +3034,7 @@ to implementation specific.</p>
<h3>Camera.PictureSourceType : <code>enum</code></h3>
-<p>Defines the output format of <code>Camera.getPicture</code> call.
-<em>Note:</em> On iOS passing <code>PictureSourceType.PHOTOLIBRARY</code> or
<code>PictureSourceType.SAVEDPHOTOALBUM</code>
-along with <code>DestinationType.NATIVE_URI</code> will disable any image
modifications (resize, quality
-change, cropping, etc.) due to implementation specific.</p>
+<p>Defines the output format of <code>Camera.getPicture</code> call.</p>
<p><strong>Kind</strong>: static enum property of <code><a
href="#module_Camera">Camera</a></code><br>
<strong>Properties</strong></p>
@@ -3271,7 +3258,7 @@ function onFail(message) {
* Warning: Using DATA_URL is not recommended! The DATA_URL destination
* type is very memory intensive, even with a low quality setting. Using it
* can result in out of memory errors and application crashes. Use FILE_URI
- * or NATIVE_URI instead.
+ * instead.
*/
navigator.camera.getPicture(onSuccess, onFail, { quality: 25,
destinationType: Camera.DestinationType.DATA_URL
@@ -3343,9 +3330,7 @@ start page from scratch and success and
<h4>iOS Quirks</h4>
<ul>
-<li><p>When using <code>destinationType.FILE_URI</code>, photos are saved in
the application's temporary directory. The contents of the
application's temporary directory is deleted when the application
ends.</p></li>
-<li><p>When using <code>destinationType.NATIVE_URI</code> and
<code>sourceType.CAMERA</code>, photos are saved in the saved photo album
regardless on the value of <code>saveToPhotoAlbum</code> parameter.</p></li>
-<li><p>When using <code>destinationType.NATIVE_URI</code> and
<code>sourceType.PHOTOLIBRARY</code> or
<code>sourceType.SAVEDPHOTOALBUM</code>, all editing options are ignored and
link is returned to original picture.</p></li>
+<li>When using <code>destinationType.FILE_URI</code>, photos are saved in the
application's temporary directory. The contents of the application's
temporary directory is deleted when the application ends.</li>
</ul>
<h2>Sample: Take Pictures, Select Pictures from the Picture Library, and Get
Thumbnails <a name="sample"></a></h2>
Modified: cordova/site/public/feed.xml
URL:
http://svn.apache.org/viewvc/cordova/site/public/feed.xml?rev=1880687&r1=1880686&r2=1880687&view=diff
==============================================================================
--- cordova/site/public/feed.xml (original)
+++ cordova/site/public/feed.xml Fri Aug 7 17:33:42 2020
@@ -6,8 +6,8 @@
</description>
<link>https://cordova.apache.org/</link>
<atom:link href="https://cordova.apache.org/feed.xml" rel="self"
type="application/rss+xml"/>
- <pubDate>Fri, 07 Aug 2020 10:26:37 +0000</pubDate>
- <lastBuildDate>Fri, 07 Aug 2020 10:26:37 +0000</lastBuildDate>
+ <pubDate>Fri, 07 Aug 2020 17:14:13 +0000</pubDate>
+ <lastBuildDate>Fri, 07 Aug 2020 17:14:13 +0000</lastBuildDate>
<generator>Jekyll v2.5.3</generator>
<item>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]