From befc4599dfef0cfa2da61f24a27d85dbdd1a822c Mon Sep 17 00:00:00 2001 From: Brian Milby Date: Sat, 25 Aug 2018 11:59:27 -0500 Subject: [PATCH] [[ Bug 21527 ]] Include iPadPro splash image in plist file Adjusted `revCreateMobilePlist` handler to include the iPadPro splash images in the plist file so that they are recognized by the device. --- docs/notes/bugfix-21527.md | 1 + ide-support/revsaveasiosstandalone.livecodescript | 2 ++ 2 files changed, 3 insertions(+) create mode 100644 docs/notes/bugfix-21527.md diff --git a/docs/notes/bugfix-21527.md b/docs/notes/bugfix-21527.md new file mode 100644 index 00000000000..f11ed912568 --- /dev/null +++ b/docs/notes/bugfix-21527.md @@ -0,0 +1 @@ +# Include iPadPro splash image in plist file diff --git a/ide-support/revsaveasiosstandalone.livecodescript b/ide-support/revsaveasiosstandalone.livecodescript index 70878a40350..b04d6517178 100644 --- a/ide-support/revsaveasiosstandalone.livecodescript +++ b/ide-support/revsaveasiosstandalone.livecodescript @@ -1707,9 +1707,11 @@ private command revCreateMobilePlist pSettings, pAppBundle, pTarget, pFonts, pPl if 2 is among the items of tDeviceFamily then if tIPadOrientations contains "Portrait" then put "Default-Portrait|Default-Portrait|{768, 1024}|Portrait" & return after tSplashScreens + put "Default-iPadProPortrait|Default-iPadProPortrait|{1024, 1366}|Portrait" & return after tSplashScreens end if if tIPadOrientations contains "Landscape" then put "Default-Landscape|Default-Landscape|{768, 1024}|Landscape" & return after tSplashScreens + put "Default-iPadProLandscape|Default-iPadProLandscape|{1024, 1366}|Landscape" & return after tSplashScreens end if end if