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

Commit 233a77a

Browse files
author
livecodeali
committed
Merge remote-tracking branch 'origin/develop-7.0' into develop
Conflicts: Toolset/home.livecodescript Toolset/palettes/revProjectBrowser.livecode Toolset/palettes/revProjectInformationLibrary.livecode Toolset/palettes/revpreferencesgui.rev Toolset/palettes/revscripteditor.rev Toolset/palettes/revstartcenter.livecode
2 parents 48291df + c79d2cd commit 233a77a

14 files changed

Lines changed: 27 additions & 1 deletion
300 Bytes
Binary file not shown.

Toolset/libraries/revbackscriptlibrary.livecodescript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1147,7 +1147,7 @@ function revFixPath pPath
11471147
else if the platform is "Win32" then
11481148
put "\/:*?<>|" & quote & tab into tRemoveChars
11491149
else
1150-
put " :?*<>/\()[]{}|'`" & quote & tab into tRemoveChars
1150+
put ":?*<>/\()[]{}|'`" & quote & tab into tRemoveChars
11511151
-- SN-2015-03-09: [[ Bug 14712 ]] Do not put the lower case version
11521152
-- of the name
11531153
-- put tolower(pPath) into tReturnPath

Toolset/libraries/revdeploylibrary.livecodescript

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -312,4 +312,22 @@ command revIDEDeployAndroidInitialize
312312
dispatch "deployInitialize" to stack "revDeployLibraryAndroid"
313313
end revIDEDeployAndroidInitialize
314314

315+
316+
// SN-2015-05-13: [[ AndroidVersions ]] Make the available Android minimum versions
317+
// something changeable from a script-only stack
318+
function revIDEDeployAndroidGetVersionsList
319+
dispatch function "deployGetVersionsList" to stack "revDeployLibraryAndroid"
320+
return the result
321+
end revIDEDeployAndroidGetVersionsList
322+
323+
function revIDEDeployAndroidApiFromVersion pVersion
324+
dispatch function "deployGetApiFromVersion" to stack "revDeployLibraryAndroid" with pVersion
325+
return the result
326+
end revIDEDeployAndroidApiFromVersion
327+
328+
function revIDEDeployAndroidGetAPIsList
329+
dispatch function "deployGetAPIsList" to stack "revDeployLibraryAndroid"
330+
return the result
331+
end revIDEDeployAndroidGetAPIsList
332+
315333
////////////////////////////////////////////////////////////////////////////////
1.49 KB
Binary file not shown.
841 Bytes
Binary file not shown.
9.67 MB
Binary file not shown.

notes/bugfix-10722.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Context menu item "Go to Definition..." always disabled in IDE scripts and names of handlers which are defined in libraries

notes/bugfix-13953.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# book database demonstration doesn't work on Linux

notes/bugfix-14475.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Project Browser Can't Hold Size

notes/bugfix-14802.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# ProjectBrowser Disclosure Triangles Not Responding

0 commit comments

Comments
 (0)