git.ithinksw.org
/
ITKit.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Using CFBundleName + CFBundleVersion instead of the weird shoft bundle version string.
[ITKit.git]
/
ITAboutWindowController.m
diff --git
a/ITAboutWindowController.m
b/ITAboutWindowController.m
index
cea9a78
..
71a6ed7
100644
(file)
--- a/
ITAboutWindowController.m
+++ b/
ITAboutWindowController.m
@@
-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"]];