From ed81c5563e55028e75824e03d26a8b8ef4b580f0 Mon Sep 17 00:00:00 2001 From: xploited Date: Fri, 20 Dec 2019 18:16:01 -0400 Subject: [PATCH] missed clam renames Bitcoin-Qt -> Clam-Qt --- contrib/macdeploy/custom_dsstore.py | 2 +- contrib/macdeploy/fancy.plist | 2 +- contrib/macdeploy/macdeployqtplus | 4 ++-- share/qt/Info.plist.in | 2 +- src/qt/macnotificationhandler.mm | 2 +- src/qt/test/test_main.cpp | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/contrib/macdeploy/custom_dsstore.py b/contrib/macdeploy/custom_dsstore.py index e6ecabace1..7d7978a0c1 100755 --- a/contrib/macdeploy/custom_dsstore.py +++ b/contrib/macdeploy/custom_dsstore.py @@ -54,7 +54,7 @@ ds['.']['vSrn'] = ('long', 1) ds['Applications']['Iloc'] = (370, 156) -ds['Bitcoin-Qt.app']['Iloc'] = (128, 156) +ds['Clam-Qt.app']['Iloc'] = (128, 156) ds.flush() ds.close() diff --git a/contrib/macdeploy/fancy.plist b/contrib/macdeploy/fancy.plist index ef277a7f14..a8260feeda 100644 --- a/contrib/macdeploy/fancy.plist +++ b/contrib/macdeploy/fancy.plist @@ -22,7 +22,7 @@ 370 156 - Bitcoin-Qt.app + Clam-Qt.app 128 156 diff --git a/contrib/macdeploy/macdeployqtplus b/contrib/macdeploy/macdeployqtplus index 5995f9f438..34912223e0 100755 --- a/contrib/macdeploy/macdeployqtplus +++ b/contrib/macdeploy/macdeployqtplus @@ -155,7 +155,7 @@ class FrameworkInfo(object): class ApplicationBundleInfo(object): def __init__(self, path): self.path = path - appName = "Bitcoin-Qt" + appName = "Clam-Qt" self.binaryPath = os.path.join(path, "Contents", "MacOS", appName) if not os.path.exists(self.binaryPath): raise RuntimeError("Could not find bundle binary for " + path) @@ -604,7 +604,7 @@ else: # ------------------------------------------------ -target = os.path.join("dist", "Bitcoin-Qt.app") +target = os.path.join("dist", "Clam-Qt.app") if verbose >= 2: print("+ Copying source bundle +") diff --git a/share/qt/Info.plist.in b/share/qt/Info.plist.in index 37c9ebdd61..41fdf0d22b 100644 --- a/share/qt/Info.plist.in +++ b/share/qt/Info.plist.in @@ -38,7 +38,7 @@ CFBundleIdentifier - org.bitcoinfoundation.Bitcoin-Qt + org.bitcoinfoundation.Clam-Qt CFBundleURLTypes diff --git a/src/qt/macnotificationhandler.mm b/src/qt/macnotificationhandler.mm index dd3f622818..68cc99b333 100644 --- a/src/qt/macnotificationhandler.mm +++ b/src/qt/macnotificationhandler.mm @@ -13,7 +13,7 @@ @implementation NSBundle(returnCorrectIdentifier) - (NSString *)__bundleIdentifier { if (self == [NSBundle mainBundle]) { - return @"org.bitcoinfoundation.Bitcoin-Qt"; + return @"org.bitcoinfoundation.Clam-Qt"; } else { return [self __bundleIdentifier]; } diff --git a/src/qt/test/test_main.cpp b/src/qt/test/test_main.cpp index d44d711315..e798d30e9a 100644 --- a/src/qt/test/test_main.cpp +++ b/src/qt/test/test_main.cpp @@ -47,7 +47,7 @@ int main(int argc, char *argv[]) // Don't remove this, it's needed to access // QCoreApplication:: in the tests QCoreApplication app(argc, argv); - app.setApplicationName("Bitcoin-Qt-test"); + app.setApplicationName("Clam-Qt-test"); SSL_library_init();