From bdfb6bc41b96bd5a545bc10141a2e338ec6f7400 Mon Sep 17 00:00:00 2001 From: Jakob Obkircher Date: Fri, 23 Sep 2011 16:57:18 +0200 Subject: [PATCH] some little changes --- Classes/MixareAppDelegate.m | 179 ++++++------ Classes/data/JsonHandler.m | 1 + Classes/reality/PoiItem.m | 2 +- MainWindow.xib | 456 +++++++++++++++++++------------ Mixare.xcodeproj/project.pbxproj | 15 +- 5 files changed, 393 insertions(+), 260 deletions(-) diff --git a/Classes/MixareAppDelegate.m b/Classes/MixareAppDelegate.m index 09c6dcf..f949176 100644 --- a/Classes/MixareAppDelegate.m +++ b/Classes/MixareAppDelegate.m @@ -42,11 +42,12 @@ @implementation MixareAppDelegate #pragma mark - #pragma mark URL Handler - (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url { - NSLog(@"the url: %@", [url absoluteString]); + NSLog(@"the url: %@", [url absoluteURL]); if (!url) { return NO; } NSString *URLString = [url absoluteString]; [[NSUserDefaults standardUserDefaults] setObject:URLString forKey:@"extern_url"]; [[NSUserDefaults standardUserDefaults] synchronize]; + [self downloadData]; return YES; } #pragma mark - @@ -103,7 +104,7 @@ -(void) didRotate:(NSNotification *)notification{ [self setViewToPortrait:augViewController.view]; beforeWasLandscape = NO; } - NSLog(@"DID ROTATE"); +// deletNSLog(@"DID ROTATE"); } @@ -269,7 +270,7 @@ -(BOOL)checkIfDataSourceIsEanabled: (NSString *)source{ return ret; } -(void)downloadData{ - //NSAutoreleasePool * pool = [[NSAutoreleasePool alloc]init]; + //Adding logic if mixare is called outside by specific url jHandler = [[JsonHandler alloc]init]; CLLocation * pos = _locManager.location; NSString * wikiData; @@ -280,87 +281,101 @@ -(void)downloadData{ if(_slider != nil){ radius = _slider.value; } - - if([self checkIfDataSourceIsEanabled:@"Wikipedia"]){ - NSLog(@"Downloading WIki data"); - NSString *language = [[NSLocale preferredLanguages] objectAtIndex:0]; - NSLog(@"Language: %@",language); - wikiData = [[NSString alloc]initWithContentsOfURL:[NSURL URLWithString:[DataSource createRequestURLFromDataSource:@"WIKIPEDIA" Lat:pos.coordinate.latitude Lon:pos.coordinate.longitude Alt:pos.altitude radius:radius Lang:language]] encoding:NSUTF8StringEncoding error:nil]; - NSLog(@"Download done"); - }else { - wikiData = nil; - } - if([self checkIfDataSourceIsEanabled:@"Buzz"]){ - NSLog(@"Downloading Buzz data"); - buzzData = [[NSString alloc]initWithContentsOfURL:[NSURL URLWithString:[DataSource createRequestURLFromDataSource:@"BUZZ" Lat:pos.coordinate.latitude Lon:pos.coordinate.longitude Alt:700 radius:radius Lang:@"de"]]encoding:NSUTF8StringEncoding error:nil]; - NSLog(@"Download done"); - }else { - buzzData = nil; - } - if([self checkIfDataSourceIsEanabled:@"Twitter"]){ - NSLog(@"Downloading Twitter data"); - twitterData = [[NSString alloc]initWithContentsOfURL:[NSURL URLWithString:[DataSource createRequestURLFromDataSource:@"TWITTER" Lat:pos.coordinate.latitude Lon:pos.coordinate.longitude Alt:700 radius:radius Lang:@"de"]]encoding:NSUTF8StringEncoding error:nil]; - NSLog(@"Download done"); - }else { - twitterData = nil; - } - //User specific Sources .. - if(_sourceViewController != nil && [_sourceViewController.dataSourceArray count]>3){ - //datasource contains sources added by the user - NSLog(@"Downloading Mixare data"); - //mixareData = [[NSString alloc]initWithContentsOfURL:[NSURL URLWithString:@"http://www.suedtirolerland.it/api/map/getARData/?client%5Blat%5D=46.47895932197436&client%5Blng%5D=11.295661926269203&client%5Brad%5D=100&lang_id=1&project_id=15&showTypes=13%2C14&key=51016f95291ef145e4b260c51b06af61"] encoding:NSUTF8StringEncoding error:nil]; - //getting selected Source - NSString * customURL; - for(int i=3;i< [_sourceViewController.dataSourceArray count];i++){ - if([self checkIfDataSourceIsEanabled:[_sourceViewController.dataSourceArray objectAtIndex:i]]){ - customURL = [NSString stringWithFormat:@"http://%@",[_sourceViewController.dataSourceArray objectAtIndex:i]]; - } - } - NSURL * customDsURL; - @try { - customDsURL = [NSURL URLWithString:customURL]; - mixareData = [[NSString alloc]initWithContentsOfURL:customDsURL]; - NSLog(@"Download done"); - } - @catch (NSException *exception) { - NSLog(@"ERROR Downloading custom ds"); - } - @finally { - - } - - - }else { - mixareData = nil; - } - - [_data removeAllObjects]; - if(wikiData != nil){ - _data= [jHandler processWikipediaJSONData:wikiData]; - NSLog(@"data count: %d", [_data count]); - [wikiData release]; - } - if(buzzData != nil){ - [_data addObjectsFromArray:[jHandler processBuzzJSONData:buzzData]]; - NSLog(@"data count: %d", [_data count]); - [buzzData release]; - } - if(twitterData != nil && ![twitterData isEqualToString:@""]){ - [_data addObjectsFromArray:[jHandler processTwitterJSONData:twitterData]]; - NSLog(@"data count: %d", [_data count]); - [twitterData release]; - } - if(mixareData != nil && ![mixareData isEqualToString:@""]){ - [_data addObjectsFromArray:[jHandler processMixareJSONData:mixareData]]; - NSLog(@"data count: %d", [_data count]); - [mixareData release]; - } - - - + // NSString * external_url; +// NSString * external_url = [[NSUserDefaults standardUserDefaults] objectForKey:@"extern_url"]; +// //NSLog(@"EXTERNAL URL IN DOWNLOAD: %@", external_url); +// +// if(external_url != nil){ +// //Application is called with a url starting with mixare:// +// NSLog(@"Downloading Mixare data"); +// NSURL * url = [NSURL URLWithString:[external_url stringByTrimmingCharactersInSet:[NSCharacterSet characterSetWithCharactersInString:@"mixare://"]]]; +// NSLog(@"URL %@", url ); +// mixareData = [[NSString alloc]initWithContentsOfURL:url encoding:NSUTF8StringEncoding error:nil]; +// NSLog(@"Downloading Mixare done %@", mixareData); +// if(mixareData != nil && ![mixareData isEqualToString:@""]){ +// [_data addObjectsFromArray:[jHandler processMixareJSONData:mixareData]]; +// NSLog(@"data count: %d", [_data count]); +// [mixareData release]; +// } +// }else{ + //Application is called normally + if([self checkIfDataSourceIsEanabled:@"Wikipedia"]){ + NSLog(@"Downloading WIki data"); + NSString *language = [[NSLocale preferredLanguages] objectAtIndex:0]; + NSLog(@"Language: %@",language); + wikiData = [[NSString alloc]initWithContentsOfURL:[NSURL URLWithString:[DataSource createRequestURLFromDataSource:@"WIKIPEDIA" Lat:pos.coordinate.latitude Lon:pos.coordinate.longitude Alt:pos.altitude radius:radius Lang:language]] encoding:NSUTF8StringEncoding error:nil]; + NSLog(@"Download done"); + }else { + wikiData = nil; + } + if([self checkIfDataSourceIsEanabled:@"Buzz"]){ + NSLog(@"Downloading Buzz data"); + buzzData = [[NSString alloc]initWithContentsOfURL:[NSURL URLWithString:[DataSource createRequestURLFromDataSource:@"BUZZ" Lat:pos.coordinate.latitude Lon:pos.coordinate.longitude Alt:700 radius:radius Lang:@"de"]]encoding:NSUTF8StringEncoding error:nil]; + NSLog(@"Download done"); + }else { + buzzData = nil; + } + if([self checkIfDataSourceIsEanabled:@"Twitter"]){ + NSLog(@"Downloading Twitter data"); + twitterData = [[NSString alloc]initWithContentsOfURL:[NSURL URLWithString:[DataSource createRequestURLFromDataSource:@"TWITTER" Lat:pos.coordinate.latitude Lon:pos.coordinate.longitude Alt:700 radius:radius Lang:@"de"]]encoding:NSUTF8StringEncoding error:nil]; + NSLog(@"Download done"); + }else { + twitterData = nil; + } + //User specific Sources .. + if(_sourceViewController != nil && [_sourceViewController.dataSourceArray count]>3){ + //datasource contains sources added by the user + NSLog(@"Downloading Mixare data"); + //mixareData = [[NSString alloc]initWithContentsOfURL:[NSURL URLWithString:@"http://www.suedtirolerland.it/api/map/getARData/?client%5Blat%5D=46.47895932197436&client%5Blng%5D=11.295661926269203&client%5Brad%5D=100&lang_id=1&project_id=15&showTypes=13%2C14&key=51016f95291ef145e4b260c51b06af61"] encoding:NSUTF8StringEncoding error:nil]; + //getting selected Source + NSString * customURL; + for(int i=3;i< [_sourceViewController.dataSourceArray count];i++){ + if([self checkIfDataSourceIsEanabled:[_sourceViewController.dataSourceArray objectAtIndex:i]]){ + customURL = [NSString stringWithFormat:@"http://%@",[_sourceViewController.dataSourceArray objectAtIndex:i]]; + } + } + NSURL * customDsURL; + @try { + customDsURL = [NSURL URLWithString:customURL]; + mixareData = [[NSString alloc]initWithContentsOfURL:customDsURL encoding:NSUTF8StringEncoding error:nil]; + NSLog(@"Download done"); + } + @catch (NSException *exception) { + NSLog(@"ERROR Downloading custom ds"); + } + @finally { + + } + + + }else { + mixareData = nil; + } + + [_data removeAllObjects]; + if(wikiData != nil){ + _data= [jHandler processWikipediaJSONData:wikiData]; + NSLog(@"data count: %d", [_data count]); + [wikiData release]; + } + if(buzzData != nil){ + [_data addObjectsFromArray:[jHandler processBuzzJSONData:buzzData]]; + NSLog(@"data count: %d", [_data count]); + [buzzData release]; + } + if(twitterData != nil && ![twitterData isEqualToString:@""]){ + [_data addObjectsFromArray:[jHandler processTwitterJSONData:twitterData]]; + NSLog(@"data count: %d", [_data count]); + [twitterData release]; + } + if(mixareData != nil && ![mixareData isEqualToString:@""]){ + [_data addObjectsFromArray:[jHandler processMixareJSONData:mixareData]]; + NSLog(@"data count: %d", [_data count]); + [mixareData release]; + } +// } [jHandler release]; - //[pool release]; } -(void)valueChanged:(id)sender{ diff --git a/Classes/data/JsonHandler.m b/Classes/data/JsonHandler.m index ce01485..3e9dd1a 100644 --- a/Classes/data/JsonHandler.m +++ b/Classes/data/JsonHandler.m @@ -47,6 +47,7 @@ -(NSMutableArray*)processMixareJSONData: (NSString*) jsonData{ NSDictionary* data = [jsonData JSONValue]; NSMutableArray* ret = [[NSMutableArray alloc]init]; NSArray* geonames = [data objectForKey:@"results"]; + NSLog(@"IN PROCESS MIXARE DATA: %@", geonames); for(NSDictionary *geoname in geonames){ [ret addObject:[NSDictionary dictionaryWithObjectsAndKeys:[geoname objectForKey:@"title"],kTitleKey, [geoname objectForKey:@"webpage"],kUrlKey,[geoname objectForKey:@"lng"],kLonKey,[geoname objectForKey:@"lat"],kLatKey,[geoname objectForKey:@"elevation"],kAltKey,@"MIXARE",kSourceKey, nil]]; } diff --git a/Classes/reality/PoiItem.m b/Classes/reality/PoiItem.m index 3a3a971..c7aa98f 100644 --- a/Classes/reality/PoiItem.m +++ b/Classes/reality/PoiItem.m @@ -53,7 +53,7 @@ - (BOOL)isEqualToCoordinate:(PoiItem *)otherCoordinate { equal = equal && self.inclination == otherCoordinate.inclination; equal = equal && self.azimuth == otherCoordinate.azimuth; - if (self.title && otherCoordinate.title || self.title && !otherCoordinate.title || !self.title && otherCoordinate.title) { + if ((self.title && otherCoordinate.title) || (self.title && !otherCoordinate.title) || (!self.title && otherCoordinate.title)) { equal = equal && [self.title isEqualToString:otherCoordinate.title]; } diff --git a/MainWindow.xib b/MainWindow.xib index 248b007..d4e07c8 100644 --- a/MainWindow.xib +++ b/MainWindow.xib @@ -1,10 +1,15 @@ - 1056 - 10H574 - 1246 - 1038.35 + 1280 + 10K549 + 1934 + 1038.36 + 461.00 + + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + 931 + IBUITableView IBUITextView @@ -30,7 +35,10 @@ com.apple.InterfaceBuilder.IBCocoaTouchPlugin - + + PluginDependencyRecalculationVersion + + IBFilesOwner @@ -79,7 +87,6 @@ 292 {{0, -2}, {320, 44}} - NO IBCocoaTouchFramework @@ -116,7 +123,6 @@ 292 {{20, 142}, {287, 264}} - YES @@ -140,23 +146,26 @@ A IBCocoaTouchFramework 2 + + 1 + 17 + + + Helvetica + 17 + 16 + 292 {{20, 53}, {282, 77}} - NO IBCocoaTouchFramework 0 0 - - Helvetica-Bold - 15 - 16 - 3 MQA @@ -173,6 +182,17 @@ A NSImage mixare_button.png + + Helvetica-Bold + Helvetica + 2 + 15 + + + Helvetica-Bold + 15 + 16 + @@ -183,7 +203,6 @@ A 292 {{20, 53}, {66, 21}} - NO YES @@ -191,22 +210,23 @@ A NO IBCocoaTouchFramework Latitude: - - Helvetica - 17 - 16 - 1 10 + + Helvetica + Helvetica + 0 + 17 + + 292 {{108, 53}, {131, 21}} - NO YES @@ -219,13 +239,14 @@ A 1 NO 17 + + 292 {{20, 82}, {80, 21}} - NO YES @@ -233,18 +254,18 @@ A NO IBCocoaTouchFramework Longitude: - 1 10 + + 292 {{20, 111}, {57, 21}} - NO YES @@ -252,18 +273,18 @@ A NO IBCocoaTouchFramework Altitude - 1 10 + + 292 {{20, 140}, {54, 21}} - NO YES @@ -271,18 +292,18 @@ A NO IBCocoaTouchFramework Speed: - 1 10 + + 292 {{20, 169}, {75, 21}} - NO YES @@ -290,18 +311,18 @@ A NO IBCocoaTouchFramework Accuracy: - 1 10 + + 292 {{20, 193}, {122, 21}} - NO YES @@ -309,18 +330,18 @@ A NO IBCocoaTouchFramework last gps update: - 1 10 + + 292 {{69, 13}, {127, 32}} - NO YES @@ -328,22 +349,27 @@ A NO IBCocoaTouchFramework GPS Info + + + 1 + 10 + + Helvetica-Bold + Helvetica + 2 + 24 + Helvetica-Bold 24 16 - - - 1 - 10 292 {{108, 82}, {131, 21}} - NO YES @@ -356,13 +382,14 @@ A 1 NO 17 + + 292 {{108, 111}, {136, 21}} - NO YES @@ -375,13 +402,14 @@ A 1 NO 17 + + 292 {{108, 140}, {136, 21}} - NO YES @@ -394,13 +422,14 @@ A 1 NO 17 + + 292 {{108, 169}, {143, 21}} - NO YES @@ -413,13 +442,14 @@ A 1 NO 17 + + 292 {{150, 193}, {101, 21}} - NO YES 7 @@ -431,11 +461,12 @@ A 1 NO 17 + + {{28, 130}, {264, 267}} - 3 @@ -449,14 +480,12 @@ A {{0, 20}, {320, 411}} - IBCocoaTouchFramework IBCocoaTouchFramework - 0 @@ -488,7 +517,6 @@ A camera.png IBCocoaTouchFramework - @@ -506,7 +534,6 @@ A icon_datasource.png IBCocoaTouchFramework - @@ -544,7 +571,6 @@ A 22 - Sources IBCocoaTouchFramework @@ -572,7 +598,6 @@ A list.png IBCocoaTouchFramework - @@ -645,7 +670,6 @@ A map.png IBCocoaTouchFramework - @@ -663,21 +687,11 @@ A 266 {{0, 431}, {320, 49}} - - 3 MCAwAA IBCocoaTouchFramework - - - - - - - - @@ -706,7 +720,6 @@ A NO IBCocoaTouchFramework Loading - 6 System @@ -719,6 +732,8 @@ A 1 10 + + {120, 120} @@ -733,6 +748,14 @@ A + + + delegate + + + + 99 + window @@ -743,19 +766,51 @@ A - delegate - - + tabBarController + + - 99 + 148 - tabBarController + listViewController - + - 148 + 208 + + + + mapViewController + + + + 230 + + + + sourceViewController + + + + 294 + + + + moreViewController + + + + 295 + + + + notificationView + + + + 299 @@ -776,34 +831,26 @@ A delegate - - + + - 194 + 300 - dataSource + delegate - 195 + 194 - listViewController - + dataSource + - 208 - - - - mapViewController - - - - 230 + 195 @@ -885,6 +932,14 @@ A 280 + + + addButton + + + + 292 + dataSource @@ -901,14 +956,6 @@ A 287 - - - addButton - - - - 292 - addSource @@ -917,38 +964,6 @@ A 293 - - - sourceViewController - - - - 294 - - - - moreViewController - - - - 295 - - - - notificationView - - - - 299 - - - - delegate - - - - 300 - @@ -1272,90 +1287,60 @@ A UIApplication + com.apple.InterfaceBuilder.IBCocoaTouchPlugin UIResponder - {{874, 774}, {320, 480}} + com.apple.InterfaceBuilder.IBCocoaTouchPlugin com.apple.InterfaceBuilder.IBCocoaTouchPlugin com.apple.InterfaceBuilder.IBCocoaTouchPlugin SourceViewController com.apple.InterfaceBuilder.IBCocoaTouchPlugin + com.apple.InterfaceBuilder.IBCocoaTouchPlugin com.apple.InterfaceBuilder.IBCocoaTouchPlugin MapViewController + com.apple.InterfaceBuilder.IBCocoaTouchPlugin com.apple.InterfaceBuilder.IBCocoaTouchPlugin ListViewController com.apple.InterfaceBuilder.IBCocoaTouchPlugin com.apple.InterfaceBuilder.IBCocoaTouchPlugin - {{229, 373}, {320, 480}} com.apple.InterfaceBuilder.IBCocoaTouchPlugin com.apple.InterfaceBuilder.IBCocoaTouchPlugin com.apple.InterfaceBuilder.IBCocoaTouchPlugin com.apple.InterfaceBuilder.IBCocoaTouchPlugin + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + com.apple.InterfaceBuilder.IBCocoaTouchPlugin com.apple.InterfaceBuilder.IBCocoaTouchPlugin MoreViewController + com.apple.InterfaceBuilder.IBCocoaTouchPlugin com.apple.InterfaceBuilder.IBCocoaTouchPlugin com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - P4AAAL+AAAAAAAAAwhgAAA - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - P4AAAL+AAABBoAAAw8oAAA - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - P4AAAL+AAABBoAAAwwgAAA - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - P4AAAL+AAABB4AAAw8WAAA - com.apple.InterfaceBuilder.IBCocoaTouchPlugin com.apple.InterfaceBuilder.IBCocoaTouchPlugin com.apple.InterfaceBuilder.IBCocoaTouchPlugin com.apple.InterfaceBuilder.IBCocoaTouchPlugin com.apple.InterfaceBuilder.IBCocoaTouchPlugin com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - P4AAAL+AAABBoAAAw1QAAA - com.apple.InterfaceBuilder.IBCocoaTouchPlugin com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - P4AAAL+AAABC3gAAwpAAAA - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - P4AAAL+AAABC2AAAwsoAAA - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - P4AAAL+AAABC2AAAwwIAAA - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - P4AAAL+AAABC2AAAwx8AAA - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - P4AAAL+AAABC2AAAwzwAAA - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - P4AAAL+AAABDFgAAw1QAAA - - {{329, 894}, {320, 480}} com.apple.InterfaceBuilder.IBCocoaTouchPlugin SourceViewController com.apple.InterfaceBuilder.IBCocoaTouchPlugin com.apple.InterfaceBuilder.IBCocoaTouchPlugin com.apple.InterfaceBuilder.IBCocoaTouchPlugin com.apple.InterfaceBuilder.IBCocoaTouchPlugin + com.apple.InterfaceBuilder.IBCocoaTouchPlugin com.apple.InterfaceBuilder.IBCocoaTouchPlugin com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - P4AAAL+AAAAAAAAAwuwAAA - + com.apple.InterfaceBuilder.IBCocoaTouchPlugin com.apple.InterfaceBuilder.IBCocoaTouchPlugin MixareAppDelegate com.apple.InterfaceBuilder.IBCocoaTouchPlugin @@ -1375,9 +1360,16 @@ A dataSourceArray NSMutableArray + + dataSourceArray + + dataSourceArray + NSMutableArray + + IBProjectSource - ./classes-xjh84/ListViewController.h + ./Classes/ListViewController.h @@ -1387,9 +1379,16 @@ A _map MKMapView + + _map + + _map + MKMapView + + IBProjectSource - ./classes-xjh84/MapViewController.h + ./Classes/MapViewController.h @@ -1409,9 +1408,59 @@ A UILabel UIWindow + + + data + NSMutableArray + + + listViewController + ListViewController + + + mapViewController + MapViewController + + + menuButton + UISegmentedControl + + + menuView + UIView + + + moreViewController + MoreViewController + + + notificationView + UIView + + + slider + UISlider + + + sourceViewController + SourceViewController + + + tabBarController + UITabBarController + + + valueLabel + UILabel + + + window + UIWindow + + IBProjectSource - ./classes-xjh84/MixareAppDelegate.h + ./Classes/MixareAppDelegate.h @@ -1421,6 +1470,16 @@ A id id + + + buttonClick: + id + + + switchView: + id + + UILabel UILabel @@ -1433,9 +1492,51 @@ A UISegmentedControl UITextView + + + accuracy + UILabel + + + alt + UILabel + + + date + UILabel + + + generalInfoView + UIView + + + lat + UILabel + + + logoButton + UIButton + + + lon + UILabel + + + speed + UILabel + + + tabSwitch + UISegmentedControl + + + textView + UITextView + + IBProjectSource - ./classes-xjh84/MoreViewController.h + ./Classes/MoreViewController.h @@ -1443,7 +1544,7 @@ A NSArray IBProjectSource - ./classes-xjh84/NSMutableArray.h + ./Classes/NSMutableArray.h @@ -1453,21 +1554,38 @@ A addSource id + + addSource + + addSource + id + + addButton UIBarButtonItem + + addButton + + addButton + UIBarButtonItem + + IBProjectSource - ./classes-xjh84/SourceViewController.h + ./Classes/SourceViewController.h 0 IBCocoaTouchFramework + + com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS + + YES - ../Mixare.xcodeproj 3 {24, 18} @@ -1476,6 +1594,6 @@ A {26, 21} {413, 113} - 106 + 931 diff --git a/Mixare.xcodeproj/project.pbxproj b/Mixare.xcodeproj/project.pbxproj index 7b52a23..d61d294 100644 --- a/Mixare.xcodeproj/project.pbxproj +++ b/Mixare.xcodeproj/project.pbxproj @@ -3,7 +3,7 @@ archiveVersion = 1; classes = { }; - objectVersion = 45; + objectVersion = 46; objects = { /* Begin PBXBuildFile section */ @@ -406,10 +406,11 @@ 29B97313FDCFA39411CA2CEA /* Project object */ = { isa = PBXProject; attributes = { + LastUpgradeCheck = 0420; ORGANIZATIONNAME = "Peer GmbH"; }; buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "Mixare" */; - compatibilityVersion = "Xcode 3.1"; + compatibilityVersion = "Xcode 3.2"; developmentRegion = English; hasScannedForEncodings = 1; knownRegions = ( @@ -522,7 +523,7 @@ GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PREFIX_HEADER = Mixare_Prefix.pch; INFOPLIST_FILE = "Mixare-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 4.1; + IPHONEOS_DEPLOYMENT_TARGET = 5.0; PRODUCT_NAME = Mixare; VALIDATE_PRODUCT = YES; }; @@ -536,7 +537,7 @@ GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PREFIX_HEADER = Mixare_Prefix.pch; INFOPLIST_FILE = "Mixare-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 4.1; + IPHONEOS_DEPLOYMENT_TARGET = 5.0; PRODUCT_NAME = Mixare; VALIDATE_PRODUCT = YES; }; @@ -551,8 +552,7 @@ GCC_VERSION = ""; GCC_WARN_ABOUT_RETURN_TYPE = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 4.1; - PREBINDING = NO; + IPHONEOS_DEPLOYMENT_TARGET = 5.0; "PROVISIONING_PROFILE[sdk=iphoneos*]" = ""; SDKROOT = iphoneos; VALID_ARCHS = "armv6 armv7"; @@ -568,9 +568,8 @@ GCC_VERSION = ""; GCC_WARN_ABOUT_RETURN_TYPE = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 4.1; + IPHONEOS_DEPLOYMENT_TARGET = 5.0; OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1"; - PREBINDING = NO; "PROVISIONING_PROFILE[sdk=iphoneos*]" = ""; SDKROOT = iphoneos; VALIDATE_PRODUCT = NO;