Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions src-tauri/entitlements.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?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>
<!-- The MCP sidecar is a Node SEA binary; V8 needs to map executable memory
for its JIT. Under hardened runtime this crashes ("Failed to reserve
virtual memory for CodeRange") without these entitlements. -->
<key>com.apple.security.cs.allow-jit</key>
<true/>
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
<true/>
</dict>
</plist>
3 changes: 2 additions & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@
"shortDescription": "ZPL label designer",
"longDescription": "Visual designer for Zebra ZPL printer labels with live preview and ZPL import/export.",
"macOS": {
"signingIdentity": "-"
"signingIdentity": "-",
"entitlements": "entitlements.plist"
},
"icon": [
"icons/32x32.png",
Expand Down