Compare commits

...

2 commits

Author SHA1 Message Date
Vendicated
3b0f21bee8
alpha version 2024-04-26 21:41:11 +02:00
☆ sam
9aaa38ea2d
mac: add entitlements needed for camera/microphone access (#533) 2024-04-26 21:38:01 +02:00
2 changed files with 22 additions and 1 deletions

View file

@ -0,0 +1,21 @@
<!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.cs.allow-unsigned-executable-memory</key>
<true/>
<key>com.apple.security.cs.allow-jit</key>
<true/>
<key>com.apple.security.network.client</key>
<true/>
<key>com.apple.security.device.audio-input</key>
<true/>
<key>com.apple.security.device.camera</key>
<true/>
<key>com.apple.security.device.bluetooth</key>
<true/>
<key>com.apple.security.cs.allow-dyld-environment-variables</key>
<true/>
<key>com.apple.security.cs.disable-library-validation</key>
<true/>
</dict>
</plist>

View file

@ -1,6 +1,6 @@
{ {
"name": "vesktop", "name": "vesktop",
"version": "1.5.1", "version": "1.5.2-alpha.1",
"private": true, "private": true,
"description": "", "description": "",
"keywords": [], "keywords": [],