Skip to content

Commit 3a42bdc

Browse files
committed
Merge remote-tracking branch 'upstream/develop-6.7' into merge-develop-6.7-29.03.2016
2 parents a34c8a6 + b232942 commit 3a42bdc

File tree

4 files changed

+13
-14
lines changed

4 files changed

+13
-14
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ WINE ?= wine
2424

2525
# Some magic to control which versions of iOS we try to build. N.b. you may
2626
# also need to modify the buildbot configuration
27-
IPHONEOS_VERSIONS ?= 8.2 8.4 9.2
28-
IPHONESIMULATOR_VERSIONS ?= 5.1 6.1 7.1 8.2 8.4 9.2
27+
IPHONEOS_VERSIONS ?= 8.2 9.2 9.3
28+
IPHONESIMULATOR_VERSIONS ?= 5.1 6.1 7.1 8.2 9.2 9.3
2929

3030
IOS_SDKS ?= \
3131
$(addprefix iphoneos,$(IPHONEOS_VERSIONS)) \

docs/notes/platforms.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ Currently, the supported versions of Xcode are:
6161
*Xcode 4.6 on MacOS X 10.7
6262
*Xcode 5.1 on MacOS X 10.8
6363
*Xcode 6.2 on MacOS X 10.9
64-
*Xcode 6.2, 6.4 and 7.2 on Mac OS X 10.10
65-
*Xcode 7.2 on MacOS X 10.11
64+
*Xcode 6.2 and 7.2 on Mac OS X 10.10
65+
*Xcode 7.3 on MacOS X 10.11
6666

6767
It is also possible to set other versions of Xcode, to allow testing on a wider range of iOS simulators. For instance, on Yosemite, you can add *Xcode 5.1* in the *Mobile Support* preferences, to let you test your stack on the *iOS Simulator 7.1*.
6868

@@ -71,8 +71,8 @@ We currently support the following iOS Simulators:
7171
*6.1
7272
*7.1
7373
*8.2
74-
*8.4
7574
*9.2
75+
*9.3
7676

7777
## Android
7878
LiveCode allows you to save your stack as an Android application, and also to deploy it on an Android device or simulator from the IDE.

ide-support/revdeploylibraryios.livecodescript

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@ local sDeviceSDKs
1717

1818
-- SN-2015-03-24: [[ Bug 15037 ]] Add a consistent, strict list of the
1919
-- SDKs and device relying on the engines we provide in the shipped version
20-
-- SN-2015-05-01: [[ Xcode 6.4 ]] Add iOS 8.4 amongst the uable iOS SDK
2120
function deployUsableIosSdk
22-
return "5.1,6.1,7.1,8.2,8.4,9.2"
21+
return "5.1,6.1,7.1,8.2,9.2,9.3"
2322
end deployUsableIosSdk
2423

2524
// SN-2015-05-01: [[ Xcode 6.4 ]] Return the pair iOS SDK / Xcode for the current MacOS version
@@ -33,21 +32,21 @@ function deployGetIphoneOSes
3332
else if tMacVersion < 101000 then
3433
put "8.2,6.2" into tList[1]
3534
else if tMacVersion < 101100 then
36-
put "8.4,6.4" into tList[1]
37-
put "8.2,6.2" into tList[2]
35+
put "8.2,6.2" into tList[1]
3836
// Xcode 7.0 can be installed from Mac OSX 10.10.4 onwards
3937
if tMacVersion >= 101004 then
40-
put "9.2,7.1" into tList[3]
38+
put "9.2,7.2" into tList[2]
4139
end if
4240
else
43-
put "9.2,7.1" into tList[1]
41+
// Xcode 7.3 requires a Mac running OS X 10.11 or later
42+
put "9.3,7.3" into tList[1]
4443
end if
4544

4645
return tList
4746
end deployGetIphoneOSes
4847

4948
function deployGetIosMinimumVersions
50-
return "5.1.1,6.0,6.1,7.0,7.1,8.0,8.1,8.2,8.3,8.4,9.0,9.1,9.2"
49+
return "5.1.1,6.0,6.1,7.0,7.1,8.0,8.1,8.2,8.3,8.4,9.0,9.1,9.2,9.3"
5150
end deployGetIosMinimumVersions
5251

5352
////////////////////////////////////////////////////////////////////////////////

tools/setup_xcode_sdks.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
# Update these lists if you need different SDK versions!
44

5-
iphoneos_versions="9.2 8.4 8.2"
6-
iphonesimulator_versions="9.2 8.4 8.2 7.1 6.1 5.1"
5+
iphoneos_versions="9.3 9.2 8.2"
6+
iphonesimulator_versions="9.3 9.2 8.2 7.1 6.1 5.1"
77
macosx_versions="10.8 10.6"
88

99
# This tool creates the symlinks required for Xcode builds of LiveCode.

0 commit comments

Comments
 (0)