diff options
author | Damiano Galassi <[email protected]> | 2017-01-20 18:52:22 +0100 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2017-01-20 18:52:22 +0100 |
commit | a3d00959f42f940e8d3c2b73fb92a951cbf94472 (patch) | |
tree | 7085331974860d7771a3f6adaf1694383a1f064a /macosx/HandBrake.entitlements | |
parent | 40ec4ebaa2958b2549125dd525b6fcb2bd595d69 (diff) |
MacGui: initial sandbox support. Added two new scheme RELEASE-SANDBOX and DEBUG-SANDBOX to build HandBrake with sandbox enabled.
Diffstat (limited to 'macosx/HandBrake.entitlements')
-rw-r--r-- | macosx/HandBrake.entitlements | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/macosx/HandBrake.entitlements b/macosx/HandBrake.entitlements new file mode 100644 index 000000000..e29f683e0 --- /dev/null +++ b/macosx/HandBrake.entitlements @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>com.apple.security.app-sandbox</key> + <true/> + <key>com.apple.security.application-groups</key> + <array> + <string>fr.handbrake.HandBrake</string> + </array> + <key>com.apple.security.assets.movies.read-write</key> + <true/> + <key>com.apple.security.files.bookmarks.app-scope</key> + <true/> + <key>com.apple.security.files.user-selected.read-write</key> + <true/> + <key>com.apple.security.temporary-exception.files.absolute-path.read-only</key> + <array> + <string>/usr/local/</string> + </array> + <key>com.apple.security.temporary-exception.files.home-relative-path.read-write</key> + <array> + <string>/.dvdcss/</string> + </array> +</dict> +</plist> |