Using CFBundleName + CFBundleVersion instead of the weird shoft bundle version string.
authorKent Sutherland <ksuther@ithinksw.com>
Mon, 26 Dec 2005 06:42:05 +0000 (06:42 +0000)
committerKent Sutherland <ksuther@ithinksw.com>
Mon, 26 Dec 2005 06:42:05 +0000 (06:42 +0000)
ITAboutWindowController.m

index cea9a78..71a6ed7 100644 (file)
@@ -24,7 +24,7 @@ static ITAboutWindowController *_sharedController;
 {
        [_appIcon setImage:[[[NSImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForImageResource:[[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleIconFile"]]] autorelease]];
        
 {
        [_appIcon setImage:[[[NSImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForImageResource:[[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleIconFile"]]] autorelease]];
        
-       [_appName setStringValue:[[NSBundle mainBundle] localizedStringForKey:@"CFBundleShortVersionString" value:@"" table:@"InfoPlist"]];
+       [_appName setStringValue:[NSString stringWithFormat:@"%@ %@", [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleName"], [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleVersion"]]];
        [_companySite setStringValue:@"http://www.ithinksw.com/"];
        
        [_copyright setStringValue:[[NSBundle mainBundle] localizedStringForKey:@"NSHumanReadableCopyright" value:@"" table:@"InfoPlist"]];
        [_companySite setStringValue:@"http://www.ithinksw.com/"];
        
        [_copyright setStringValue:[[NSBundle mainBundle] localizedStringForKey:@"NSHumanReadableCopyright" value:@"" table:@"InfoPlist"]];