Add OS X metadata to make Puzzles.app searchable in Spotlight.

Thanks to Stephen Norman for most of the work, particularly working
out what all the metadata had to be in the first place. This patch is
mostly his work, and all I've done is fiddle with the plumbing that
gets the right version number into the right places.
This commit is contained in:
Simon Tatham
2015-01-08 14:10:15 +00:00
parent 8f8333a351
commit 70b26db85a
2 changed files with 29 additions and 1 deletions

View File

@ -1,5 +1,5 @@
<?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">
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleIconFile</key>
@ -8,5 +8,27 @@
<string>Help</string>
<key>CFBundleHelpBookName</key>
<string>Puzzles Help</string>
<key>CFBundleName</key>
<string>Puzzles</string>
<key>CFBundleDisplayName</key>
<string>Puzzles</string>
<key>CFBundleExecutable</key>
<string>Puzzles</string>
<key>CFBundleVersion</key>
<string>Unidentified build</string>
<key>CFBundleShortVersionString</key>
<string>Unidentified build</string>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleIndentifier</key>
<string>uk.org.greenend.chiark.sgtatham.puzzles</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>NSHumanReadableCopyright</key>
<string>This software is copyright (c) 2004-2014 Simon Tatham</string>
</dict>
</plist>