aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarol Rodriguez <jarolrod@tutanota.com>2021-09-04 18:44:39 -0400
committerJarol Rodriguez <jarolrod@tutanota.com>2021-09-13 05:17:18 -0400
commit3765c486ef57001d4e313782bf16a69b6988da33 (patch)
treef0ea768d47aa4f98c54b9a245821bebb59c63ee6
parentf4e12fd50c23875f4b5f272c94449eb81de43d5d (diff)
downloadbitcoin-3765c486ef57001d4e313782bf16a69b6988da33.tar.xz
qt: fix bitcoin-qt app categorization on apple silicon
On master, the deployed bitcoin-qt application is categorized as an IOS application. This is obviously incorrect, and the built executable is not an IOS executable. To fix this, we set the CFBundleSupportedPlatforms key in our info.plist
-rw-r--r--share/qt/Info.plist.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/share/qt/Info.plist.in b/share/qt/Info.plist.in
index da10dbb3be..23bb244439 100644
--- a/share/qt/Info.plist.in
+++ b/share/qt/Info.plist.in
@@ -16,6 +16,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
+ <key>CFBundleSupportedPlatforms</key>
+ <array>
+ <string>MacOSX</string>
+ </array>
+
<key>NSHumanReadableCopyright</key>
<string>@CLIENT_VERSION_MAJOR@.@CLIENT_VERSION_MINOR@.@CLIENT_VERSION_BUILD@, Copyright © 2009-@COPYRIGHT_YEAR@ @COPYRIGHT_HOLDERS_FINAL@</string>