Browse Source

v0.5.6

recurring
Aditya Kulkarni 5 years ago
parent
commit
edc41d4100
  1. 6
      README.md
  2. BIN
      res/zec_qt_wallet_de.qm
  3. BIN
      res/zec_qt_wallet_es.qm
  4. BIN
      res/zec_qt_wallet_fr.qm
  5. BIN
      res/zec_qt_wallet_pt.qm
  6. 4
      src/scripts/dounifiedbuild.ps1
  7. 2
      src/version.h

6
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.5.deb
sudo dpkg -i linux-deb-zec-qt-wallet-v0.5.6.deb
sudo apt install -f
```
Or you can download and run the binaries directly.
```
tar -xvf zec-qt-wallet-v0.5.5.tar.gz
./zec-qt-wallet-v0.5.5/zec-qt-wallet
tar -xvf zec-qt-wallet-v0.5.6.tar.gz
./zec-qt-wallet-v0.5.6/zec-qt-wallet
```
### Windows

BIN
res/zec_qt_wallet_de.qm

Binary file not shown.

BIN
res/zec_qt_wallet_es.qm

Binary file not shown.

BIN
res/zec_qt_wallet_fr.qm

Binary file not shown.

BIN
res/zec_qt_wallet_pt.qm

Binary file not shown.

4
src/scripts/dounifiedbuild.ps1

@ -61,8 +61,8 @@ ssh $winserver "New-Item zqwbuild -itemtype directory" | Out-Null
# Same while copying the built msi. A straight scp pull from windows to here doesn't work,
# so we ssh to windows, and then scp push the file to here.
$myhostname = (hostname) | Out-String -NoNewline
Remove-Item -Path /tmp/zqwbuild -Recurse | Out-Null
New-Item -Path /tmp/zqwbuild -itemtype directory | Out-Null
Remove-Item -Path /tmp/zqwbuild -Recurse -ErrorAction Ignore | 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

2
src/version.h

@ -1 +1 @@
#define APP_VERSION "0.5.5"
#define APP_VERSION "0.5.6"

Loading…
Cancel
Save