blob: 1074f1a2e6e096b98522d96484015afb7ed7b522 (
plain)
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
|
<?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>English</string>
<key>CFBundleExecutable</key>
<string>Logray</string>
<key>CFBundleGetInfoString</key>
<string>@LOG_PROJECT_VERSION@, Copyright 1998-2024 Wireshark Development Team</string>
<key>CFBundleIconFile</key>
<string>Logray.icns</string>
<key>CFBundleIdentifier</key>
<string>org.wireshark.Logray</string>
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
<string>scap</string>
<string>scap.gz</string>
</array>
<key>CFBundleTypeIconFile</key>
<string>Wiresharkdoc.icns</string>
<key>CFBundleTypeName</key>
<string>Sysdig capture</string>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
</dict>
<!-- XXX - This dictionary needs a lot more entries -->
</array>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>@LOG_PROJECT_VERSION@</string>
<key>CFBundleSignature</key>
<string>Lgry</string>
<key>CFBundleVersion</key>
<string>@LOG_PROJECT_VERSION@</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright 1998-2024 Wireshark Developers, GNU General Public License.</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
<key>NSHighResolutionCapable</key>
<true/>
<!-- Force dark mode support. -->
<key>NSRequiresAquaSystemAppearance</key>
<false/>
<key>LSMinimumSystemVersion</key>
<string>@MIN_MACOS_VERSION@</string>
<!-- Sparkle settings https://sparkle-project.org/documentation/customization/ -->
<key>SUFeedURL</key>
<string>https://www.wireshark.org/update/0/Logray/@LOG_PROJECT_MAJOR_VERSION@.@LOG_PROJECT_MINOR_VERSION@.@PROJECT_PATCH_VERSION@/macOS/x86-64/en-US/stable.xml</string>
<key>SUEnableAutomaticChecks</key>
<false/>
<key>SUPublicEDKey</key>
<string>BeSuPpEZOmOzkON9QMnfIdwyi06P/LcVoik8M5O2bsQ=</string>
<key>SUEnableSystemProfiling</key>
<false/>
<!--
Disable automatic updates here, then enable them at program
startup depending on prefs.gui_update_enabled.
-->
<key>SUAutomaticallyUpdate</key>
<false/>
</dict>
</plist>
|