Skip to content

Commit

Permalink
Fix some Info.plist keys and add some more
Browse files Browse the repository at this point in the history
src/mac/Info.plist.app:
	Remove the NOTE key since nobody cares if the file was
	generated by qmake (Qt's template Info.plist has this)

	Replace CFBundleGetInfoString's value with @FULL_VERSION@ so
	the version will be put in there.  This gets the app
	version number showing, instead of "Created by Qt/Qmake"  in the
	Finder "Get Info" window version field.

	Add CFBundleShortVersionString and CFBundleVersion.

	Hard code the CFBundleIdentifer value to
	"com.SpectraLogic.BlackPearlDS3Browser".  Qt's generated value
	includes spaces (because the target name we define has spaces) and
	Apple's list of recommended characters for this value doesn't include
	spaces.
  • Loading branch information
robertgrimm committed Feb 18, 2015
1 parent 56b8e92 commit 7c24189
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/mac/Info.plist.app
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,17 @@
<string>@ICON@</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>@SHORT_VERSION@</string>
<key>CFBundleVersion</key>
<string>@FULL_VERSION@</string>
<key>CFBundleGetInfoString</key>
<string>Created by Qt/QMake</string>
<string>@FULL_VERSION@</string>
<key>CFBundleSignature</key>
<string>@TYPEINFO@</string>
<key>CFBundleExecutable</key>
<string>@EXECUTABLE@</string>
<key>CFBundleIdentifier</key>
<string>@BUNDLEIDENTIFIER@</string>
<key>NOTE</key>
<string>This file was generated by Qt/QMake.</string>
<string>com.SpectraLogic.BlackPearlDS3Browser</string>
</dict>
</plist>

0 comments on commit 7c24189

Please sign in to comment.