From bcbb03d6abd1ac575f3d7a54f0b7d932a72dca48 Mon Sep 17 00:00:00 2001 From: Starla Insigna Date: Tue, 25 Dec 2012 18:21:31 -0500 Subject: Fixed rotation bug with iOS 6 and made highscores landscape --- Resources/Info.plist | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'Resources/Info.plist') diff --git a/Resources/Info.plist b/Resources/Info.plist index 4a70f3c..7a4d9c5 100755 --- a/Resources/Info.plist +++ b/Resources/Info.plist @@ -26,12 +26,14 @@ ${PRODUCT_NAME} CFBundlePackageType APPL + CFBundleShortVersionString + 0.4.9 CFBundleSignature ???? CFBundleURLTypes CFBundleVersion - BUILD_NUMBER + 61 LSRequiresIPhoneOS UIPrerenderedIcon @@ -46,7 +48,9 @@ UIStatusBarHidden UISupportedInterfaceOrientations - + + UIInterfaceOrientationLandscapeLeft + UTExportedTypeDeclarations UTImportedTypeDeclarations -- cgit 1.4.1 From f82fdb7134632c1a52902d44c0d555dac0225898 Mon Sep 17 00:00:00 2001 From: Starla Insigna Date: Tue, 25 Dec 2012 18:32:51 -0500 Subject: Fixed cart driving wrong direction and made all game modes available for testing purposes --- Classes/GameModeSelectionLayer.m | 11 ++++++----- Resources/Info.plist | 4 ++-- 2 files changed, 8 insertions(+), 7 deletions(-) (limited to 'Resources/Info.plist') diff --git a/Classes/GameModeSelectionLayer.m b/Classes/GameModeSelectionLayer.m index e7b6966..03af89d 100644 --- a/Classes/GameModeSelectionLayer.m +++ b/Classes/GameModeSelectionLayer.m @@ -49,23 +49,24 @@ GameModeSelection* collectSelection; - if ([defaults boolForKey:@"hasDoneTutorial"]) + collectSelection = [GameModeSelection selectionWithName:@"Collect" location:@"Paris" filename:@"paris" unlocked:YES]; +/* if ([defaults boolForKey:@"hasDoneTutorial"]) { collectSelection = [GameModeSelection selectionWithName:@"Collect" location:@"Paris" filename:@"paris" unlocked:YES]; } else { collectSelection = [GameModeSelection selectionWithName:@"Collect" location:@"Paris" filename:@"paris" unlockCondition:@"Beat the tutorial!"]; - } + }*/ [gameModes addObject:collectSelection]; GameModeSelection* jumpSelection; - - if ([defaults boolForKey:@"unlockedJumpMode"]) + jumpSelection = [GameModeSelection selectionWithName:@"Jump" location:@"Venice" filename:@"venice" unlocked:YES]; +/* if ([defaults boolForKey:@"unlockedJumpMode"]) { jumpSelection = [GameModeSelection selectionWithName:@"Jump" location:@"Venice" filename:@"venice" unlocked:YES]; } else { jumpSelection = [GameModeSelection selectionWithName:@"Jump" location:@"Venice" filename:@"venice" unlockCondition:@"Get 3000 points in Collect!"]; - } + }*/ [gameModes addObject:jumpSelection]; diff --git a/Resources/Info.plist b/Resources/Info.plist index 7a4d9c5..c280170 100755 --- a/Resources/Info.plist +++ b/Resources/Info.plist @@ -33,7 +33,7 @@ CFBundleURLTypes CFBundleVersion - 61 + 62 LSRequiresIPhoneOS UIPrerenderedIcon @@ -49,7 +49,7 @@ UISupportedInterfaceOrientations - UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight UTExportedTypeDeclarations -- cgit 1.4.1