diff --git a/.gitignore b/.gitignore index 9d6b98c..249d63b 100644 --- a/.gitignore +++ b/.gitignore @@ -34,5 +34,4 @@ workspace.code-workspace *.xcsettings .DS_Store *.mak -*.plist zcashd diff --git a/res/Info.plist b/res/Info.plist new file mode 100644 index 0000000..243983e --- /dev/null +++ b/res/Info.plist @@ -0,0 +1,40 @@ + + + + + CFBundleExecutable + zecwallet + CFBundleGetInfoString + Created by Qt/QMake + CFBundleIconFile + logo.icns + CFBundleIdentifier + com.yourcompany.zecwallet + CFBundlePackageType + APPL + CFBundleSignature + ???? + LSMinimumSystemVersion + 10.11 + NOTE + This file was generated by Qt/QMake. + NSPrincipalClass + NSApplication + NSSupportsAutomaticGraphicsSwitching + + + CFBundleURLTypes + + + CFBundleURLName + zcash URI + CFBundleURLSchemes + + zcash + + + + NSUIElement + + + \ No newline at end of file diff --git a/src/scripts/dounifiedbuild.ps1 b/src/scripts/dounifiedbuild.ps1 index abff66e..9ca0a02 100644 --- a/src/scripts/dounifiedbuild.ps1 +++ b/src/scripts/dounifiedbuild.ps1 @@ -37,7 +37,7 @@ Write-Host "[Building Linux + Windows]" Write-Host -NoNewline "Copying files.........." ssh $server "rm -rf /tmp/zqwbuild" ssh $server "mkdir /tmp/zqwbuild" -scp -r src/ res/ ./zec-qt-wallet.pro ./application.qrc ./LICENSE ./README.md ${server}:/tmp/zqwbuild/ | Out-Null +scp -r src/ singleapplication/ res/ ./zec-qt-wallet.pro ./application.qrc ./LICENSE ./README.md ${server}:/tmp/zqwbuild/ | Out-Null ssh $server "dos2unix -q /tmp/zqwbuild/src/scripts/mkrelease.sh" | Out-Null ssh $server "dos2unix -q /tmp/zqwbuild/src/version.h" Write-Host "[OK]" diff --git a/zec-qt-wallet.pro b/zec-qt-wallet.pro index b42d058..83af52b 100644 --- a/zec-qt-wallet.pro +++ b/zec-qt-wallet.pro @@ -107,6 +107,8 @@ TRANSLATIONS = res/zec_qt_wallet_es.ts \ include(singleapplication/singleapplication.pri) DEFINES += QAPPLICATION_CLASS=QApplication +QMAKE_INFO_PLIST = res/Info.plist + win32: RC_ICONS = res/icon.ico ICON = res/logo.icns