-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathInfo.plist
More file actions
65 lines (58 loc) · 2.9 KB
/
Copy pathInfo.plist
File metadata and controls
65 lines (58 loc) · 2.9 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
62
63
64
65
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleName</key>
<string>MrRSS</string>
<key>CFBundleExecutable</key>
<string>MrRSS</string>
<key>CFBundleIdentifier</key>
<string>com.mrrss.app</string>
<key>CFBundleVersion</key>
<string>1.3.24</string>
<key>CFBundleGetInfoString</key>
<string>Built with Wails</string>
<key>CFBundleShortVersionString</key>
<string>1.3.24</string>
<key>CFBundleIconFile</key>
<string>icons</string>
<key>LSMinimumSystemVersion</key>
<string>10.13</string>
<key>NSHighResolutionCapable</key>
<string>true</string>
<key>NSSupportsAutomaticGraphicsSwitching</key>
<string>true</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2026</string>
<!-- ============================================================ -->
<!-- Privacy and Permission Descriptions -->
<!-- ============================================================ -->
<!-- Apple Events Usage - Required for opening browser -->
<key>NSAppleEventsUsageDescription</key>
<string>MrRSS needs permission to open articles in your default web browser and execute custom feed scripts.</string>
<!-- Network Access - Required for fetching RSS feeds -->
<key>NSNetworkUsageDescription</key>
<string>MrRSS requires network access to fetch RSS feeds and update content.</string>
<!-- File Access - Required for OPML imports/exports -->
<key>NSDocumentsFolderUsageDescription</key>
<string>MrRSS needs access to Documents folder to import and export OPML feed lists.</string>
<key>NSDownloadsFolderUsageDescription</key>
<string>MrRSS needs access to Downloads folder to import feed lists and save exported content.</string>
<!-- ============================================================ -->
<!-- App Sandbox Configuration -->
<!-- ============================================================ -->
<!-- Note: Actual sandbox entitlements are configured in -->
<!-- build/darwin/entitlements.plist -->
<!-- ============================================================ -->
<!-- Disable App Sandbox for non-App Store distribution -->
<!-- Remove this key if publishing to Mac App Store -->
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<false/>
<key>NSExceptionDomains</key>
<dict/>
</dict>
</dict>
</plist>