Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit 4e4cadf

Browse files
Auto-merge pull request #7167 from livecodepanos/merge-develop-9.5-18.09.2019
Merge develop 9.5 18.09.2019
2 parents 2559e26 + 6952c35 commit 4e4cadf

Some content is hidden

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

71 files changed

+240
-143
lines changed

buildbot.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ buildtool_command = $(LIVECODE) -ui $(BUILDTOOL_STACK) \
9898
# Settings for upload
9999
RSYNC ?= rsync
100100
SHA1SUM ?= sha1sum
101-
UPLOAD_SERVER ?= meg.on-rev.com
101+
UPLOAD_SERVER ?= molly.livecode.com
102102
UPLOAD_PATH = staging/$(BUILD_LONG_VERSION)/$(GIT_VERSION)
103103
UPLOAD_MAX_RETRIES = 50
104104

docs/dictionary/command/mobileControlCreate.lcdoc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,14 @@ To read a property of a native control use: <mobileControlGet>
7171

7272
To control the behavior of a native control use: <mobileControlDo>
7373

74+
>*Note:* If a player is created with an invalid filename or if the file is
75+
> missing, the video controller will display incorrectly. To check if a
76+
> player is set up correctly, the following code could be used:
77+
78+
if mobileControlGet(sPlayerID, "duration") < 0 then
79+
answer "Player is not initialised correctly"
80+
end if
81+
7482
References: mobileControlDelete (command), mobileControlDo (command),
7583
mobileControlSet (command),
7684
mobileControlGet (function), mobileControlTarget (function),

docs/dictionary/command/mobileControlSet.lcdoc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,14 @@ directionalLockEnabled property). This is a boolean value.
191191
- "filename": The filename of URL of the media to play. Setting the
192192
filename of the player automatically 'prepares' the movie for playback.
193193

194+
>*Note:* If the filename set for a player is invalid or the file is missing,
195+
> the video controller will display incorrectly. To check if a player is
196+
> set up correctly, the following code could be used:
197+
198+
if mobileControlGet(sPlayerID, "duration") < 0 then
199+
answer "Player is not initialised correctly"
200+
end if
201+
194202
- "showController": Determines whether the controller is displayed over
195203
the content. This is a boolean value.
196204

docs/dictionary/command/mobilePickDate.lcdoc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,6 @@ Android is "date"
6767

6868
- "datetime" (default on iOS) (iOS only): display a native picker to
6969
choose the date and time
70-
71-
7270
- "date" (default on Android): display a native picker to choose the
7371
date
7472
- "time": display a native picker to choose the time

docs/dictionary/command/mobileSetFullScreenRectForOrientations.lcdoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,5 @@ the <mobileAllowedOrientations>.
5353
References: mobileLockOrientation (command), mobileSetAllowedOrientations (command),
5454
mobileUnlockOrientation (command), mobileAllowedOrientations (function),
5555
mobileDeviceOrientation (function), mobileOrientation (function),
56-
orientationChanged (message), resizeStack (message)
56+
orientationChanged (message), resizeStack (message),
57+
fullscreenMode (property)

docs/dictionary/command/mobileSetLocationHistoryLimit.lcdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,6 @@ mobileStartTrackingSensor (command),
7070
mobileGetLocationHistory (function),
7171
mobileGetLocationHistoryLimit (function),
7272
mobileSensorAvailable (function), mobileSensorReading (function),
73-
mobileLocationAuthorizationStatus (function),
73+
mobileLocationAuthorizationStatus (function), function (glossary),
7474
locationChanged (message), trackingError (message)
7575

docs/dictionary/command/pop.lcdoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ If you specify a container, the long <ID> of the <card> is placed in the
3737
change.
3838

3939
If the list is empty when you use the <pop> <command>, LiveCode goes to
40-
the Home <card>. If you are running in the LiveCode <development
41-
environment>, this is the first <card> of the "license.rev" <stack>,
42-
which is the splash screen that appears when you start up LiveCode.
43-
(Click this card to close the stack.) If you are running in a
40+
the Home <card>. If you are running in the LiveCode
41+
<development environment>, this is the first <card> of the "license.rev"
42+
<stack>, which is the splash screen that appears when you start up
43+
LiveCode. (Click this card to close the stack.) If you are running in a
4444
<standalone application>, the Home <card> is the first <card> of the
4545
<standalone application|standalone's> <main stack>.
4646

docs/dictionary/command/popup-widget.lcdoc

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,28 @@ end mouseDown
3434

3535
Parameters:
3636
kind: The unique identifier of the widget to use for the popup.
37-
location: A point or expression that evaluates to a point. Two integers separated by a comma.
38-
properties: An expression that evaluates to an array. For each key of the array, the popup widget will be initialized by setting that property to the value for that key.
37+
location: A point or expression that evaluates to a point. Two integers
38+
separated by a comma.
39+
properties: An expression that evaluates to an array. For each key of the
40+
array, the popup widget will be initialized by setting that property to
41+
the value for that key.
3942

40-
The result: If the user dismisses the popup, the it variable is set to empty, and the result function returns "Cancel".
43+
The result: If the user dismisses the popup, the it variable is set to
44+
empty, and the result function returns "Cancel".
4145

42-
It: The <popup widget> command places the widget return value in the it variable.
46+
It: The <popup widget> command places the widget return value in the it
47+
variable.
4348

4449
Description:
45-
Use to display a widget within a popup window, for example as a tooltip or picker dialog.
50+
Use to display a widget within a popup window, for example as a tooltip
51+
or picker dialog.
4652

47-
The popup appears with its top left corner at the <location>. If no <location> is specified, the popup's top left corner is at the <mouse location>. While the popup widget is displayed, the handler pauses.
53+
The popup appears with its top left corner at the <location>. If no
54+
<location> is specified, the popup's top left corner is at the
55+
<mouseLoc|mouse location>. While the popup widget is displayed, the
56+
handler pauses.
4857

49-
References: mouseDown (message), mouseDown message (message), mouseUp message (message), popup (keyword), clickLoc (function), mouse location (function), result (function), it (keyword)
58+
References: mouseDown (message), mouseUp (message), popup (keyword),
59+
clickLoc (function), mouseLoc (function), result (function), it (keyword)
5060

5161
Tags: widget

docs/dictionary/command/popup.lcdoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ clicked control in the stack (for a stack menu). The button or stack
5555
menu handles the menu choice.
5656

5757
If you use a button to hold the contents of the menu, the contents of
58-
the button's <menuItem Keyword> is displayed in the popup.
58+
the button's <menuItem> is displayed in the popup.
5959

6060
**Important:** If you use a button to hold the contents of the menu,
6161
the following properties must be set:
@@ -82,8 +82,8 @@ parameter of the <mouseDown(message)> message, as described above.
8282
References: pulldown (command), clickLoc (function), mouseLoc (function),
8383
menu item (glossary), popup menu (glossary), button (keyword),
8484
menuItem (keyword), popup (keyword), menuPick (message),
85-
mouseDown (message), mouseDown (message), mouseUp (message), message (glossary),
86-
stack (object), button (object), style property (property),
85+
mouseDown (message), mouseDown (message), mouseUp (message),
86+
message (glossary), stack (object), button (object), style (property),
8787
toolTip (property), menuMode (property), visible (property),
8888
menuMouseButton (property)
8989

docs/dictionary/command/post.lcdoc

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Type: command
55
Syntax: post <data> to URL <destinationURL>
66

77
Summary:
8-
Sends data to a <web server> using the POST action of <HTTP>.
8+
Sends data to a <web server> using the POST action of <http|HTTP>.
99

1010
Associations: internet library
1111

@@ -120,11 +120,13 @@ function (control structure), result (function), URLStatus (function),
120120
URLEncode (function), libURLFormData (function), URLDecode (function),
121121
libURLMultipartFormAddPart (function), libURLMultipartFormData (function),
122122
variable (glossary), command (glossary),
123-
Livecode custom library (glossary), property (glossary),
123+
LiveCode custom library (glossary), property (glossary),
124124
standalone application (glossary), blocking (glossary),
125125
web server (glossary), command (glossary), expression (glossary),
126126
syntax (glossary), server (glossary), upload (glossary),
127-
statement (glossary), handler (glossary), URL (keyword), ftp (keyword),
127+
statement (glossary), handler (glossary),
128+
Standalone Application Settings (glossary),
129+
URL (keyword), ftp (keyword),
128130
http (keyword), Internet library (library), urlProgress (message),
129131
httpHeaders (property), HTTPProxy (property)
130132

0 commit comments

Comments
 (0)