Fixes an issue where on macOS the app’s Info window in Finder would say "Version: OBS - Free and Open Source Streaming/Recording Software" instead of the version set in CFBundleShortVersionString. Since CFBundleGetInfoString is deprecated anyways, it can safely be removed.
27 lines
873 B
Plaintext
27 lines
873 B
Plaintext
<?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>CFBundleIconFile</key>
|
|
<string>AppIcon.icns</string>
|
|
<key>CFBundleName</key>
|
|
<string>OBS</string>
|
|
<key>CFBundleExecutable</key>
|
|
<string>obs</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>com.obsproject.obs-studio</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
<key>LSMinimumSystemVersion</key>
|
|
<string>10.13.0</string>
|
|
<key>NSHighResolutionCapable</key>
|
|
<true/>
|
|
<key>LSAppNapIsDisabled</key>
|
|
<true/>
|
|
<key>NSCameraUsageDescription</key>
|
|
<string>OBS needs to access the camera to enable camera sources to work.</string>
|
|
<key>NSMicrophoneUsageDescription</key>
|
|
<string>OBS needs to access the microphone to enable audio input.</string>
|
|
</dict>
|
|
</plist>
|