Updating version information
When I do a "Get Info" on my games' application bundle, the information under the "Version" field is the default information.
Where do I update this information?
In Xcode, I found a InfoPlist.strings file that looks like it contains this information, but when I edit it and rebuild my application bundle, I can do a Get Info on it and it still shows the same default information. It's like it is ignoring the InfoPlist.strings file. Help!
Quote:FashionCentsDeluxe version 0.1, Copyright 2007
__MyCompanyName__.
Where do I update this information?
In Xcode, I found a InfoPlist.strings file that looks like it contains this information, but when I edit it and rebuild my application bundle, I can do a Get Info on it and it still shows the same default information. It's like it is ignoring the InfoPlist.strings file. Help!
Bueller...?
Bueller...?
Anyone...?
Bueller...?
Anyone...?
The default Info.plist doesn't have all the version/copyright tags. You might/should have an InfoPlist.strings that has the localized strings, or you can probably add the proper tags to Info.plist.
Typical InfoPlist.strings:
CFBundleShortVersionString is what's displayed in the Finder (like under the icon in column view). Mac OS X 10.6 uses CFBundleShortVersionString and NSHumanReadableCopyright in the Get Info. CFBundleGetInfoString is obsolete and I doubt anything still uses it, but no harm in including it.
Typical InfoPlist.strings:
Code:
CFBundleName = "MyAppName";
CFBundleShortVersionString = "MyAppName version 1.2.3";
CFBundleGetInfoString = "MyAppName version 1.2.3, Copyright 2009 MyCoolCompany.";
NSHumanReadableCopyright = "Copyright 2009, My Cool Company";CFBundleShortVersionString is what's displayed in the Finder (like under the icon in column view). Mac OS X 10.6 uses CFBundleShortVersionString and NSHumanReadableCopyright in the Get Info. CFBundleGetInfoString is obsolete and I doubt anything still uses it, but no harm in including it.
Thanks!
I had found those strings and modified them, but didn't see any change. Then last night I had to reboot the system, and now Get Info shows the correct information. I guess Finder just had to be refreshed somehow, so that it would reread the strings. Is there any way to do that without rebooting?
I had found those strings and modified them, but didn't see any change. Then last night I had to reboot the system, and now Get Info shows the correct information. I guess Finder just had to be refreshed somehow, so that it would reread the strings. Is there any way to do that without rebooting?
Possibly Related Threads...
| Thread: | Author | Replies: | Views: | Last Post | |
| updating apps on mac? | scarypajamas | 8 | 4,116 |
Feb 25, 2009 03:53 PM Last Post: scarypajamas |
|
| Problem Updating Old Xcode Projects | dancedrummer | 7 | 4,008 |
Apr 13, 2006 10:20 AM Last Post: dancedrummer |
|
| Information on how to structure networking for gaming - Not how to code connections | lfrog | 5 | 6,557 |
Nov 28, 2005 05:29 PM Last Post: Skorche |
|

