-
Notifications
You must be signed in to change notification settings - Fork 2.3k
feat: configure macOS hardened runtime, entitlements, and build envir… #300
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
5 commits
Select commit
Hold shift + click to select a range
78901a8
feat: configure macOS hardened runtime, entitlements, and build envir…
samirpatil2000 0e3106f
Merge branch 'main' into main
samirpatil2000 0489d7b
Merge branch 'siddharthvaddem:main' into main
samirpatil2000 3709342
ci: update build workflow configuration and dependencies
samirpatil2000 dfbaf3f
ci: update build workflow configuration
samirpatil2000 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| APP_NAME=Openscreen | ||
| BUNDLE_ID=com.siddharthvaddem.openscreen | ||
|
|
||
| APPLE_ID= | ||
| TEAM_ID= | ||
| SIGN_IDENTITY="Developer ID Application: Samir Patil ()" | ||
| CSC_NAME="Samir Patil ()" | ||
|
|
||
| NOTARY_PROFILE=OpenScreen-notary | ||
| APPLE_APP_SPECIFIC_PASSWORD= |
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 |
|---|---|---|
|
|
@@ -12,6 +12,7 @@ dist | |
| dist-electron | ||
| dist-ssr | ||
| *.local | ||
| .env | ||
|
|
||
| # Editor directories and files | ||
| .vscode/* | ||
|
|
||
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,25 @@ | ||
| <?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> | ||
| <!-- Required for Electron's V8 JIT compilation --> | ||
| <key>com.apple.security.cs.allow-jit</key> | ||
| <true/> | ||
|
|
||
| <!-- Required for Electron's native module loading --> | ||
| <key>com.apple.security.cs.allow-unsigned-executable-memory</key> | ||
| <true/> | ||
|
|
||
| <!-- Required for loading Electron's bundled frameworks/dylibs --> | ||
| <key>com.apple.security.cs.disable-library-validation</key> | ||
| <true/> | ||
|
|
||
| <!-- Audio input (microphone / system audio capture) --> | ||
| <key>com.apple.security.device.audio-input</key> | ||
| <true/> | ||
|
|
||
| <!-- Camera (webcam capture) --> | ||
| <key>com.apple.security.device.camera</key> | ||
| <true/> | ||
| </dict> | ||
| </plist> |
Oops, something went wrong.
Oops, something went wrong.
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.