forked from matrix/element-web
Fix tabs
This commit is contained in:
parent
312e1bab47
commit
a34766bd05
|
@ -2,24 +2,24 @@
|
||||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
<plist version="1.0">
|
<plist version="1.0">
|
||||||
<dict>
|
<dict>
|
||||||
<!-- Entitlements from electron-builder's defaults
|
<!-- Entitlements from electron-builder's defaults
|
||||||
(https://github.com/electron-userland/electron-builder/blob/master/packages/app-builder-lib/templates/entitlements.mac.plist)
|
(https://github.com/electron-userland/electron-builder/blob/master/packages/app-builder-lib/templates/entitlements.mac.plist)
|
||||||
nb. This does *not* include the app sandbox: at the time of adding this file,
|
nb. This does *not* include the app sandbox: at the time of adding this file,
|
||||||
we were using electron-builder 21.2.0 which does not have the sandbox entitlement.
|
we were using electron-builder 21.2.0 which does not have the sandbox entitlement.
|
||||||
Latest electron-builder does, but it appears to be causing issues:
|
Latest electron-builder does, but it appears to be causing issues:
|
||||||
(https://github.com/electron-userland/electron-builder/issues/4390)
|
(https://github.com/electron-userland/electron-builder/issues/4390)
|
||||||
-->
|
-->
|
||||||
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
|
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
|
||||||
<true/>
|
<true/>
|
||||||
<!-- https://github.com/electron-userland/electron-builder/issues/3940 -->
|
<!-- https://github.com/electron-userland/electron-builder/issues/3940 -->
|
||||||
<key>com.apple.security.cs.disable-library-validation</key>
|
<key>com.apple.security.cs.disable-library-validation</key>
|
||||||
<true/>
|
<true/>
|
||||||
|
|
||||||
<!-- Our own additional entitlements (we need to access the camera and
|
<!-- Our own additional entitlements (we need to access the camera and
|
||||||
mic for VoIP calls -->
|
mic for VoIP calls -->
|
||||||
<key>com.apple.security.device.camera</key>
|
<key>com.apple.security.device.camera</key>
|
||||||
<true/>
|
<true/>
|
||||||
<key>com.apple.security.device.audio-input</key>
|
<key>com.apple.security.device.audio-input</key>
|
||||||
<true/>
|
<true/>
|
||||||
</dict>
|
</dict>
|
||||||
</plist>
|
</plist>
|
||||||
|
|
Loading…
Reference in New Issue