diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index ea2a763..443fc0e 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -138,7 +138,7 @@ void MainWindow::setupSettingsModal() { settings.rpcpassword->setEnabled(false); } else { - settings.confMsg->setText("No local zcash.conf found. Please configure manually."); + settings.confMsg->setText("No local zcash.conf found. Please configure connection manually."); settings.hostname->setEnabled(true); settings.port->setEnabled(true); settings.rpcuser->setEnabled(true); diff --git a/src/scripts/mkwinrelease.ps1 b/src/scripts/mkwinrelease.ps1 index 3388161..2d67496 100644 --- a/src/scripts/mkwinrelease.ps1 +++ b/src/scripts/mkwinrelease.ps1 @@ -19,7 +19,8 @@ New-Item release/$target -itemtype directory | Out-Null Move-Item release/zcash-qt-wallet.exe release/$target | Out-Null echo "Copying" -& "$Env:QT_STATIC\bin\windeployqt.exe" release/$target/zcash-qt-wallet.exe *>$null +# No need for deploy, since we're using a static Qt5 library +# & "$Env:QT_STATIC\bin\windeployqt.exe" release/$target/zcash-qt-wallet.exe *>$null Copy-Item LICENSE release/$target | Out-Null Copy-Item README.md release/$target | Out-Null