File: qlcplus.entitlements

package info (click to toggle)
qlcplus 4.14.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 58,644 kB
  • sloc: cpp: 182,867; javascript: 7,764; xml: 2,453; ansic: 2,120; sh: 1,716; python: 634; ruby: 606; makefile: 23
file content (38 lines) | stat: -rw-r--r-- 1,519 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?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>
    <!-- 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 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>