-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix macOS 10.15.4 codesigning crash.
The recent macOS security patch renders our codesigning "fix" of setting the sandbox entitlement to false twice unusable. This patch adds a full provisioning profile and adjusts the signing procedure to not include entitlements for Qt frameworks. The patch also changes the app and bundle ID, so granted accessibility privileges have to be granted again after installing the update. Fixes #4398 Fixes #4515
- Loading branch information
Showing
6 changed files
with
27 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,12 @@ | ||
<?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> | ||
<key>com.apple.application-identifier</key> | ||
<string>org.keepassx.keepassxc</string> | ||
<key>com.apple.developer.aps-environment</key> | ||
<string>production</string> | ||
|
||
<key>keychain-access-groups</key> | ||
<array> | ||
<string>org.keepassx.keepassxc</string> | ||
</array> | ||
|
||
<!-- Sandbox entitlements stub for future reference. | ||
For whatever reason, we have to set this twice. | ||
Otherwise a signed application crashes on startup --> | ||
<key>com.apple.security.app-sandbox</key> | ||
<false/> | ||
<key>com.apple.security.app-sandbox</key> | ||
<false/> | ||
<!--key>com.apple.security.network.client</key> | ||
<true/> | ||
<key>com.apple.security.files.user-selected.read-write</key> | ||
<true/> | ||
<key>com.apple.security.device.usb</key> | ||
<true/> | ||
<key>com.apple.security.print</key> | ||
<true/> | ||
<key>com.apple.security.files.user-selected.read-only</key> | ||
<false/--> | ||
</dict> | ||
<dict> | ||
<key>com.apple.application-identifier</key> | ||
<string>G2S7P7J672.org.keepassxc.keepassxc</string> | ||
<key>keychain-access-groups</key> | ||
<array> | ||
<string>G2S7P7J672.org.keepassxc.keepassxc</string> | ||
</array> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters