diff options
Diffstat (limited to 'contrib/macdeploy')
| -rwxr-xr-x | contrib/macdeploy/DS_Store | bin | 15357 -> 15351 bytes | |||
| -rw-r--r-- | contrib/macdeploy/README.md | 2 | ||||
| -rwxr-xr-x | contrib/macdeploy/custom_dsstore.py | 2 | ||||
| -rwxr-xr-x | contrib/macdeploy/detached-sig-create.sh | 2 | ||||
| -rw-r--r-- | contrib/macdeploy/fancy.plist | 2 | ||||
| -rwxr-xr-x | contrib/macdeploy/macdeployqtplus | 4 |
6 files changed, 6 insertions, 6 deletions
diff --git a/contrib/macdeploy/DS_Store b/contrib/macdeploy/DS_Store Binary files differindex 81842ea9d..aa06e795f 100755 --- a/contrib/macdeploy/DS_Store +++ b/contrib/macdeploy/DS_Store diff --git a/contrib/macdeploy/README.md b/contrib/macdeploy/README.md index 019c3d02b..e8b78d245 100644 --- a/contrib/macdeploy/README.md +++ b/contrib/macdeploy/README.md @@ -11,5 +11,5 @@ This script should not be run manually, instead, after building as usual: During the process, the disk image window will pop up briefly where the fancy settings are applied. This is normal, please do not interfere. -When finished, it will produce `Dogecoin-Core.dmg`. +When finished, it will produce `Discoin-Core.dmg`. diff --git a/contrib/macdeploy/custom_dsstore.py b/contrib/macdeploy/custom_dsstore.py index 0484e17ab..7f8007c1f 100755 --- a/contrib/macdeploy/custom_dsstore.py +++ b/contrib/macdeploy/custom_dsstore.py @@ -54,7 +54,7 @@ ds['.']['icvp'] = icvp ds['.']['vSrn'] = ('long', 1) ds['Applications']['Iloc'] = (370, 156) -ds['Dogecoin-Qt.app']['Iloc'] = (128, 156) +ds['Discoin-Qt.app']['Iloc'] = (128, 156) ds.flush() ds.close()
\ No newline at end of file diff --git a/contrib/macdeploy/detached-sig-create.sh b/contrib/macdeploy/detached-sig-create.sh index 3672684cb..559ef370a 100755 --- a/contrib/macdeploy/detached-sig-create.sh +++ b/contrib/macdeploy/detached-sig-create.sh @@ -6,7 +6,7 @@ set -e ROOTDIR=dist -BUNDLE="${ROOTDIR}/Dogecoin-Qt.app" +BUNDLE="${ROOTDIR}/Discoin-Qt.app" CODESIGN=codesign TEMPDIR=sign.temp TEMPLIST=${TEMPDIR}/signatures.txt diff --git a/contrib/macdeploy/fancy.plist b/contrib/macdeploy/fancy.plist index e14a531e8..24dbe166e 100644 --- a/contrib/macdeploy/fancy.plist +++ b/contrib/macdeploy/fancy.plist @@ -22,7 +22,7 @@ <integer>370</integer> <integer>156</integer> </array> - <key>Dogecoin-Qt.app</key> + <key>Discoin-Qt.app</key> <array> <integer>128</integer> <integer>156</integer> diff --git a/contrib/macdeploy/macdeployqtplus b/contrib/macdeploy/macdeployqtplus index 550f490d9..98f478b85 100755 --- a/contrib/macdeploy/macdeployqtplus +++ b/contrib/macdeploy/macdeployqtplus @@ -154,7 +154,7 @@ class FrameworkInfo(object): class ApplicationBundleInfo(object): def __init__(self, path): self.path = path - appName = "Dogecoin-Qt" + appName = "Discoin-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) @@ -602,7 +602,7 @@ else: # ------------------------------------------------ -target = os.path.join("dist", "Dogecoin-Qt.app") +target = os.path.join("dist", "Discoin-Qt.app") if verbose >= 2: print("+ Copying source bundle +") |