mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-25 19:15:18 +02:00
fix(desktop): declare surfsense:// scheme in macOS Info.plist
Linux registered the scheme via desktop-file MIME, but mac.extendInfo never declared CFBundleURLTypes, leaving install-time LaunchServices unaware of the protocol. The runtime app.setAsDefaultProtocolClient call still runs as a fallback.
This commit is contained in:
parent
6ee7c04d02
commit
fe98c17b1d
1 changed files with 5 additions and 0 deletions
|
|
@ -55,6 +55,11 @@ mac:
|
||||||
NSAccessibilityUsageDescription: "SurfSense uses accessibility features to bring the app to the foreground and interact with the active application when you use desktop assists."
|
NSAccessibilityUsageDescription: "SurfSense uses accessibility features to bring the app to the foreground and interact with the active application when you use desktop assists."
|
||||||
NSScreenCaptureUsageDescription: "SurfSense uses screen capture so you can attach a selected region to chat (Screenshot Assist) or capture the full screen from the composer."
|
NSScreenCaptureUsageDescription: "SurfSense uses screen capture so you can attach a selected region to chat (Screenshot Assist) or capture the full screen from the composer."
|
||||||
NSAppleEventsUsageDescription: "SurfSense uses Apple Events to interact with the active application."
|
NSAppleEventsUsageDescription: "SurfSense uses Apple Events to interact with the active application."
|
||||||
|
# `surfsense://` scheme — install-time registration for LaunchServices.
|
||||||
|
CFBundleURLTypes:
|
||||||
|
- CFBundleURLName: com.surfsense.desktop
|
||||||
|
CFBundleURLSchemes:
|
||||||
|
- surfsense
|
||||||
target:
|
target:
|
||||||
- target: dmg
|
- target: dmg
|
||||||
arch: [x64, arm64]
|
arch: [x64, arm64]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue