diff --git a/OpenRA.Launcher.Mac/GameInstall.m b/OpenRA.Launcher.Mac/GameInstall.m index ba052da0f0..943fa34e5c 100644 --- a/OpenRA.Launcher.Mac/GameInstall.m +++ b/OpenRA.Launcher.Mac/GameInstall.m @@ -58,8 +58,8 @@ if ([kv count] < 2) continue; - id key = [kv objectAtIndex:0]; - id value = [kv objectAtIndex:1]; + id key = [[kv objectAtIndex:0] stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]]; + id value = [[kv objectAtIndex:1] stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]]; if ([key isEqualToString:@"Error"]) { @@ -75,7 +75,7 @@ id path = [gamePath stringByAppendingPathComponent:[NSString stringWithFormat:@"mods/%@",current]]; [ret setObject:[Mod modWithId:current fields:fields path:path] forKey:current]; } - NSLog(@"Parsing mod %@",value); + NSLog(@"Parsing mod `%@`",value); current = value; fields = [NSMutableDictionary dictionary]; } diff --git a/OpenRA.Launcher.Mac/HttpRequest.m b/OpenRA.Launcher.Mac/HttpRequest.m index 325eef0e76..27647f1893 100644 --- a/OpenRA.Launcher.Mac/HttpRequest.m +++ b/OpenRA.Launcher.Mac/HttpRequest.m @@ -25,7 +25,6 @@ self = [super init]; if (self != nil) { - NSLog(@"Requesting url `%@` with callback:`%@`",aURL, aCallback); url = [aURL retain]; callback = [aCallback retain]; game = [aGame retain]; diff --git a/OpenRA.Launcher.Mac/build/Release/OpenRA.app/Contents/MacOS/OpenRA b/OpenRA.Launcher.Mac/build/Release/OpenRA.app/Contents/MacOS/OpenRA index 2bdc0e6fc9..09b0232c52 100755 Binary files a/OpenRA.Launcher.Mac/build/Release/OpenRA.app/Contents/MacOS/OpenRA and b/OpenRA.Launcher.Mac/build/Release/OpenRA.app/Contents/MacOS/OpenRA differ