Mercurial > hg > sonic-visualiser
view osx/Info.plist @ 364:4e16d48c693d macness
Custom Mac Info.plist - the app now registers as a viewer of MP3 files, and an editor of SV files
author | Dan Stowell <dan.stowell@eecs.qmul.ac.uk> |
---|---|
date | Mon, 11 Oct 2010 14:54:31 +0100 |
parents | |
children | 00a5d0029e95 |
line wrap: on
line source
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd"> <plist version="0.9"> <dict> <key>CFBundleIconFile</key> <string>sv-macicon.icns</string> <key>CFBundlePackageType</key> <string>APPL</string> <key>CFBundleGetInfoString</key> <string>Created by Qt/QMake</string> <key>CFBundleSignature</key> <string>SNCV</string> <key>CFBundleExecutable</key> <string>Sonic Visualiser</string> <key>CFBundleIdentifier</key> <string>org.isophonics.SonicVisualiser</string> <key>CFBundleDocumentTypes</key> <array> <!-- we are an 'editor' of SV files --> <dict> <key>CFBundleTypeExtensions</key> <array> <string>sv</string> </array> <!-- TODO <key>CFBundleTypeIconFile</key> <string>SVProject.icns</string> --> <key>CFBundleTypeMIMETypes</key> <array> <string>application/x-sonic-visualiser-project</string> </array> <key>CFBundleTypeName</key> <string>Sonic Visualiser Project</string> <key>CFBundleTypeOSTypes</key> <array> <string>****</string> </array> <key>CFBundleTypeRole</key> <string>Editor</string> <key>LSHandlerRank</key> <string>Owner</string> <key>LSIsAppleDefaultForType</key> <true/> </dict> <!-- we are a 'viewer' of general audio files --> <dict> <key>CFBundleTypeExtensions</key> <array> <string>mp3</string> </array> <key>CFBundleTypeMIMETypes</key> <array> <string>audio/mpeg</string> </array> <key>CFBundleTypeName</key> <string>MP3 Audio</string> <key>CFBundleTypeRole</key> <string>Viewer</string> <key>LSIsAppleDefaultForType</key> <false/> <key>LSHandlerRank</key> <string>Alternate</string> </dict> </array> </dict> </plist>