OS X: Register app as owner of .torrent files

Saw these keys/values in Transmission’s Info.plist.
This commit is contained in:
Feross Aboukhadijeh
2016-03-19 01:45:11 -07:00
parent 7437e82eb5
commit 33a9e7e93d

View File

@@ -156,9 +156,11 @@ function postDarwinism () {
infoPlist['CFBundleDocumentTypes'] = [{
CFBundleTypeExtensions: [ 'torrent' ],
CFBundleTypeIconFile: 'WebTorrentFile.icns',
CFBundleTypeName: 'BitTorrent Document',
CFBundleTypeRole: 'Editor',
CFBundleTypeIconFile: 'WebTorrentFile.icns'
LSHandlerRank: 'Owner',
LSItemContentTypes: [ 'org.bittorrent.torrent' ]
}]
fs.writeFileSync(infoPlistPath, plist.build(infoPlist))