fix: add files.user-selected.read-only entitlement for file_picker

The file_picker plugin requires com.apple.security.files.user-selected.read-only
to be present in the app's entitlements. It checks this at runtime via
SecTaskCopyValueForEntitlement and throws ENTITLEMENT_NOT_FOUND without it.
This was lost during a previous entitlements cleanup.

Signed, notarized, stapled DMG
This commit is contained in:
Mathias Beaulieu-Duncan 2026-04-07 14:14:18 -04:00
parent ee06c97c06
commit e658c6c9cf

View File

@ -4,5 +4,7 @@
<dict> <dict>
<key>com.apple.security.get-task-allow</key> <key>com.apple.security.get-task-allow</key>
<false/> <false/>
<key>com.apple.security.files.user-selected.read-only</key>
<true/>
</dict> </dict>
</plist> </plist>