-
Notifications
You must be signed in to change notification settings - Fork 241
Add macOS signing changes #1856
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
aa8bdbd
Add short version to the Info.plist
emlynmac c9f01da
Add entitlements and work into the qmake project
emlynmac fec86a0
Add signing details to macdeployqt call
emlynmac 5da96a0
Add some more entitlements
emlynmac 4f57f03
Add app category for apple
emlynmac 7680577
Fix up entitlements for signing / notarization for non-app store depl…
emlynmac d717a11
Put signing of mac os behind a -s flag in the deploy_mac.sh script
emlynmac a084c96
Split out the client / server entitlements
emlynmac d1ba102
Minimise entitlements and enable sandboxing of the app / server
emlynmac 5fed786
Remove windows-only resource reference from mac build; add icon to xc…
emlynmac 0fdc385
Add missing components to Info.plist; sync them up. Put back required…
emlynmac 4cebc22
Add minimum required macOS version as required by app store
emlynmac 5444155
Remove whitespace for PR review; remove unneeded team / provisioning …
emlynmac 8cb6e88
Add a changelog entry
emlynmac 75b9966
Update for consistency with rest of change log
emlynmac File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| <?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.security.app-sandbox</key> | ||
| <true/> | ||
| <key>com.apple.security.device.audio-input</key> | ||
| <true/> | ||
| <key>com.apple.security.network.client</key> | ||
| <true/> | ||
| <key>com.apple.security.network.server</key> | ||
| <true/> | ||
| </dict> | ||
| </plist> | ||
This file contains hidden or 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 hidden or 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 hidden or 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,32 +1,40 @@ | ||
| <?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>CFBundleName</key> | ||
| <string>${EXECUTABLE_NAME}</string> | ||
| <key>CFBundleDisplayName</key> | ||
| <string>${EXECUTABLE_NAME}</string> | ||
| <key>CFBundleIdentifier</key> | ||
| <string>${PRODUCT_BUNDLE_IDENTIFIER}</string> | ||
| <key>CFBundlePackageType</key> | ||
| <string>APPL</string> | ||
| <key>CFBundleVersion</key> | ||
| <string>${QMAKE_FULL_VERSION}</string> | ||
| <key>CFBundleExecutable</key> | ||
| <string>${EXECUTABLE_NAME}</string> | ||
| <key>CFBundleDevelopmentRegion</key> | ||
| <string>en</string> | ||
| <key>CFBundleIconFile</key> | ||
| <string>${ASSETCATALOG_COMPILER_APPICON_NAME}</string> | ||
| <key>CFBundleGetInfoString</key> | ||
| <string>Created by Qt/QMake</string> | ||
|
|
||
| <key>NSPrincipalClass</key> | ||
| <string>NSApplication</string> | ||
| <key>NSMicrophoneUsageDescription</key> | ||
| <string>Jamulus needs access to the microphone to record and stream your music to other musicians</string> | ||
| <!-- Temporarily opt out of Dark Mode as Qt 5.9 does not support it well, see https://bugreports.qt.io/browse/QTBUG-68891 --> | ||
| <key>NSRequiresAquaSystemAppearance</key> | ||
| <string>true</string> | ||
| </dict> | ||
| <dict> | ||
| <key>CFBundleName</key> | ||
| <string>${EXECUTABLE_NAME}</string> | ||
| <key>CFBundleDisplayName</key> | ||
| <string>${EXECUTABLE_NAME}</string> | ||
| <key>CFBundleIdentifier</key> | ||
| <string>${PRODUCT_BUNDLE_IDENTIFIER}</string> | ||
| <key>CFBundlePackageType</key> | ||
| <string>APPL</string> | ||
| <key>CFBundleVersion</key> | ||
| <string>${QMAKE_FULL_VERSION}</string> | ||
| <key>CFBundleShortVersionString</key> | ||
| <string>${QMAKE_SHORT_VERSION}</string> | ||
| <key>CFBundleSupportedPlatforms</key> | ||
| <array> | ||
| <string>MacOSX</string> | ||
| </array> | ||
| <key>LSApplicationCategoryType</key> | ||
| <string>public.app-category.music</string> | ||
| <key>LSMinimumSystemVersion</key> | ||
| <string>10.13.0</string> | ||
| <key>CFBundleExecutable</key> | ||
| <string>${EXECUTABLE_NAME}</string> | ||
| <key>CFBundleDevelopmentRegion</key> | ||
| <string>en</string> | ||
| <key>CFBundleIconFile</key> | ||
| <string>mainicon.icns</string> | ||
| <key>CFBundleGetInfoString</key> | ||
| <string>Jamulus - Created with QT</string> | ||
| <key>NSPrincipalClass</key> | ||
| <string>NSApplication</string> | ||
| <key>NSMicrophoneUsageDescription</key> | ||
| <string>Jamulus needs access to the microphone to record and stream your music to other musicians</string> | ||
| <key>NSRequiresAquaSystemAppearance</key> | ||
| <string>true</string> | ||
| </dict> | ||
| </plist> |
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.