-
-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathInfo.plist
More file actions
53 lines (45 loc) · 1.69 KB
/
Copy pathInfo.plist
File metadata and controls
53 lines (45 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?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>
<!-- URL Scheme Registration -->
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>com.sertacozercan.kaset</string>
<key>CFBundleURLSchemes</key>
<array>
<string>kaset</string>
</array>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
</dict>
</array>
<!-- Sparkle Auto-Update Configuration -->
<key>SUFeedURL</key>
<string>https://raw.githubusercontent.com/sozercan/kaset/main/appcast.xml</string>
<key>SUPublicEDKey</key>
<string>qa2zoeXHqn+pluxQSGjn5HyIYA/iFtrEJz7S1BoslpI=</string>
<key>SUEnableAutomaticChecks</key>
<true/>
<key>SUScheduledCheckInterval</key>
<integer>86400</integer>
<key>SUAllowsAutomaticUpdates</key>
<true/>
<key>SUEnableInstallerLauncherService</key>
<true/>
<!-- AppleScript Support -->
<key>NSAppleScriptEnabled</key>
<true/>
<key>OSAScriptingDefinition</key>
<string>Kaset.sdef</string>
<!-- Core Audio Process Tap (Equalizer) -->
<!-- Process tap on macOS 14.2+ is gated by Screen Recording / System Audio Recording TCC, -->
<!-- not microphone TCC, despite what the dialog button text might suggest. -->
<key>NSAudioCaptureUsageDescription</key>
<string>Kaset processes its own music output through a built-in equalizer. This permission only covers Kaset's own playback — no other app's audio is captured.</string>
<key>NSScreenCaptureUsageDescription</key>
<string>Kaset taps its own audio output (not the screen) so the built-in equalizer can apply effects to your music. No screen content is recorded.</string>
</dict>
</plist>