[Scummvm-git-logs] scummvm branch-2-7 -> 64f6354b20bf9c86d8e3569cf801c77f91dabeb8
sev-
noreply at scummvm.org
Sun Feb 5 21:31:28 UTC 2023
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
64f6354b20 MACOS: Fix warning about CFBundleTypeRole
Commit: 64f6354b20bf9c86d8e3569cf801c77f91dabeb8
https://github.com/scummvm/scummvm/commit/64f6354b20bf9c86d8e3569cf801c77f91dabeb8
Author: eientei95 (einstein95 at users.noreply.github.com)
Date: 2023-02-05T22:31:22+01:00
Commit Message:
MACOS: Fix warning about CFBundleTypeRole
When run from terminal, it'd spit out `NSDocumentController Info.plist warning: The values of CFBundleTypeRole entries must be 'Editor', 'Viewer', 'None', or 'Shell'.` This silences that warning.
Changed paths:
dists/macosx/Info.plist
dists/macosx/Info.plist.in
diff --git a/dists/macosx/Info.plist b/dists/macosx/Info.plist
index 46e2099603b..b9a486cfe33 100644
--- a/dists/macosx/Info.plist
+++ b/dists/macosx/Info.plist
@@ -11,6 +11,8 @@
<dict>
<key>CFBundleTypeName</key>
<string>All Files</string>
+ <key>CFBundleTypeRole</key>
+ <string>Viewer</string>
<key>LSHandlerRank</key>
<string>Alternate</string>
<key>LSItemContentTypes</key>
diff --git a/dists/macosx/Info.plist.in b/dists/macosx/Info.plist.in
index 01193a752ad..7021acfd705 100644
--- a/dists/macosx/Info.plist.in
+++ b/dists/macosx/Info.plist.in
@@ -11,6 +11,8 @@
<dict>
<key>CFBundleTypeName</key>
<string>All Files</string>
+ <key>CFBundleTypeRole</key>
+ <string>Viewer</string>
<key>LSHandlerRank</key>
<string>Alternate</string>
<key>LSItemContentTypes</key>
More information about the Scummvm-git-logs
mailing list