mirror of
https://github.com/NanmiCoder/cc-haha
synced 2026-07-17 13:13:35 +08:00
- mac.notarize=true + hardenedRuntime + entitlements so a signed CI release actually notarizes (gatekeeper smoke + Squirrel.Mac auto-update need it) - entitlements grant disable-library-validation for the Bun sidecar/node-pty - local unsigned build passes -c.mac.notarize=false so electron:package still works without an Apple account - release signing-preflight now hard-requires only the Apple secrets; Windows cert is optional (unsigned NSIS still auto-updates, just SmartScreen warning) Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
18 lines
613 B
Plaintext
18 lines
613 B
Plaintext
<?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>
|
|
<!-- Child/helper executables inherit the parent entitlements under hardened runtime. -->
|
|
<key>com.apple.security.cs.allow-jit</key>
|
|
<true/>
|
|
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
|
|
<true/>
|
|
<key>com.apple.security.cs.allow-dyld-environment-variables</key>
|
|
<true/>
|
|
<key>com.apple.security.cs.disable-library-validation</key>
|
|
<true/>
|
|
<key>com.apple.security.inherit</key>
|
|
<true/>
|
|
</dict>
|
|
</plist>
|