diff --git a/README.md b/README.md index 28b2b4a..81b1bef 100644 --- a/README.md +++ b/README.md @@ -10,14 +10,14 @@ Head over to the releases page and grab the latest installers or binary. https:/ If you are on Debian/Ubuntu, please download the `.deb` package and install it. ``` -sudo dpkg -i linux-deb-zec-qt-wallet-v0.5.10.deb +sudo dpkg -i linux-deb-zec-qt-wallet-v0.5.11.deb sudo apt install -f ``` Or you can download and run the binaries directly. ``` -tar -xvf zec-qt-wallet-v0.5.10.tar.gz -./zec-qt-wallet-v0.5.10/zec-qt-wallet +tar -xvf zec-qt-wallet-v0.5.11.tar.gz +./zec-qt-wallet-v0.5.11/zec-qt-wallet ``` ### Windows diff --git a/res/zec_qt_wallet_de.qm b/res/zec_qt_wallet_de.qm index 7e96a2d..b8eae0f 100644 Binary files a/res/zec_qt_wallet_de.qm and b/res/zec_qt_wallet_de.qm differ diff --git a/res/zec_qt_wallet_es.qm b/res/zec_qt_wallet_es.qm index d5fbd28..1de609e 100644 Binary files a/res/zec_qt_wallet_es.qm and b/res/zec_qt_wallet_es.qm differ diff --git a/res/zec_qt_wallet_fr.qm b/res/zec_qt_wallet_fr.qm index cef7fde..d885b57 100644 Binary files a/res/zec_qt_wallet_fr.qm and b/res/zec_qt_wallet_fr.qm differ diff --git a/res/zec_qt_wallet_pt.qm b/res/zec_qt_wallet_pt.qm index 7f7dcea..8ad03f7 100644 Binary files a/res/zec_qt_wallet_pt.qm and b/res/zec_qt_wallet_pt.qm differ diff --git a/src/scripts/dounifiedbuild.ps1 b/src/scripts/dounifiedbuild.ps1 index e35066f..2d7bc4e 100644 --- a/src/scripts/dounifiedbuild.ps1 +++ b/src/scripts/dounifiedbuild.ps1 @@ -64,10 +64,14 @@ $myhostname = (hostname) | Out-String -NoNewline # Powershell seems not to be able to remove this directory for some reason! # Remove-Item -Path /tmp/zqwbuild -Recurse -ErrorAction Ignore | Out-Null bash "rm -rf /tmp/zqwbuild" 2>&1 | Out-Null -New-Item -Path /tmp/zqwbuild -itemtype directory | Out-Null -Copy-Item src /tmp/zqwbuild/ -Recurse -Copy-Item res /tmp/zqwbuild/ -Recurse -Copy-Item release /tmp/zqwbuild/ -Recurse +New-Item -Path /tmp/zqwbuild -itemtype directory -Force | Out-Null +Copy-Item src /tmp/zqwbuild/ -Recurse -Force +Copy-Item res /tmp/zqwbuild/ -Recurse -Force +Copy-Item release /tmp/zqwbuild/ -Recurse -Force + +# Remove some unnecessary stuff from the tmp directory to speed up copying +Remove-Item -Recurse -ErrorAction Ignore /tmp/zqwbuild/res/libsodium + ssh $winserver "scp -r ${myhostname}:/tmp/zqwbuild/* zqwbuild/" ssh $winserver "cd zqwbuild ; src/scripts/mkwininstaller.ps1 -version $version" >/dev/null if (!$?) { diff --git a/src/version.h b/src/version.h index 7b3c8fa..62a7c8f 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1 @@ -#define APP_VERSION "0.5.9-androidbeta" +#define APP_VERSION "0.5.11"