forked from mcallegari/qlcplus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
062e26d
commit cf254bd
Showing
4 changed files
with
122 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<?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> | ||
<!-- APP SANDBOX ENTITLEMENTS | ||
See https://developer.apple.com/documentation/security/app_sandbox for details. | ||
--> | ||
<!-- Enable the App Sandbox --> | ||
<key>com.apple.security.app-sandbox</key> | ||
<true/> | ||
<!-- Allow interacting with the microphone --> | ||
<key>com.apple.security.device.microphone</key> | ||
<true/> | ||
<!-- Allow interacting with USB devices --> | ||
<key>com.apple.security.device.usb</key> | ||
<true/> | ||
<!-- Allow opening outgoing network connections --> | ||
<key>com.apple.security.network.client</key> | ||
<true/> | ||
<!-- Allow access to multicast networking (for E1.31) --> | ||
<key>com.apple.developer.networking.multicast</key> | ||
<true/> | ||
<!-- Allow access to files selected with an Open/Save dialog --> | ||
<key>com.apple.security.files.user-selected.read-write</key> | ||
<true/> | ||
<!-- Persists access permission for files selected with an Open/Save dialog across restarts --> | ||
<key>com.apple.security.files.bookmarks.app-scope</key> | ||
<true/> | ||
|
||
<!-- HARDENED RUNTIME ENTITLEMENTS | ||
See https://developer.apple.com/documentation/security/hardened_runtime for details. | ||
--> | ||
<!-- Allow interacting with the microphone --> | ||
<key>com.apple.security.device.audio-input</key> | ||
<true/> | ||
<!-- Allow execution of JIT-compiled code | ||
This is necessary for RGB Scripts that use Qt's JavaScript JIT compiler. | ||
--> | ||
<key>com.apple.security.cs.allow-jit</key> | ||
<true/> | ||
<!-- Allow unsigned executable memory | ||
This is necessary for RGB Scripts that use Qt's JavaScript JIT compiler. | ||
--> | ||
<key>com.apple.security.cs.allow-unsigned-executable-memory</key> | ||
<true/> | ||
</dict> | ||
</plist> |