Repository: cordova-ios Updated Branches: refs/heads/master 8f1535d93 -> 4ca3f28ba
CB-10184: Images.xcassets: A 83.5x83.5@2x app icon is required for iPad apps targeting iOS 9.0 and later added image to project template added destination to prepare.js added to ipad pro image definition to contents.json Project: http://git-wip-us.apache.org/repos/asf/cordova-ios/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-ios/commit/d0521fe2 Tree: http://git-wip-us.apache.org/repos/asf/cordova-ios/tree/d0521fe2 Diff: http://git-wip-us.apache.org/repos/asf/cordova-ios/diff/d0521fe2 Branch: refs/heads/master Commit: d0521fe28d3c20054908d229298ba9ced1033c92 Parents: 8f1535d Author: Ben Connito <[email protected]> Authored: Sat Feb 6 10:58:17 2016 -0500 Committer: Shazron Abdullah <[email protected]> Committed: Tue Feb 9 18:24:52 2016 -0800 ---------------------------------------------------------------------- .../AppIcon.appiconset/Contents.json | 6 ++++++ .../AppIcon.appiconset/[email protected] | Bin 0 -> 20563 bytes bin/templates/scripts/cordova/lib/prepare.js | 3 ++- 3 files changed, 8 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-ios/blob/d0521fe2/bin/templates/project/__PROJECT_NAME__/Images.xcassets/AppIcon.appiconset/Contents.json ---------------------------------------------------------------------- diff --git a/bin/templates/project/__PROJECT_NAME__/Images.xcassets/AppIcon.appiconset/Contents.json b/bin/templates/project/__PROJECT_NAME__/Images.xcassets/AppIcon.appiconset/Contents.json index 83a6ba6..469eac1 100644 --- a/bin/templates/project/__PROJECT_NAME__/Images.xcassets/AppIcon.appiconset/Contents.json +++ b/bin/templates/project/__PROJECT_NAME__/Images.xcassets/AppIcon.appiconset/Contents.json @@ -114,6 +114,12 @@ "filename" : "[email protected]", "scale" : "2x" }, + { + "idiom" : "ipad", + "size" : "83.5x83.5", + "filename" : "[email protected]", + "scale" : "2x" + }, { "size" : "24x24", "idiom" : "watch", http://git-wip-us.apache.org/repos/asf/cordova-ios/blob/d0521fe2/bin/templates/project/__PROJECT_NAME__/Images.xcassets/AppIcon.appiconset/[email protected] ---------------------------------------------------------------------- diff --git a/bin/templates/project/__PROJECT_NAME__/Images.xcassets/AppIcon.appiconset/[email protected] b/bin/templates/project/__PROJECT_NAME__/Images.xcassets/AppIcon.appiconset/[email protected] new file mode 100644 index 0000000..3c1a011 Binary files /dev/null and b/bin/templates/project/__PROJECT_NAME__/Images.xcassets/AppIcon.appiconset/[email protected] differ http://git-wip-us.apache.org/repos/asf/cordova-ios/blob/d0521fe2/bin/templates/scripts/cordova/lib/prepare.js ---------------------------------------------------------------------- diff --git a/bin/templates/scripts/cordova/lib/prepare.js b/bin/templates/scripts/cordova/lib/prepare.js index 62a7c8f..a800566 100644 --- a/bin/templates/scripts/cordova/lib/prepare.js +++ b/bin/templates/scripts/cordova/lib/prepare.js @@ -280,7 +280,8 @@ function handleIcons(projectConfig, platformRoot) { {dest: 'icon-72.png', width: 72, height: 72}, {dest: '[email protected]', width: 144, height: 144}, {dest: 'icon-50.png', width: 50, height: 50}, - {dest: '[email protected]', width: 100, height: 100} + {dest: '[email protected]', width: 100, height: 100}, + {dest: '[email protected]', width: 167, height: 167} ]; var destIconsFolder; --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
