-
Notifications
You must be signed in to change notification settings - Fork 69
M6: onboarding, app bundle scripts, shortcuts #77
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
Open
kalil0321
wants to merge
10
commits into
claude/proxy-monitor-m5-agent-sidecar
Choose a base branch
from
claude/proxy-monitor-m6-polish-distribution
base: claude/proxy-monitor-m5-agent-sidecar
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
68991d8
M6: onboarding sheet + universal app bundle + signing & DMG scripts
kalil0321 4ca2c91
fix(macos): persist proxy snapshot + handle SIGTERM/SIGINT/SIGHUP
kalil0321 142a32e
fix(macos): gate persisted snapshot load on live proxy + surface writ…
kalil0321 1cf4cb5
Revert "fix(macos): gate persisted snapshot load on live proxy + surf…
kalil0321 6c344bb
Reapply "fix(macos): gate persisted snapshot load on live proxy + sur…
kalil0321 92ce9b1
style(macos): retheme to match reverse-api-website palette + bundle F…
kalil0321 02320fc
style(macos): light+dark themes, splash screen, Fraunces brand axes, …
kalil0321 43c355d
fix(macos): register Fraunces in App.init + unset proxy env vars befo…
kalil0321 eacfab8
style(macos): make composer distinct from panel + pink accent in acti…
kalil0321 0d92412
style(macos): brighter composer input + brand-pink send button + spla…
kalil0321 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,49 @@ | ||
| <?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>CFBundleDevelopmentRegion</key> | ||
| <string>en</string> | ||
| <key>CFBundleDisplayName</key> | ||
| <string>rae</string> | ||
| <key>CFBundleExecutable</key> | ||
| <string>rae</string> | ||
| <key>CFBundleIconFile</key> | ||
| <string>AppIcon</string> | ||
| <key>CFBundleIdentifier</key> | ||
| <string>app.rae.reverseapi</string> | ||
| <key>CFBundleInfoDictionaryVersion</key> | ||
| <string>6.0</string> | ||
| <key>CFBundleName</key> | ||
| <string>rae</string> | ||
| <key>CFBundlePackageType</key> | ||
| <string>APPL</string> | ||
| <key>CFBundleShortVersionString</key> | ||
| <string>0.1.0</string> | ||
| <key>CFBundleVersion</key> | ||
| <string>1</string> | ||
| <key>LSApplicationCategoryType</key> | ||
| <string>public.app-category.developer-tools</string> | ||
| <key>LSMinimumSystemVersion</key> | ||
| <string>14.0</string> | ||
| <key>NSHighResolutionCapable</key> | ||
| <true/> | ||
| <key>NSSupportsAutomaticGraphicsSwitching</key> | ||
| <true/> | ||
| <key>NSPrincipalClass</key> | ||
| <string>NSApplication</string> | ||
| <!-- macOS must not auto-terminate this process when its window is | ||
| hidden — the proxy + flow capture happen in the background and | ||
| silently dropping them would lose data the user expects to be | ||
| recording. --> | ||
| <key>NSSupportsAutomaticTermination</key> | ||
| <false/> | ||
| <key>NSSupportsSuddenTermination</key> | ||
| <false/> | ||
| <!-- Required for the AppleScript "with administrator privileges" | ||
| flow we use to call networksetup when toggling the system | ||
| proxy on every active network service. --> | ||
| <key>NSAppleEventsUsageDescription</key> | ||
| <string>rae uses AppleScript to elevate networksetup when routing macOS traffic through the proxy.</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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| <?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 proxy needs full local access (Keychain for the CA private key, | ||
| networksetup via AppleScript, listening on a local port for the | ||
| WebSocket sidecar). The App Sandbox would break every one of those, | ||
| so we ship with sandbox disabled and rely on Hardened Runtime + the | ||
| minimal entitlement set below. --> | ||
| <key>com.apple.security.app-sandbox</key> | ||
| <false/> | ||
| <key>com.apple.security.network.client</key> | ||
| <true/> | ||
| <key>com.apple.security.network.server</key> | ||
| <true/> | ||
| <key>com.apple.security.automation.apple-events</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
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.