-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInfo.plist
More file actions
84 lines (84 loc) · 2.26 KB
/
Copy pathInfo.plist
File metadata and controls
84 lines (84 loc) · 2.26 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?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>
<!-- Sparkle auto-update (see UPDATES.md). Replace SUPublicEDKey with the EdDSA
public key from `generate_keys`; the appcast is published to GitHub Pages. -->
<key>SUFeedURL</key>
<string>https://robyrew.github.io/TopPresenter/appcast.xml</string>
<key>SUPublicEDKey</key>
<string>4X2KEouvDSSL8Yyj8xr8OmxVFnGGSk1L2olrXkkm8CM=</string>
<key>SUEnableAutomaticChecks</key>
<true/>
<key>SUScheduledCheckInterval</key>
<integer>7200</integer>
<key>SUAutomaticallyUpdate</key>
<false/>
<key>SUEnableInstallerLauncherService</key>
<true/>
<key>CFBundleIconFile</key>
<string>AppIcon</string>
<key>CFBundleIconName</key>
<string>AppIcon</string>
<key>UTExportedTypeDeclarations</key>
<array>
<dict>
<key>UTTypeIdentifier</key>
<string>com.robyrew.toppresenter.theme</string>
<key>UTTypeDescription</key>
<string>TopPresenter Theme</string>
<key>UTTypeConformsTo</key>
<array>
<string>com.apple.package</string>
</array>
<key>UTTypeTagSpecification</key>
<dict>
<key>public.filename-extension</key>
<array>
<string>tptheme</string>
</array>
</dict>
</dict>
<dict>
<key>UTTypeIdentifier</key>
<string>com.robyrew.toppresenter.schedule</string>
<key>UTTypeDescription</key>
<string>TopPresenter Session</string>
<key>UTTypeConformsTo</key>
<array>
<string>public.json</string>
</array>
<key>UTTypeTagSpecification</key>
<dict>
<key>public.filename-extension</key>
<array>
<string>tpschedule</string>
</array>
</dict>
</dict>
</array>
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleTypeName</key>
<string>TopPresenter Theme</string>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
<key>LSItemContentTypes</key>
<array>
<string>com.robyrew.toppresenter.theme</string>
</array>
</dict>
<dict>
<key>CFBundleTypeName</key>
<string>TopPresenter Session</string>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
<key>LSItemContentTypes</key>
<array>
<string>com.robyrew.toppresenter.schedule</string>
</array>
</dict>
</array>
</dict>
</plist>