-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInfo.plist
More file actions
61 lines (60 loc) · 2.61 KB
/
Copy pathInfo.plist
File metadata and controls
61 lines (60 loc) · 2.61 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
54
55
56
57
58
59
60
61
<?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>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleDisplayName</key>
<string>Capsule</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</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>26.0</string>
<!-- AppleScript: make Capsule scriptable via the bundled terminology (Capsule.sdef). -->
<key>NSAppleScriptEnabled</key>
<true/>
<key>OSAScriptingDefinition</key>
<string>Capsule.sdef</string>
<key>NSHighResolutionCapable</key>
<true/>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2026 Capsule. All rights reserved.</string>
<!-- Populated for local-network access to container runtimes/services (see the Privacy
page: local-only, no analytics). macOS shows this string on the first local-network
prompt. -->
<key>NSLocalNetworkUsageDescription</key>
<string>Capsule uses the local network to communicate with container runtimes and services on this Mac.</string>
<!-- Sparkle auto-updates (unsandboxed, Developer-ID build). See Scripts/release/README.md. -->
<!-- The appcast the updater polls. Served from the capsule-native.github.io Pages repo;
the release workflow publishes appcast.xml there. -->
<key>SUFeedURL</key>
<string>https://capsule-native.github.io/appcast.xml</string>
<!-- Check for updates in the background by default; the user can turn this off in
Settings ▸ Updates. -->
<key>SUEnableAutomaticChecks</key>
<true/>
<!-- Once per day (seconds). -->
<key>SUScheduledCheckInterval</key>
<integer>86400</integer>
<!-- EdDSA public key that verifies every downloaded update. The matching private key was
generated by Sparkle's `generate_keys --account capsule-native`; it lives in the
maintainer's login keychain and in the CI secret SPARKLE_ED_PRIVATE_KEY, and NEVER
enters the repo. Sparkle rejects any update not signed by this key pair. -->
<key>SUPublicEDKey</key>
<string>SaJ9avcN8A1w5xrK7XmVidxCXX6swF0N/wsRfMIadcc=</string>
</dict>
</plist>