1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Introjucer: Fixed a typo in the iOS project generation that creates the launch-image info file.

This commit is contained in:
jules 2015-01-06 09:59:26 +00:00
parent 96054060cd
commit ae271f09de
3 changed files with 6 additions and 6 deletions

View file

@ -8,7 +8,7 @@
"scale": "2x"
},
{
"orientation": "portrait",
"orientation": "landscape",
"idiom": "iphone",
"extent": "full-screen",
"minimum-system-version": "7.0",

View file

@ -8,7 +8,7 @@
"scale": "2x"
},
{
"orientation": "portrait",
"orientation": "landscape",
"idiom": "iphone",
"extent": "full-screen",
"minimum-system-version": "7.0",

View file

@ -40,8 +40,8 @@ class XCodeProjectExporter : public ProjectExporter
{
public:
//==============================================================================
static const char* getNameMac() { return "XCode (MacOSX)"; }
static const char* getNameiOS() { return "XCode (iOS)"; }
static const char* getNameMac() { return "Xcode (MacOSX)"; }
static const char* getNameiOS() { return "Xcode (iOS)"; }
static const char* getValueTreeTypeName (bool iOS) { return iOS ? "XCODE_IPHONE" : "XCODE_MAC"; }
//==============================================================================
@ -1309,7 +1309,7 @@ private:
};
const ImageType types[] = { { "portrait", "iphone", "full-screen", "2x" },
{ "portrait", "iphone", "full-screen", "2x" },
{ "landscape", "iphone", "full-screen", "2x" },
{ "portrait", "ipad", "full-screen", "1x" },
{ "landscape", "ipad", "full-screen", "1x" },
{ "portrait", "ipad", "full-screen", "2x" },
@ -1322,7 +1322,7 @@ private:
d->setProperty ("orientation", types[i].orientation);
d->setProperty ("idiom", types[i].idiom);
d->setProperty ("extent", types[i].extent);
d->setProperty ("minimum-system-version", "7.0");
d->setProperty ("minimum-system-version", "7.0");
d->setProperty ("scale", types[i].scale);
images.append (var (d));
}