diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-11-05 11:17:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-05 11:17:21 +0100 |
commit | 4af22d663accee5253275b2bb6f4723c24440a96 (patch) | |
tree | 3fa0587cfe7eaade41c0687aee88a915c3ab15fb /cmake/MacOSXBundleInfo.plist.in | |
parent | ba8322aa5cd082b9785869582bbce73a624988e0 (diff) | |
parent | f8ea6212c73bc420e9a1c328d2510f32adde4acf (diff) | |
download | PrismLauncher-4af22d663accee5253275b2bb6f4723c24440a96.tar.gz PrismLauncher-4af22d663accee5253275b2bb6f4723c24440a96.tar.bz2 PrismLauncher-4af22d663accee5253275b2bb6f4723c24440a96.zip |
Merge pull request #229 from ryanccn/macos-drag-n-drop
Diffstat (limited to 'cmake/MacOSXBundleInfo.plist.in')
-rw-r--r-- | cmake/MacOSXBundleInfo.plist.in | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/cmake/MacOSXBundleInfo.plist.in b/cmake/MacOSXBundleInfo.plist.in index 1b22e21f..400e482f 100644 --- a/cmake/MacOSXBundleInfo.plist.in +++ b/cmake/MacOSXBundleInfo.plist.in @@ -44,5 +44,28 @@ <string>${MACOSX_SPARKLE_UPDATE_PUBLIC_KEY}</string> <key>SUFeedURL</key> <string>${MACOSX_SPARKLE_UPDATE_FEED_URL}</string> + <key>CFBundleDocumentTypes</key> + <array> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>zip</string> + <string>mrpack</string> + </array> + <key>CFBundleTypeName</key> + <string>Prism Launcher instance</string> + <key>CFBundleTypeOSTypes</key> + <array> + <string>TEXT</string> + <string>utxt</string> + <string>TUTX</string> + <string>****</string> + </array> + <key>CFBundleTypeRole</key> + <string>Viewer</string> + <key>LSHandlerRank</key> + <string>Alternate</string> + </dict> + </array> </dict> </plist> |