Browse Source

error messages

recurring
adityapk 6 years ago
parent
commit
2f66266c03
  1. 2
      src/mainwindow.cpp
  2. 3
      src/scripts/mkwinrelease.ps1

2
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);

3
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

Loading…
Cancel
Save