contrib: cleanup macOS' Info.plist

Based on the doc at https://developer.apple.com/library/archive/documentation/CoreFoundation/Conceptual/CFBundles/BundleTypes/BundleTypes.html#//apple_ref/doc/uid/10000123i-CH101-SW5, get rid of some superfluous fields and cleanup the whole file.
This commit is contained in:
Antoine Poinsot 2023-05-09 11:11:37 +02:00
parent 1e35d0bd60
commit eb26e71019
No known key found for this signature in database
GPG Key ID: E13FC145CD3F4304

View File

@ -1,32 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd"> <!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd">
<plist version="0.9"> <plist version="0.9">
<dict> <!-- Based on https://developer.apple.com/library/archive/documentation/CoreFoundation/Conceptual/CFBundles/BundleTypes/BundleTypes.html#//apple_ref/doc/uid/10000123i-CH101-SW5 -->
<key>LSMinimumSystemVersion</key> <!-- See also https://github.com/bitcoin/bitcoin/blob/master/share/qt/Info.plist.in as an example. -->
<string>10.15.0</string> <dict>
<key>CFBundleName</key>
<string>Liana</string>
<key>LSArchitecturePriority</key> <key>CFBundleDisplayName</key>
<array> <string>Liana</string>
<string>x86_64</string>
</array>
<!-- TODO --> <key>CFBundleIdentifier</key>
<!--<key>CFBundleIconFile</key>--> <string>com.wizardsardine.liana</string>
<!--<string></string>-->
<key>CFBundlePackageType</key> <key>CFBundleVersion</key>
<string>APPL</string> <string>VERSION_PLACEHOLDER</string>
<key>CFBundleSupportedPlatforms</key>
<array>
<string>MacOSX</string>
</array>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>VERSION_PLACEHOLDER</string> <string>VERSION_PLACEHOLDER</string>
<key>CFBundleVersion</key> <key>CFBundlePackageType</key>
<string>VERSION_PLACEHOLDER</string> <string>APPL</string>
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>????</string> <string>????</string>
@ -34,36 +28,17 @@
<key>CFBundleExecutable</key> <key>CFBundleExecutable</key>
<string>Liana</string> <string>Liana</string>
<key>CFBundleName</key> <key>LSMinimumSystemVersion</key>
<string>Liana</string> <string>10.15.0</string>
<key>LSHasLocalizedDisplayName</key> <key>CFBundleIconFile</key>
<true/> <string>Liana.icns</string>
<key>CFBundleIdentifier</key>
<string>org.wizardsardine.liana</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLName</key>
<string>org.wizardsardine.liana</string>
<key>CFBundleURLSchemes</key>
<array>
<string>liana</string>
</array>
</dict>
</array>
<key>NSPrincipalClass</key> <key>NSPrincipalClass</key>
<string>NSApplication</string> <string>NSApplication</string>
<key>NSHighResolutionCapable</key>
<string>True</string>
<key>LSApplicationCategoryType</key> <key>LSApplicationCategoryType</key>
<string>public.app-category.finance</string> <string>public.app-category.finance</string>
</dict>
</dict>
</plist> </plist>