The Info.plist file contains vital information about a given application package. Rename the file from .pli to .plist (note that other files in this directory use long extensions). Also correct and add to some of the information in this file.
21 lines
672 B
Plaintext
21 lines
672 B
Plaintext
<?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>CFBundleGetInfoHTML</key>
|
|
<string>http://www.nethack.org</string>
|
|
<key>CFBundleGetInfoString</key>
|
|
<string>Copyright (C) 1985-2003 Stichting Mathematisch Centrum</string>
|
|
<key>CFBundleIconFile</key>
|
|
<string>nethack.icns</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>org.nethack.qt</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>3.5.0</string>
|
|
<key>CFBundleSignature</key>
|
|
<string>NHak</string>
|
|
</dict>
|
|
</plist>
|