[Scummvm-git-logs] scummvm branch-2-7 -> 6e3b1cd1cac6dd3c1f0ded1c31912fb1606ad0f2
criezy
noreply at scummvm.org
Sat Mar 18 12:45:23 UTC 2023
This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
562228ac37 DISTS: Add AppStore icon for ios7 port
6e3b1cd1ca DISTS: Remove UIApplicationExitsOnSuspend from ios7 Info.plist
Commit: 562228ac3775b5091450544a428448c6a63539d8
https://github.com/scummvm/scummvm/commit/562228ac3775b5091450544a428448c6a63539d8
Author: Lars Sundström (l.sundstrom at gmail.com)
Date: 2023-03-18T12:45:18Z
Commit Message:
DISTS: Add AppStore icon for ios7 port
Apple requires a 1024x1024 icon with no transparency as an AppStore
icon.
When updating the icon set Xcode automatically changed the json file
structure to have the file names on top of each record.
Changed paths:
A dists/ios7/Images.xcassets/AppIcon.appiconset/icon4-1024.png
dists/ios7/Images.xcassets/AppIcon.appiconset/Contents.json
diff --git a/dists/ios7/Images.xcassets/AppIcon.appiconset/Contents.json b/dists/ios7/Images.xcassets/AppIcon.appiconset/Contents.json
index fe7b33c9d04..3cc596a60e0 100644
--- a/dists/ios7/Images.xcassets/AppIcon.appiconset/Contents.json
+++ b/dists/ios7/Images.xcassets/AppIcon.appiconset/Contents.json
@@ -2,110 +2,111 @@
"images" : [
{
"idiom" : "iphone",
- "size" : "20x20",
- "scale" : "2x"
+ "scale" : "2x",
+ "size" : "20x20"
},
{
"idiom" : "iphone",
- "size" : "20x20",
- "scale" : "3x"
+ "scale" : "3x",
+ "size" : "20x20"
},
{
- "size" : "29x29",
- "idiom" : "iphone",
"filename" : "icon4-29 at 2x.png",
- "scale" : "2x"
+ "idiom" : "iphone",
+ "scale" : "2x",
+ "size" : "29x29"
},
{
- "size" : "29x29",
- "idiom" : "iphone",
"filename" : "icon4-29 at 3x.png",
- "scale" : "3x"
+ "idiom" : "iphone",
+ "scale" : "3x",
+ "size" : "29x29"
},
{
- "size" : "40x40",
- "idiom" : "iphone",
"filename" : "icon4-40 at 2x.png",
- "scale" : "2x"
+ "idiom" : "iphone",
+ "scale" : "2x",
+ "size" : "40x40"
},
{
- "size" : "40x40",
- "idiom" : "iphone",
"filename" : "icon4-40 at 3x.png",
- "scale" : "3x"
+ "idiom" : "iphone",
+ "scale" : "3x",
+ "size" : "40x40"
},
{
- "size" : "60x60",
- "idiom" : "iphone",
"filename" : "icon4-60 at 2x.png",
- "scale" : "2x"
+ "idiom" : "iphone",
+ "scale" : "2x",
+ "size" : "60x60"
},
{
- "size" : "60x60",
- "idiom" : "iphone",
"filename" : "icon4-60 at 3x.png",
- "scale" : "3x"
+ "idiom" : "iphone",
+ "scale" : "3x",
+ "size" : "60x60"
},
{
"idiom" : "ipad",
- "size" : "20x20",
- "scale" : "1x"
+ "scale" : "1x",
+ "size" : "20x20"
},
{
"idiom" : "ipad",
- "size" : "20x20",
- "scale" : "2x"
+ "scale" : "2x",
+ "size" : "20x20"
},
{
- "size" : "29x29",
- "idiom" : "ipad",
"filename" : "icon4-29.png",
- "scale" : "1x"
+ "idiom" : "ipad",
+ "scale" : "1x",
+ "size" : "29x29"
},
{
- "size" : "29x29",
- "idiom" : "ipad",
"filename" : "icon4-29 at 2x.png",
- "scale" : "2x"
+ "idiom" : "ipad",
+ "scale" : "2x",
+ "size" : "29x29"
},
{
- "size" : "40x40",
- "idiom" : "ipad",
"filename" : "icon4-40.png",
- "scale" : "1x"
+ "idiom" : "ipad",
+ "scale" : "1x",
+ "size" : "40x40"
},
{
- "size" : "40x40",
- "idiom" : "ipad",
"filename" : "icon4-40 at 2x.png",
- "scale" : "2x"
+ "idiom" : "ipad",
+ "scale" : "2x",
+ "size" : "40x40"
},
{
- "size" : "76x76",
- "idiom" : "ipad",
"filename" : "icon4-76.png",
- "scale" : "1x"
+ "idiom" : "ipad",
+ "scale" : "1x",
+ "size" : "76x76"
},
{
- "size" : "76x76",
- "idiom" : "ipad",
"filename" : "icon4-76 at 2x.png",
- "scale" : "2x"
+ "idiom" : "ipad",
+ "scale" : "2x",
+ "size" : "76x76"
},
{
- "size" : "83.5x83.5",
- "idiom" : "ipad",
"filename" : "icon4-83.5 at 2x.png",
- "scale" : "2x"
+ "idiom" : "ipad",
+ "scale" : "2x",
+ "size" : "83.5x83.5"
},
{
+ "filename" : "icon4-1024.png",
"idiom" : "ios-marketing",
- "size" : "1024x1024",
- "scale" : "1x"
+ "scale" : "1x",
+ "size" : "1024x1024"
}
],
"info" : {
- "version" : 1,
- "author" : "xcode"
+ "author" : "xcode",
+ "version" : 1
}
-}
\ No newline at end of file
+}
diff --git a/dists/ios7/Images.xcassets/AppIcon.appiconset/icon4-1024.png b/dists/ios7/Images.xcassets/AppIcon.appiconset/icon4-1024.png
new file mode 100644
index 00000000000..7687f6ad183
Binary files /dev/null and b/dists/ios7/Images.xcassets/AppIcon.appiconset/icon4-1024.png differ
Commit: 6e3b1cd1cac6dd3c1f0ded1c31912fb1606ad0f2
https://github.com/scummvm/scummvm/commit/6e3b1cd1cac6dd3c1f0ded1c31912fb1606ad0f2
Author: Lars Sundström (l.sundstrom at gmail.com)
Date: 2023-03-18T12:45:18Z
Commit Message:
DISTS: Remove UIApplicationExitsOnSuspend from ios7 Info.plist
The option UIApplicationExitsOnSuspend is deprecated and not valid
anymore. Remove it to be able to push app to AppStore connect.
Changed paths:
dists/ios7/Info.plist
dists/ios7/Info.plist.in
diff --git a/dists/ios7/Info.plist b/dists/ios7/Info.plist
index 24f3302d3df..1813c4c1e54 100644
--- a/dists/ios7/Info.plist
+++ b/dists/ios7/Info.plist
@@ -35,8 +35,6 @@
<true/>
<key>LSSupportsOpeningDocumentsInPlace</key>
<true/>
- <key>UIApplicationExitsOnSuspend</key>
- <false/>
<key>UIApplicationSupportsIndirectInputEvents</key>
<true/>
<key>UIDeviceFamily</key>
diff --git a/dists/ios7/Info.plist.in b/dists/ios7/Info.plist.in
index 139f5cf0262..dde146420e5 100644
--- a/dists/ios7/Info.plist.in
+++ b/dists/ios7/Info.plist.in
@@ -35,8 +35,6 @@
<true/>
<key>LSSupportsOpeningDocumentsInPlace</key>
<true/>
- <key>UIApplicationExitsOnSuspend</key>
- <false/>
<key>UIApplicationSupportsIndirectInputEvents</key>
<true/>
<key>UIDeviceFamily</key>
More information about the Scummvm-git-logs
mailing list