Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Installer/package.txt
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,7 @@ component Runtime.iOS
file ios:iphonesimulator12.1/mobile-disable-ats-template.plist as "DisableATS.plist"
file ios:iphonesimulator12.1/[email protected] as "Default4InchSplash.png" base ios:[email protected]
file ios:iphonesimulator12.1/fontmap as "fontmap"
into "[[ToolsFolder]]/Runtime/iOS/Simulator-13_0" place
into "[[ToolsFolder]]/Runtime/iOS/Simulator-13_1" place
executable ios:iphonesimulator13.1/standalone-mobile[[BaseEditionTagLower]].ios-engine as Standalone base ios:iphonesimulator8.2/standalone-mobile[[BaseEditionTagLower]].app/standalone-mobile[[BaseEditionTagLower]]
executable ios:iphonesimulator13.1/revsecurity.ios-extension as RevSecurity base ios:iphonesimulator8.2/revsecurity.dylib
executable ios:iphonesimulator13.1/revpdfprinter.ios-extension as RevPdfPrinter base ios:iphonesimulator8.2/revpdfprinter.dylib
Expand Down Expand Up @@ -820,7 +820,7 @@ component Runtime.iOS
file ios:iphoneos12.1/mobile-disable-ats-template.plist as "DisableATS.plist"
file ios:iphoneos12.1/[email protected] as "Default4InchSplash.png" base ios:[email protected]
file ios:iphoneos12.1/fontmap as "fontmap"
into "[[ToolsFolder]]/Runtime/iOS/Device-13_0" place
into "[[ToolsFolder]]/Runtime/iOS/Device-13_1" place
executable ios:iphoneos13.1/standalone-mobile[[BaseEditionTagLower]].ios-engine as Standalone base ios:iphoneos9.2/standalone-mobile[[BaseEditionTagLower]].ios-engine
executable ios:iphoneos13.1/revsecurity.ios-extension as RevSecurity base ios:iphoneos9.2/revsecurity.ios-extension
executable ios:iphoneos13.1/revpdfprinter.ios-extension as RevPdfPrinter base ios:iphoneos9.2/revpdfprinter.ios-extension
Expand Down
5 changes: 3 additions & 2 deletions docs/dictionary/function/version.lcdoc
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ Example:
put the version into field "Version" of me

Example:
if item 1 of the version < 3 then
answer "Not all features will be available"
set the itemDelimiter to "."
if item 1 of the version < 8 then
answer "Widgets are not available"
end if

Returns:
Expand Down
6 changes: 4 additions & 2 deletions docs/dictionary/message/playStopped.lcdoc
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,10 @@ Handle the <playStopped> <message> if you want to perform a task when a
movie or sound finishes playing.

The <playStopped> <message> is sent when the movie or sound reaches its
end, or when a play stop <command> <execute|executes>. If the user
pauses the movie or sound, the <playPaused> <message> is sent instead.
end when playing forwards, the movie or sound reaches its beginning if it
is playing backwards, or when a play stop <command> <execute|executes>.
If the user pauses the movie or sound, the <playPaused> <message> is sent
instead.

When an audio clip or video clip is playing, a temporary player is
created for it. When the clip is finished, the <playStopped> <message>
Expand Down
1 change: 1 addition & 0 deletions docs/notes/bugfix-19377.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Updated example in the version dictionary entry
1 change: 1 addition & 0 deletions docs/notes/bugfix-19892.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Clarified in the playStopped entry that it is sent when a clip plays backwards to the beginning.
28 changes: 20 additions & 8 deletions extensions/script-libraries/drawing/drawing.livecodescript
Original file line number Diff line number Diff line change
Expand Up @@ -113,12 +113,20 @@ Finally if the width and height are not specified, or are percentages and there
is no viewBox attribute then the intrinsic width and height are taken to be
256.

Note: The drawing binary format is not currently considered stable and is
>*Note:* The drawing binary format is not currently considered stable and is
subject to change until the end of the RC cycle for 9. At present it is advised
that SVG files be compiled as needed when developing in the IDE, and then
compiled ahead-of-time when building a standalone.

Note: To use this function in a standalone, you must include the XML extension.

>*Note:* To use this function in a standalone, you must include the XML
extension.


>*Note:* The <XML library> (and by extension, this function) can not load
> files from the resources folder on Android. You must either copy the
> resources to the documents folder or use the <drawingSvgCompile>
> function instead.

Parameters:

Expand All @@ -132,7 +140,7 @@ of an image directly.
The result:
An error string if an error occurred.

References: drawingSvgCompile (function)
References: drawingSvgCompile (function), XML library (library)
*/
function drawingSvgCompileFile pXmlFile
/* Convert the XML file to the LiveCode array structure. */
Expand Down Expand Up @@ -208,12 +216,16 @@ Finally if the width and height are not specified, or are percentages and there
is no viewBox attribute then the intrinsic width and height are taken to be
256.

Note: The drawing binary format is not currently considered stable and is
subject to change until the end of the RC cycle for 9. At present it is advised
that SVG files be compiled as needed when developing in the IDE, and then
compiled ahead-of-time when building a standalone.
>*Note:* The drawing binary format is not currently considered stable and is
> subject to change until the end of the RC cycle for 9. At present it is advised
> that SVG files be compiled as needed when developing in the IDE, and then
> compiled ahead-of-time when building a standalone.


>*Note:* To use this function in a standalone, you must include the XML
> extension.


Note: To use this function in a standalone, you must include the XML extension.
Parameters:

pXmlText (string):
Expand Down
1 change: 1 addition & 0 deletions extensions/script-libraries/drawing/notes/21822.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# [21822] Added a note mentioning that drawingSvgCompileFile() can not read from the resources folder on Android