Skip to content

Commit c5c1533

Browse files
committed
Merge branch 'develop-scriptified' into develop
2 parents 06ec955 + 7793152 commit c5c1533

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+6112
-625
lines changed

docs/dictionary/command/mobilePickPhoto.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<doc> <legacy_id></legacy_id> <name>mobilePickPhoto</name> <type>command</type> <syntax> <example>mobilePickPhoto <i>source</i> [, <i>maxwidth</i> [, <i>maxheight</i>] ] </example> </syntax> <synonyms> <synonym>iphonePickPhoto</synonym> </synonyms> <summary>Displays the iPhone or Android native photo picker.</summary> <examples><example>mobilePickPhoto &quot;library&quot;</example><example>mobilePickPhoto &quot;front camera&quot;, 250, 250</example> </examples> <history> <introduced version="4.5.2">Added.</introduced> <deprecated version=""></deprecated> <removed version=""></removed> <changed version="4.6.1">4.6.1</changed> </history> <objects> </objects> <platforms> <ios/> <android/> </platforms> <classes> <mobile/> </classes> <security> </security> <classification> </classification> <references> </references> <description> <overview>Use the <b>mobilePickPhoto</b> command to allow the user to select an image.</overview> <parameters> <parameter> <name>source</name> <description>The source for the image. One of:</description> <options title=""> <option> <item>library</item> <description/> </option> <option> <item>album</item> <description/> </option> <option> <item>camera</item> <description/> </option> <option> <item>rear camera</item> <description>iOS only</description> </option> <option> <item>front camera</item> <description>iOS only</description> </option> </options> </parameter> <parameter> <name>maxwidth</name> <description>The maximum allowed width of the image.</description> </parameter> <parameter> <name>maxheight</name> <description>The maximum allowed height of the image.</description> </parameter> </parameters> <value></value> <comments>The <b>mobilePickPhoto</b> displays the iPhone or Android native photo picker, allowing the user to select a photo from the device&apos;s photo library, take a photo using the device cameras or select a photo from the device&apos;s recent camera roll.<p></p><p>When running on an iPhone or Android, the photo-picker is displayed using the standard iOS fullscreen overlay view. When running on an iPad, the photo-picker is displayed using a standard iOS pop-over. In this case, the pop-over is positioned relative to the rect of the target at the time the <b>mobilePickPhoto</b> command was called.</p><p></p><p>If the <i>source</i> type is not available on the target device, the command returns with result source not available. If the user cancels the pick, the command returns with result cancel. Otherwise a new image object is created on the current card of the default stack containing the chosen image.</p><p></p><p>The <i>maxwidth</i> and <i>maxheight</i> parameters are only available on iOS devices and constrain the maximum size of an image. The chosen image is scaled down proportionally to fit within the size specified. If either size specified is 0, then the parameter is ignored.</p><p></p><p></p><p></p><note>The image object is cloned from the <keyword tag="templateImage">templateImage</keyword>, so you can use this to configure settings before calling the picker.</note><p></p><p></p><p></p><note>Android: <b>mobilePickPhoto</b> requires &apos;Camera&apos; and &apos;External Storage&apos; permissions. Set these in the standalone application settings pane. Not setting this permission will result in a &quot;could not create temporary image file&quot; error.</note></comments> </description></doc>
1+
<doc> <legacy_id></legacy_id> <name>mobilePickPhoto</name> <type>command</type> <syntax> <example>mobilePickPhoto <i>source</i> [, <i>maxwidth</i> [, <i>maxheight</i>] ] </example> </syntax> <synonyms> <synonym>iphonePickPhoto</synonym> </synonyms> <summary>Displays the iPhone or Android native photo picker.</summary> <examples><example>mobilePickPhoto &quot;library&quot;</example><example>mobilePickPhoto &quot;front camera&quot;, 250, 250</example> </examples> <history> <introduced version="4.5.2">Added.</introduced> <deprecated version=""></deprecated> <removed version=""></removed> <changed version="4.6.1">4.6.1</changed> </history> <objects> </objects> <platforms> <ios/> <android/> </platforms> <classes> <mobile/> </classes> <security> </security> <classification> </classification> <references> </references> <description> <overview>Use the <b>mobilePickPhoto</b> command to allow the user to select an image.</overview> <parameters> <parameter> <name>source</name> <description>The source for the image. One of:</description> <options title=""> <option> <item>library</item> <description/> </option> <option> <item>album</item> <description/> </option> <option> <item>camera</item> <description/> </option> <option> <item>rear camera</item> <description>iOS only</description> </option> <option> <item>front camera</item> <description>iOS only</description> </option> </options> </parameter> <parameter> <name>maxwidth</name> <description>The maximum allowed width of the image.</description> </parameter> <parameter> <name>maxheight</name> <description>The maximum allowed height of the image.</description> </parameter> </parameters> <value></value> <comments>The <b>mobilePickPhoto</b> displays the iPhone or Android native photo picker, allowing the user to select a photo from the device&apos;s photo library, take a photo using the device cameras or select a photo from the device&apos;s recent camera roll.<p></p><p>When running on an iPhone or Android, the photo-picker is displayed using the standard iOS fullscreen overlay view. The same happens when running on an iPad and the supported orientations for the app contain any of landscape right, landscape left, portrait upside down. On the contrary, when running on an iPad and the supported orientations for the app contain only portrait, then the photo-picker is displayed using a standard iOS pop-over. In this case, the pop-over is positioned relative to the rect of the target at the time the <b>mobilePickPhoto</b> command was called.</p><p></p><p>If the <i>source</i> type is not available on the target device, the command returns with result source not available. If the user cancels the pick, the command returns with result cancel. Otherwise a new image object is created on the current card of the default stack containing the chosen image.</p><p></p><p>The <i>maxwidth</i> and <i>maxheight</i> parameters are only available on iOS devices and constrain the maximum size of an image. The chosen image is scaled down proportionally to fit within the size specified. If either size specified is 0, then the parameter is ignored.</p><p></p><p></p><p></p><note>The image object is cloned from the <keyword tag="templateImage">templateImage</keyword>, so you can use this to configure settings before calling the picker.</note><p></p><p></p><p></p><note>Android: <b>mobilePickPhoto</b> requires &apos;Camera&apos; and &apos;External Storage&apos; permissions. Set these in the standalone application settings pane. Not setting this permission will result in a &quot;could not create temporary image file&quot; error.</note></comments> </description></doc>

docs/notes/bugfix-12142.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# mobileSensorReading("location", false) returns different data compared to mobileCurrentLocation() on Simulator

docs/notes/bugfix-12464.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# The effective screenrect returns incorrect values when hiding/showing keyboard on iOS

docs/notes/bugfix-13236.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# mobilePickPhoto camera view is rotated on iPad when in landscape or in portraitUpsideDown

docs/notes/bugfix-13485.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Manifest file not needed in standalone bundle

docs/notes/bugfix-13512.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# 4 inch iPhone apps do not use the full screen

docs/notes/bugfix-13583.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Copy files do not work with the iOS 8 simulator
2+
3+
This fix has been tweaked for 6.6.4-rc-3. If, when attempting to deploy to the iOS 8 simulator you get the error "Unable to start simulation: Unable to run app in Simulator", delete any previous version of the app installed on the simulator and redeploy.

docs/notes/bugfix-13584.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Simulator launches with incorrect version

docs/notes/bugfix-13590.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Location Services Disabled with LC 6.6.4 (rc1)
2+
3+
A new function **mobileLocationAuthorizationStatus** (or **iphoneLocationAuthorizationStatus**) has been added. This returns the current location authorization status of the calling application. The status can be one of the following:
4+
5+
- **notDetermined**: User has not yet made a choice with regards to this application
6+
- **restricted**: The application is not authorized to use location service
7+
- **denied**: User has explicitly denied authorization for this application, or location services are disabled in Settings.
8+
- **authorizedAlways**: User has granted authorization to use their location at any time, including monitoring for regions, visits, or significant location changes.
9+
- **authorizedWhenInUse**: User has granted authorization to use their location only when the app is visible to them (it will be made visible to them if you continue to receive location updates while in the background). Authorization to use launch APIs has not been granted.

docs/notes/bugfix-13621.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# mobileFindContact fails silently on iOS 7.1 and higher

0 commit comments

Comments
 (0)