mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
1cc47ebcd0
8e209340c85fc2493d7d1d7affe7e316bb613cbd build: Add CLIENT_VERSION_BUILD to CFBundleGetInfoString (fanquake) Pull request description: As mentioned in #14697, if you download the `0.17.0.1` dmg, and inspect the `.app` bundle, the version in the GetInfo string reads `0.17.0`, which is confusing given you're expecting `0.17.0.1`: <img width="391" alt="0 17 0 1" src="https://user-images.githubusercontent.com/863730/48300032-fbb54b00-e510-11e8-9bcd-77e1fffffc63.png"> This PR adds `CLIENT_VERSION_BUILD` to the string, so that the full version number is displayed, i.e: <img width="327" alt="this pr" src="https://user-images.githubusercontent.com/863730/48300015-7893f500-e510-11e8-98b9-80424719a082.png"> Tree-SHA512: f553253d03283639cc4dda00c8004b5c63ae2b489762e5e8c666166e71b14e672792c1df678f87484d51d153b5781c5ec1b145774096600f504833024ae8baea
110 lines
2.8 KiB
XML
110 lines
2.8 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd">
|
|
<plist version="0.9">
|
|
<dict>
|
|
<key>LSMinimumSystemVersion</key>
|
|
<string>10.8.0</string>
|
|
|
|
<key>LSArchitecturePriority</key>
|
|
<array>
|
|
<string>x86_64</string>
|
|
</array>
|
|
|
|
<key>CFBundleIconFile</key>
|
|
<string>bitcoin.icns</string>
|
|
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
|
|
<key>CFBundleGetInfoString</key>
|
|
<string>@CLIENT_VERSION_MAJOR@.@CLIENT_VERSION_MINOR@.@CLIENT_VERSION_REVISION@.@CLIENT_VERSION_BUILD@, Copyright © 2009-@COPYRIGHT_YEAR@ The Bitcoin Core developers, 2014-@COPYRIGHT_YEAR@ @COPYRIGHT_HOLDERS_FINAL@</string>
|
|
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>@CLIENT_VERSION_MAJOR@.@CLIENT_VERSION_MINOR@.@CLIENT_VERSION_REVISION@</string>
|
|
|
|
<key>CFBundleVersion</key>
|
|
<string>@CLIENT_VERSION_MAJOR@.@CLIENT_VERSION_MINOR@.@CLIENT_VERSION_REVISION@</string>
|
|
|
|
<key>CFBundleSignature</key>
|
|
<string>????</string>
|
|
|
|
<key>CFBundleExecutable</key>
|
|
<string>Dash-Qt</string>
|
|
|
|
<key>CFBundleName</key>
|
|
<string>Dash-Qt</string>
|
|
|
|
<key>LSHasLocalizedDisplayName</key>
|
|
<true/>
|
|
|
|
<key>CFBundleIdentifier</key>
|
|
<string>org.dash.Dash-Qt</string>
|
|
|
|
<key>CFBundleURLTypes</key>
|
|
<array>
|
|
<dict>
|
|
<key>CFBundleTypeRole</key>
|
|
<string>Editor</string>
|
|
<key>CFBundleURLName</key>
|
|
<string>org.dash.DashPayment</string>
|
|
<key>CFBundleURLSchemes</key>
|
|
<array>
|
|
<string>dash</string>
|
|
</array>
|
|
</dict>
|
|
</array>
|
|
|
|
<key>UTExportedTypeDeclarations</key>
|
|
<array>
|
|
<dict>
|
|
<key>UTTypeIdentifier</key>
|
|
<string>org.dash.paymentrequest</string>
|
|
<key>UTTypeDescription</key>
|
|
<string>Dash payment request</string>
|
|
<key>UTTypeConformsTo</key>
|
|
<array>
|
|
<string>public.data</string>
|
|
</array>
|
|
<key>UTTypeTagSpecification</key>
|
|
<dict>
|
|
<key>public.mime-type</key>
|
|
<string>application/x-dash-payment-request</string>
|
|
<key>public.filename-extension</key>
|
|
<array>
|
|
<string>dashpaymentrequest</string>
|
|
</array>
|
|
</dict>
|
|
</dict>
|
|
</array>
|
|
|
|
<key>CFBundleDocumentTypes</key>
|
|
<array>
|
|
<dict>
|
|
<key>CFBundleTypeRole</key>
|
|
<string>Editor</string>
|
|
<key>LSItemContentTypes</key>
|
|
<array>
|
|
<string>org.dash.paymentrequest</string>
|
|
</array>
|
|
<key>LSHandlerRank</key>
|
|
<string>Owner</string>
|
|
</dict>
|
|
</array>
|
|
|
|
<key>NSPrincipalClass</key>
|
|
<string>NSApplication</string>
|
|
|
|
<key>NSHighResolutionCapable</key>
|
|
<string>True</string>
|
|
|
|
<key>LSAppNapIsDisabled</key>
|
|
<string>True</string>
|
|
|
|
<key>NSRequiresAquaSystemAppearance</key>
|
|
<string>True</string>
|
|
|
|
<key>LSApplicationCategoryType</key>
|
|
<string>public.app-category.finance</string>
|
|
</dict>
|
|
</plist>
|