diff --git a/Installer/package.txt b/Installer/package.txt index 1d1fa1606d5..eb007872dc9 100644 --- a/Installer/package.txt +++ b/Installer/package.txt @@ -724,7 +724,7 @@ component Runtime.iOS file ios:iphonesimulator12.1/mobile-disable-ats-template.plist as "DisableATS.plist" file ios:iphonesimulator12.1/Default-568h@2x.png as "Default4InchSplash.png" base ios:Default-568h@2x.png 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 @@ -820,7 +820,7 @@ component Runtime.iOS file ios:iphoneos12.1/mobile-disable-ats-template.plist as "DisableATS.plist" file ios:iphoneos12.1/Default-568h@2x.png as "Default4InchSplash.png" base ios:Default-568h@2x.png 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 diff --git a/docs/dictionary/function/version.lcdoc b/docs/dictionary/function/version.lcdoc index 0065914e134..89af1286118 100644 --- a/docs/dictionary/function/version.lcdoc +++ b/docs/dictionary/function/version.lcdoc @@ -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: diff --git a/docs/dictionary/message/playStopped.lcdoc b/docs/dictionary/message/playStopped.lcdoc index bc0b309402d..c977841a26c 100644 --- a/docs/dictionary/message/playStopped.lcdoc +++ b/docs/dictionary/message/playStopped.lcdoc @@ -26,8 +26,10 @@ Handle the if you want to perform a task when a movie or sound finishes playing. The is sent when the movie or sound reaches its -end, or when a play stop . If the user -pauses the movie or sound, the is sent instead. +end when playing forwards, the movie or sound reaches its beginning if it +is playing backwards, or when a play stop . +If the user pauses the movie or sound, the 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 diff --git a/docs/notes/bugfix-19377.md b/docs/notes/bugfix-19377.md new file mode 100644 index 00000000000..c4f90b0b538 --- /dev/null +++ b/docs/notes/bugfix-19377.md @@ -0,0 +1 @@ +# Updated example in the version dictionary entry diff --git a/docs/notes/bugfix-19892.md b/docs/notes/bugfix-19892.md new file mode 100644 index 00000000000..0226e3c70a3 --- /dev/null +++ b/docs/notes/bugfix-19892.md @@ -0,0 +1 @@ +# Clarified in the playStopped entry that it is sent when a clip plays backwards to the beginning. diff --git a/extensions/script-libraries/drawing/drawing.livecodescript b/extensions/script-libraries/drawing/drawing.livecodescript index 29ac7951248..6f337efc420 100644 --- a/extensions/script-libraries/drawing/drawing.livecodescript +++ b/extensions/script-libraries/drawing/drawing.livecodescript @@ -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 (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 +> function instead. Parameters: @@ -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. */ @@ -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): diff --git a/extensions/script-libraries/drawing/notes/21822.md b/extensions/script-libraries/drawing/notes/21822.md new file mode 100644 index 00000000000..19ba3516333 --- /dev/null +++ b/extensions/script-libraries/drawing/notes/21822.md @@ -0,0 +1 @@ +# [21822] Added a note mentioning that drawingSvgCompileFile() can not read from the resources folder on Android