diff options
| author | Michi Lumin <[email protected]> | 2018-10-16 22:31:35 -0600 |
|---|---|---|
| committer | Ross Nicoll <[email protected]> | 2019-03-25 05:36:12 +0000 |
| commit | 92bff56e237e6c36572aff75886a061b2aead3b9 (patch) | |
| tree | e90ba2c13275dbca90277ecab8a3cc264f192d3f /contrib/macdeploy/custom_dsstore.py | |
| parent | Update fancy.plist to reflect Dogecoin-qt (diff) | |
| download | discoin-92bff56e237e6c36572aff75886a061b2aead3b9.tar.xz discoin-92bff56e237e6c36572aff75886a061b2aead3b9.zip | |
Changes for mac installer branding - See notes
These changes are necessary for the deploy scripts to see the app correctly. Also includes our background image. Note that DS_Store should be generated, but I'm including it so that it should be there in any case; though it may need to be edited - please give it a try.
Diffstat (limited to 'contrib/macdeploy/custom_dsstore.py')
| -rwxr-xr-x | contrib/macdeploy/custom_dsstore.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/macdeploy/custom_dsstore.py b/contrib/macdeploy/custom_dsstore.py index e6ecabace..3c2a65f19 100755 --- a/contrib/macdeploy/custom_dsstore.py +++ b/contrib/macdeploy/custom_dsstore.py @@ -45,8 +45,8 @@ alias = Alias.from_bytes(icvp['backgroundImageAlias']) alias.volume.name = package_name_ns alias.volume.posix_path = '/Volumes/' + package_name_ns alias.volume.disk_image_alias.target.filename = package_name_ns + '.temp.dmg' -alias.volume.disk_image_alias.target.carbon_path = 'Macintosh HD:Users:\x00bitcoinuser:\x00Documents:\x00bitcoin:\x00bitcoin:\x00' + package_name_ns + '.temp.dmg' -alias.volume.disk_image_alias.target.posix_path = 'Users/bitcoinuser/Documents/bitcoin/bitcoin/' + package_name_ns + '.temp.dmg' +alias.volume.disk_image_alias.target.carbon_path = 'Macintosh HD:Users:\x00dogecoinuser:\x00Documents:\x00dogecoin:\x00dogecoin:\x00' + package_name_ns + '.temp.dmg' +alias.volume.disk_image_alias.target.posix_path = 'Users/dogecoinuser/Documents/dogecoin/dogecoin/' + package_name_ns + '.temp.dmg' alias.target.carbon_path = package_name_ns + ':.background:\x00background.tiff' icvp['backgroundImageAlias'] = biplist.Data(alias.to_bytes()) ds['.']['icvp'] = icvp @@ -54,7 +54,7 @@ ds['.']['icvp'] = icvp ds['.']['vSrn'] = ('long', 1) ds['Applications']['Iloc'] = (370, 156) -ds['Bitcoin-Qt.app']['Iloc'] = (128, 156) +ds['Dogecoin-Qt.app']['Iloc'] = (128, 156) ds.flush() -ds.close() +ds.close()
\ No newline at end of file |