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

Commit 77f21f3

Browse files
Merge pull request #2040 from livecode/bugfix-21841
[21841] Ensure iOS minimum supported version is 8.0
2 parents 1ed79a7 + 9bc513b commit 77f21f3

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

Toolset/palettes/standalone settings/revstandalonesettingsiosbehavior.livecodescript

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -239,14 +239,12 @@ on updateSettings
239239
end if
240240
set the label of button "Supported Devices" to it
241241

242-
-- SN-2015-02-04: [[ Bug 14422 ]] We only support iOS 5.1.1 and later
243-
-- MM-2013-09-23: We only support iOS 4.3 and later
244-
--
245-
if tSettings["ios,minimum version"] is not empty and tSettings["ios,minimum version"] <= "5.1" then
242+
-- We only support iOS 8.0 and later
243+
if tSettings["ios,minimum version"] is not empty and tSettings["ios,minimum version"] < "8.0" then
246244
put empty into tSettings["ios,minimum version"]
247245
end if
248246

249-
set the label of button "Minimum iOS Version" to computeDefault(tSettings["ios,minimum version"], "5.1.1") && "or later"
247+
set the label of button "Minimum iOS Version" to computeDefault(tSettings["ios,minimum version"], "8.0") && "or later"
250248
set the hilite of button "Persistent WiFi" to computeDefault(tSettings["ios,persistent wifi"], "false")
251249
set the hilite of button "Enable Background Execution" to computeDefault(tSettings["ios,enable background execution"],"false")
252250
set the hilite of button "Background Audio" to computeDefault(tSettings["ios,background audio"], "false")

notes/bugfix-21841.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Ensure iOS minimum supported version is 8.0

0 commit comments

Comments
 (0)