[Pyobjc-dev] info.plist not being regarded?
Brought to you by:
ronaldoussoren
From: Zachery B. <zb...@ur...> - 2003-10-07 20:18:28
|
So, I've got some plist assignments being made in my buildapp.py script, and I can verify that the values are placed properly in the Info.plist inside the Contents directory of my bundle, but Finder doesn't display the appropriate version info - it's always reported as 0.1. Any ideas? Thanks, Zac plist = Plist( CFBundleIdentifier = "com.urbanape.zopeeditmanager" , CFBundleShortVersionString = "0.7" , CFBundleGetInfoString = "0.7" , NSHumanReadableCopyright = "Copyright 2003 Zope Corporation" ) <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>CFBundleExecutable</key> <string>ZopeEditManager</string> <key>CFBundleGetInfoString</key> <string>0.7</string> <key>CFBundleIconFile</key> <string>ZEM.icns</string> <key>CFBundleIdentifier</key> <string>com.urbanape.zopeeditmanager</string> <key>CFBundleName</key> <string>ZopeEditManager</string> <key>CFBundlePackageType</key> <string>APPL</string> <key>CFBundleShortVersionString</key> <string>0.7</string> <key>CFBundleSignature</key> <string>????</string> <key>NSHumanReadableCopyright</key> <string>Copyright 2003 Zope Corporation</string> <key>NSMainNibFile</key> <string>MainMenu</string> <key>NSPrincipalClass</key> <string>NSApplication</string> </dict> </plist> |