mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2024-11-14 21:37:42 -07:00
5b867eb7a7
According to the Qt documentation we should have this for proper high-DPI support on macOS. Whether or not it's still relevant I'm not sure, but if it isn't it might at least help on older macOS or Qt.
43 lines
1.4 KiB
XML
43 lines
1.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>CFBundleExecutable</key>
|
|
<string>melonDS</string>
|
|
<key>CFBundleIconFile</key>
|
|
<string>melon.icns</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>net.kuribo64.melonDS</string>
|
|
<key>CFBundleDevelopmentRegion</key>
|
|
<string>English</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>${melonDS_VERSION}</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>${melonDS_VERSION}</string>
|
|
<key>NSHumanReadableCopyright</key>
|
|
<string>Licensed under GPLv3</string>
|
|
<key>NSPrincipalClass</key>
|
|
<string>NSApplication</string>
|
|
<key>NSHighResolutionCapable</key>
|
|
<true/>
|
|
<key>NSMicrophoneUsageDescription</key>
|
|
<string>We need microphone access so you can use the emulated DS microphone</string>
|
|
<key>NSCameraUsageDescription</key>
|
|
<string>Camera access is needed for emulation of the DSi's cameras</string>
|
|
<key>CFBundleDocumentTypes</key>
|
|
<array>
|
|
<dict>
|
|
<key>CFBundleTypeExtensions</key>
|
|
<array>
|
|
<string>nds</string>
|
|
<string>srl</string>
|
|
</array>
|
|
<key>CFBundleTypeRole</key>
|
|
<string>Viewer</string>
|
|
</dict>
|
|
</array>
|
|
</dict>
|
|
</plist>
|