Mercurial > hg > sonic-visualiser
changeset 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 | 43205eda54bd |
children | 174ca518546f |
files | osx/Info.plist sonic-visualiser.pro |
diffstat | 2 files changed, 69 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/osx/Info.plist Mon Oct 11 14:54:31 2010 +0100 @@ -0,0 +1,67 @@ +<?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>