Skip to content
This repository has been archived by the owner on Jan 31, 2024. It is now read-only.

Commit

Permalink
Entitlements update (#107)
Browse files Browse the repository at this point in the history
entitlements keys update
  • Loading branch information
ozgunozerk authored Mar 22, 2022
1 parent 245c373 commit 94c7a17
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,6 @@ jobs:
with:
tagName: __VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version
releaseName: "__VERSION__"
body: "See the assets to download this version and install."
draft: true
prerelease: false
releaseBody: "See the assets to download this version and install."
releaseDraft: false
prerelease: true
8 changes: 7 additions & 1 deletion src-tauri/entitlements.plist
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@
<!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.files.user-selected.read-write</key>
<key>com.apple.security.network.server</key> <!-- required for incoming connections -->
<true/>
<key>com.apple.security.network.client</key> <!-- required for outgoing coonnections -->
<true/>
<key>com.apple.security.files.user-selected.read-write</key> <!-- required for read/write access to files -->
<true/>
<key>com.apple.security.cs.allow-unsigned-executable-memory</key> <!-- without this, it is crashing during sync/plot, idk why -->
<true/>
</dict>
</plist>

0 comments on commit 94c7a17

Please sign in to comment.