diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-12-14 09:54:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-14 09:54:12 +0100 |
commit | 3a9284b562d6dcfc339322999767168e12220895 (patch) | |
tree | 64dceffa4f39d80cade86f773e6bd95c368f6167 /misc | |
parent | 3740ec25f7dd4febba89f771972f7f29321cca43 (diff) | |
parent | 5152afa70c8f07f63e9f9d9c2ff386ee6437ca1e (diff) |
Merge pull request #34338 from Catchawink/master
Fixed an issue with capturing audio from microphones in macOS.
Diffstat (limited to 'misc')
-rwxr-xr-x | misc/dist/osx_template.app/Contents/Info.plist | 4 | ||||
-rwxr-xr-x | misc/dist/osx_tools.app/Contents/Info.plist | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/misc/dist/osx_template.app/Contents/Info.plist b/misc/dist/osx_template.app/Contents/Info.plist index eee787bdaf..696c825594 100755 --- a/misc/dist/osx_template.app/Contents/Info.plist +++ b/misc/dist/osx_template.app/Contents/Info.plist @@ -24,6 +24,10 @@ <string>$signature</string> <key>CFBundleVersion</key> <string>$version</string> + <key>NSMicrophoneUsageDescription</key> + <string>$microphone_usage_description</string> + <key>NSCameraUsageDescription</key> + <string>$camera_usage_description</string> <key>NSHumanReadableCopyright</key> <string>$copyright</string> <key>LSMinimumSystemVersion</key> diff --git a/misc/dist/osx_tools.app/Contents/Info.plist b/misc/dist/osx_tools.app/Contents/Info.plist index bb22f1807c..4b1e8ebbf3 100755 --- a/misc/dist/osx_tools.app/Contents/Info.plist +++ b/misc/dist/osx_tools.app/Contents/Info.plist @@ -24,6 +24,10 @@ <string>godot</string> <key>CFBundleVersion</key> <string>3.2</string> + <key>NSMicrophoneUsageDescription</key> + <string>Microphone access is required to capture audio.</string> + <key>NSCameraUsageDescription</key> + <string>Camera access is required to capture video.</string> <key>NSRequiresAquaSystemAppearance</key> <false /> <key>NSHumanReadableCopyright</key> |