diff options
| author | Jonas Schnelli <[email protected]> | 2015-06-02 13:24:22 +0200 |
|---|---|---|
| committer | Jonas Schnelli <[email protected]> | 2015-06-03 10:06:10 +0200 |
| commit | 0a32a9347e12a8d1d4a46bf9a1d5b3ae13bbe501 (patch) | |
| tree | 07910fa5279f5c8834e40287b955696ab45646c8 /contrib/macdeploy | |
| parent | [OSX] revert renaming of Bitcoin-Qt.app (diff) | |
| download | discoin-0a32a9347e12a8d1d4a46bf9a1d5b3ae13bbe501.tar.xz discoin-0a32a9347e12a8d1d4a46bf9a1d5b3ae13bbe501.zip | |
OSX: use "Bitcoin Core" as Bundle Display Name
Diffstat (limited to 'contrib/macdeploy')
| -rw-r--r-- | contrib/macdeploy/Base.lproj/InfoPlist.strings | 1 | ||||
| -rw-r--r-- | contrib/macdeploy/DS_Store | bin | 10244 -> 10244 bytes | |||
| -rwxr-xr-x | contrib/macdeploy/macdeployqtplus | 4 |
3 files changed, 3 insertions, 2 deletions
diff --git a/contrib/macdeploy/Base.lproj/InfoPlist.strings b/contrib/macdeploy/Base.lproj/InfoPlist.strings new file mode 100644 index 000000000..b259ea141 --- /dev/null +++ b/contrib/macdeploy/Base.lproj/InfoPlist.strings @@ -0,0 +1 @@ +{ CFBundleDisplayName = "Bitcoin Core"; CFBundleName = "Bitcoin Core"; } diff --git a/contrib/macdeploy/DS_Store b/contrib/macdeploy/DS_Store Binary files differindex ca19b207c..db9d16f1d 100644 --- a/contrib/macdeploy/DS_Store +++ b/contrib/macdeploy/DS_Store diff --git a/contrib/macdeploy/macdeployqtplus b/contrib/macdeploy/macdeployqtplus index 3ac44d024..2253c40af 100755 --- a/contrib/macdeploy/macdeployqtplus +++ b/contrib/macdeploy/macdeployqtplus @@ -757,7 +757,7 @@ if config.dmg is not None: if fancy is None: try: - runHDIUtil("create", dmg_name, srcfolder="dist", format="UDBZ", volname=app_bundle_name, ov=True) + runHDIUtil("create", dmg_name, srcfolder="dist", format="UDBZ", volname="Bitcoin-Core", ov=True) except subprocess.CalledProcessError as e: sys.exit(e.returncode) else: @@ -772,7 +772,7 @@ if config.dmg is not None: if verbose >= 3: print "Creating temp image for modification..." try: - runHDIUtil("create", dmg_name + ".temp", srcfolder="dist", format="UDRW", size=size, volname=app_bundle_name, ov=True) + runHDIUtil("create", dmg_name + ".temp", srcfolder="dist", format="UDRW", size=size, volname="Bitcoin-Core", ov=True) except subprocess.CalledProcessError as e: sys.exit(e.returncode) |