-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathInfo.plist
132 lines (132 loc) · 4.21 KB
/
Info.plist
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<?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>CFBundleExecutable</key>
<string>seadrive-gui</string>
<key>CFBundleGetInfoString</key>
<string>SeaDrive Application</string>
<key>CFBundleIconFile</key>
<string>seadrive-icon</string>
<key>CFBundleIdentifier</key>
<string>com.seafile.seadrive</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleName</key>
<string>SeaDrive</string>
<key>CFBundleShortVersionString</key>
<string>3.0.12</string>
<key>CFBundleVersion</key>
<string>3.0.12</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>com.seafile.seadrive-client</string>
<key>CFBundleURLSchemes</key>
<array>
<string>seafile</string>
</array>
</dict>
</array>
<key>LSApplicationCategoryType</key>
<string>public.app-category.utilities</string>
<key>LSMinimumSystemVersion</key>
<string>10.15</string>
<key>LSUIElement</key>
<true/>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2023 海文互知. All rights reserved.</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
<key>NSHighResolutionCapable</key>
<string>True</string>
<key>NSSupportsAutomaticGraphicsSwitching</key>
<true/>
<key>SMPrivilegedExecutables</key>
<dict>
<key>com.seafile.seadrive.helper</key>
<string>identifier "com.seafile.seadrive.helper" and anchor apple generic and certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = "55LCTZ5354"</string>
</dict>
<!-- Always update this and CFBundleVersion in osxhelper/Info.plist together-->
<key>DriveHelperVersion</key>
<string>0.1.1</string>
<!-- For Sparkle Framework -->
<key>SUFeedURL</key>
<string>https://www.seafile.com/api/client-updates/seadrive-client-mac/appcast.xml</string>
<key>CFBundleLocalizations</key>
<!-- The CFBundleLocalizations would determinte the display language used by sparkle AutoUpdate.app -->
<!-- We must list all languages supported by Sparkle here -->
<!-- Sparkle would choose one based on current system language -->
<!-- See https://github.com/sparkle-project/Sparkle/issues/238#issuecomment-11927292 -->
<array>
<string>ar</string>
<string>ca</string>
<string>cs</string>
<string>da</string>
<string>de</string>
<string>el</string>
<string>en</string>
<string>es</string>
<string>fi</string>
<string>fr</string>
<string>he</string>
<string>is</string>
<string>it</string>
<string>ja</string>
<string>ko</string>
<string>nb</string>
<string>nl</string>
<string>pl</string>
<string>pt_BR</string>
<string>pt_PT</string>
<string>ro</string>
<string>ru</string>
<string>sk</string>
<string>sl</string>
<string>sv</string>
<string>th</string>
<string>tr</string>
<string>uk</string>
<string>zh_CN</string>
<string>zh_TW</string>
</array>
<key>UTExportedTypeDeclarations</key>
<array>
<dict>
<key>UTTypeConformsTo</key>
<array>
<string>com.apple.icon-decoration.badge</string>
</array>
<key>UTTypeDescription</key>
<string>Locked by user</string>
<key>UTTypeIconFile</key>
<string>locked-by-user.icns</string>
<key>UTTypeIdentifier</key>
<string>com.seafile.seadrive.locked-by-user</string>
<key>UTTypeReferenceURL</key>
<string></string>
<key>UTTypeTagSpecification</key>
<dict/>
</dict>
<dict>
<key>UTTypeConformsTo</key>
<array>
<string>com.apple.icon-decoration.badge</string>
</array>
<key>UTTypeDescription</key>
<string>Locked by me</string>
<key>UTTypeIconFile</key>
<string>locked-by-me.icns</string>
<key>UTTypeIdentifier</key>
<string>com.seafile.seadrive.locked-by-me</string>
<key>UTTypeReferenceURL</key>
<string></string>
<key>UTTypeTagSpecification</key>
<dict/>
</dict>
</array>
</dict>
</plist>