File tree Expand file tree Collapse file tree 3 files changed +43
-1
lines changed
Expand file tree Collapse file tree 3 files changed +43
-1
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " mpesa2csv " : patch
3+ ---
4+
5+ fix: macos release
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments