diff options
| author | Sporklin <[email protected]> | 2015-08-10 16:22:38 -0400 |
|---|---|---|
| committer | J Ross Nicoll <[email protected]> | 2015-10-31 14:49:40 +0000 |
| commit | 4595176f4023b065a53277d91867424d46e84a90 (patch) | |
| tree | d218a956b73e4b8956ad4eb4f7bddaefbc02d7fa | |
| parent | Update QT client messages and corresponding translations (diff) | |
| download | discoin-4595176f4023b065a53277d91867424d46e84a90.tar.xz discoin-4595176f4023b065a53277d91867424d46e84a90.zip | |
Fixed Windows and Mac setup scripts.
| -rw-r--r-- | share/qt/Info.plist.in | 22 | ||||
| -rw-r--r-- | share/setup.nsi.in | 6 |
2 files changed, 14 insertions, 14 deletions
diff --git a/share/qt/Info.plist.in b/share/qt/Info.plist.in index a389332a5..0bbdd2584 100644 --- a/share/qt/Info.plist.in +++ b/share/qt/Info.plist.in @@ -17,7 +17,7 @@ <string>APPL</string> <key>CFBundleGetInfoString</key> - <string>@CLIENT_VERSION_MAJOR@.@CLIENT_VERSION_MINOR@.@CLIENT_VERSION_REVISION@, Copyright © 2009-@COPYRIGHT_YEAR@ The Bitcoin Core developers</string> + <string>@CLIENT_VERSION_MAJOR@.@CLIENT_VERSION_MINOR@.@CLIENT_VERSION_REVISION@, Copyright © 2009-@COPYRIGHT_YEAR@ The Bitcoin Core developers, Copyright © 2013-@COPYRIGHT_YEAR@ The Dogecoin Core developers</string> <key>CFBundleShortVersionString</key> <string>@CLIENT_VERSION_MAJOR@.@CLIENT_VERSION_MINOR@.@CLIENT_VERSION_REVISION@</string> @@ -29,16 +29,16 @@ <string>????</string> <key>CFBundleExecutable</key> - <string>Bitcoin-Qt</string> + <string>Dogecoin-Qt</string> <key>CFBundleName</key> - <string>Bitcoin-Qt</string> + <string>Dogecoin-Qt</string> <key>LSHasLocalizedDisplayName</key> <true/> <key>CFBundleIdentifier</key> - <string>org.bitcoinfoundation.Bitcoin-Qt</string> + <string>com.dogecoin.wallet-qt</string> <key>CFBundleURLTypes</key> <array> @@ -46,10 +46,10 @@ <key>CFBundleTypeRole</key> <string>Editor</string> <key>CFBundleURLName</key> - <string>org.bitcoin.BitcoinPayment</string> + <string>com.dogecoin.DogecoinPayment</string> <key>CFBundleURLSchemes</key> <array> - <string>bitcoin</string> + <string>dogecoin</string> </array> </dict> </array> @@ -58,9 +58,9 @@ <array> <dict> <key>UTTypeIdentifier</key> - <string>org.bitcoin.paymentrequest</string> + <string>com.dogecoin.paymentrequest</string> <key>UTTypeDescription</key> - <string>Bitcoin payment request</string> + <string>Dogecoin payment request</string> <key>UTTypeConformsTo</key> <array> <string>public.data</string> @@ -68,10 +68,10 @@ <key>UTTypeTagSpecification</key> <dict> <key>public.mime-type</key> - <string>application/x-bitcoin-payment-request</string> + <string>application/dogecoin-paymentrequest</string> <key>public.filename-extension</key> <array> - <string>bitcoinpaymentrequest</string> + <string>dogecoinpaymentrequest</string> </array> </dict> </dict> @@ -84,7 +84,7 @@ <string>Editor</string> <key>LSItemContentTypes</key> <array> - <string>org.bitcoin.paymentrequest</string> + <string>com.dogecoin.paymentrequest</string> </array> <key>LSHandlerRank</key> <string>Owner</string> diff --git a/share/setup.nsi.in b/share/setup.nsi.in index 3d2df8e1c..6b66c7fa0 100644 --- a/share/setup.nsi.in +++ b/share/setup.nsi.in @@ -20,7 +20,7 @@ SetCompressor /SOLID lzma !define MUI_STARTMENUPAGE_REGISTRY_KEY ${REGKEY} !define MUI_STARTMENUPAGE_REGISTRY_VALUENAME StartMenuGroup !define MUI_STARTMENUPAGE_DEFAULTFOLDER "@PACKAGE_NAME@" -!define MUI_FINISHPAGE_RUN $INSTDIR\bitcoin-qt.exe +!define MUI_FINISHPAGE_RUN $INSTDIR\dogecoin-qt.exe !define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\modern-uninstall.ico" !define MUI_UNWELCOMEFINISHPAGE_BITMAP "@abs_top_srcdir@/share/pixmaps/nsis-wizard.bmp" !define MUI_UNFINISHPAGE_NOAUTOCLOSE @@ -48,7 +48,7 @@ Var StartMenuGroup !insertmacro MUI_LANGUAGE English # Installer attributes -OutFile @abs_top_srcdir@/bitcoin-${VERSION}-win@[email protected] +OutFile @abs_top_srcdir@/dogecoin-${VERSION}-win@[email protected] !if "@WINDOWS_BITS@" == "64" InstallDir $PROGRAMFILES64\Dogecoin !else @@ -73,7 +73,7 @@ ShowUninstDetails show Section -Main SEC0000 SetOutPath $INSTDIR SetOverwrite on - File @abs_top_srcdir@/release/bitcoin-qt.exe + File @abs_top_srcdir@/release/dogecoin-qt.exe File /oname=COPYING.txt @abs_top_srcdir@/COPYING File /oname=readme.txt @abs_top_srcdir@/doc/README_windows.txt SetOutPath $INSTDIR\daemon |