diff options
| author | Dustin Mierau <dustin@mierau.me> | 2024-05-22 17:35:01 -0700 |
|---|---|---|
| committer | Dustin Mierau <dustin@mierau.me> | 2024-05-22 17:35:01 -0700 |
| commit | 842611754debec7d1814e44e6a2cf302e84c0d66 (patch) | |
| tree | e5c92e2abde5038df695faf4371bbaf9a477ff7a /Hotline/Info.plist | |
| parent | c7a2970c7f17a1b19a76d9cb6addda8fb877a63a (diff) | |
Support for drag and drop of old Hotline Bookmark files onto the Servers window.
Diffstat (limited to 'Hotline/Info.plist')
| -rw-r--r-- | Hotline/Info.plist | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/Hotline/Info.plist b/Hotline/Info.plist index 8b58335..ac7a2c9 100644 --- a/Hotline/Info.plist +++ b/Hotline/Info.plist @@ -2,6 +2,19 @@ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> + <key>CFBundleDocumentTypes</key> + <array> + <dict> + <key>CFBundleTypeName</key> + <string>Hotline Bookmark</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + <key>LSItemContentTypes</key> + <array> + <string>'HTbm'</string> + </array> + </dict> + </array> <key>CFBundleURLTypes</key> <array> <dict> @@ -25,5 +38,27 @@ </array> </dict> </array> + <key>UTImportedTypeDeclarations</key> + <array> + <dict> + <key>UTTypeConformsTo</key> + <array/> + <key>UTTypeDescription</key> + <string>Hotline Bookmark</string> + <key>UTTypeIconFiles</key> + <array/> + <key>UTTypeIdentifier</key> + <string>'HTbm'</string> + <key>UTTypeTagSpecification</key> + <dict> + <key>public.filename-extension</key> + <array> + <string>.htbm</string> + </array> + <key>public.mime-type</key> + <array/> + </dict> + </dict> + </array> </dict> </plist> |