Title: [241238] trunk/Tools
Revision
241238
Author
[email protected]
Date
2019-02-09 00:11:04 -0800 (Sat, 09 Feb 2019)

Log Message

Fix MiniBrowser's entitlements
https://bugs.webkit.org/show_bug.cgi?id=192431

Reviewed by Joseph Pecoraro.

MiniBrowser's Extensions Manager was broken. The entitlement was missing for opening
files, making it impossible to load any extension.

* MiniBrowser/MiniBrowser.entitlements:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (241237 => 241238)


--- trunk/Tools/ChangeLog	2019-02-09 07:58:01 UTC (rev 241237)
+++ trunk/Tools/ChangeLog	2019-02-09 08:11:04 UTC (rev 241238)
@@ -1,3 +1,15 @@
+2019-02-09  Benjamin Poulain  <[email protected]>
+
+        Fix MiniBrowser's entitlements
+        https://bugs.webkit.org/show_bug.cgi?id=192431
+
+        Reviewed by Joseph Pecoraro.
+
+        MiniBrowser's Extensions Manager was broken. The entitlement was missing for opening
+        files, making it impossible to load any extension.
+
+        * MiniBrowser/MiniBrowser.entitlements:
+
 2019-02-08  Myles C. Maxfield  <[email protected]>
 
         [Cocoa] Ask platform for generic font family mappings

Modified: trunk/Tools/MiniBrowser/MiniBrowser.entitlements (241237 => 241238)


--- trunk/Tools/MiniBrowser/MiniBrowser.entitlements	2019-02-09 07:58:01 UTC (rev 241237)
+++ trunk/Tools/MiniBrowser/MiniBrowser.entitlements	2019-02-09 08:11:04 UTC (rev 241238)
@@ -4,6 +4,8 @@
 <dict>
 	<key>com.apple.security.device.usb</key>
 	<true/>
+	<key>com.apple.security.files.user-selected.read-only</key>
+	<true/>
 	<key>com.apple.security.temporary-exception.mach-lookup.global-name</key>
 	<array>
 		<string>com.apple.Safari.SafeBrowsing.Service</string>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to