diff options
author | Himbeer <himbeer@disroot.org> | 2024-08-08 15:42:13 +0200 |
---|---|---|
committer | Himbeer <himbeer@disroot.org> | 2024-08-08 15:42:13 +0200 |
commit | 839b15b1c25a2b01a555051598a748d8e1dbbf34 (patch) | |
tree | 376e4ff3d5f8be8683abba068af5f9f75245d618 | |
parent | 6df7e6f8dba5fb619c72ae7fd9c1d46682e3c01f (diff) |
Add com.apple.security.network.client entitlement
-rw-r--r-- | src-tauri/Entitlements.plist | bin | 0 -> 83 bytes | |||
-rw-r--r-- | src-tauri/Entitlements.xml | 8 | ||||
-rw-r--r-- | src-tauri/tauri.conf.json | 5 |
3 files changed, 12 insertions, 1 deletions
diff --git a/src-tauri/Entitlements.plist b/src-tauri/Entitlements.plist Binary files differnew file mode 100644 index 0000000..b8b653a --- /dev/null +++ b/src-tauri/Entitlements.plist diff --git a/src-tauri/Entitlements.xml b/src-tauri/Entitlements.xml new file mode 100644 index 0000000..412d033 --- /dev/null +++ b/src-tauri/Entitlements.xml @@ -0,0 +1,8 @@ +<?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.network.client</key> + <true/> +</dict> +</plist> diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index e7f882d..16354e4 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -48,7 +48,10 @@ "icons/128x128@2x.png", "icons/icon.icns", "icons/icon.ico" - ] + ], + "macOS": { + "entitlements": "Entitlements.plist" + } } } } |