Skip to content

Commit f63df72

Browse files
committed
feat: release
1 parent 052f273 commit f63df72

File tree

3 files changed

+43
-1
lines changed

3 files changed

+43
-1
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"mpesa2csv": patch
3+
---
4+
5+
fix: macos release

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/entitlements.plist

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<!-- Allow network access for updater and web content -->
6+
<key>com.apple.security.network.client</key>
7+
<true/>
8+
9+
<!-- Allow outgoing network connections -->
10+
<key>com.apple.security.network.server</key>
11+
<true/>
12+
13+
<!-- Allow file system access for reading/writing CSV files -->
14+
<key>com.apple.security.files.user-selected.read-write</key>
15+
<true/>
16+
17+
<!-- Allow file system access for downloads folder -->
18+
<key>com.apple.security.files.downloads.read-write</key>
19+
<true/>
20+
21+
<!-- Disable App Sandbox for full file system access -->
22+
<key>com.apple.security.app-sandbox</key>
23+
<false/>
24+
25+
<!-- Allow JIT compilation for better performance -->
26+
<key>com.apple.security.cs.allow-jit</key>
27+
<true/>
28+
29+
<!-- Allow unsigned executable memory for WebKit -->
30+
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
31+
<true/>
32+
33+
<!-- Disable library validation for dynamic libraries -->
34+
<key>com.apple.security.cs.disable-library-validation</key>
35+
<true/>
36+
</dict>
37+
</plist>

0 commit comments

Comments
 (0)