Skip to content

Commit 6d49778

Browse files
committed
v1.7.8
1 parent 1686088 commit 6d49778

7 files changed

+8
-8
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ Head over to the releases page and grab the latest installers or binary. https:/
1414
If you are on Debian/Ubuntu, please download the '.AppImage' package and just run it.
1515

1616
```
17-
./Zecwallet.Fullnode-1.7.7.AppImage
17+
./Zecwallet.Fullnode-1.7.8.AppImage
1818
```
1919

2020
If you prefer to install a `.deb` package, that is also available.
2121

2222
```
23-
sudo apt install -f ./zecwallet_1.7.7_amd64.deb
23+
sudo apt install -f ./zecwallet_1.7.8_amd64.deb
2424
```
2525

2626
### Windows

app/companion.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ export default class CompanionAppListener {
389389
maxzspendable,
390390
tokenName,
391391
zecprice,
392-
serverversion: '1.7.7'
392+
serverversion: '1.7.8'
393393
};
394394

395395
return JSON.stringify(resp);

app/components/Sidebar.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ class Sidebar extends PureComponent<Props, State> {
225225
openErrorModal(
226226
'Zecwallet Fullnode',
227227
<div className={cstyles.verticalflex}>
228-
<div className={cstyles.margintoplarge}>Zecwallet Fullnode v1.7.7</div>
228+
<div className={cstyles.margintoplarge}>Zecwallet Fullnode v1.7.8</div>
229229
<div className={cstyles.margintoplarge}>Built with Electron. Copyright (c) 2018-2021, Aditya Kulkarni.</div>
230230
<div className={cstyles.margintoplarge}>
231231
The MIT License (MIT) Copyright (c) 2018-2021 Zecwallet

app/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "zecwallet",
33
"productName": "Zecwallet Fullnode",
4-
"version": "1.7.7",
4+
"version": "1.7.8",
55
"description": "Zecwallet Fullnode",
66
"main": "./main.prod.js",
77
"author": {

bin/printversion.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
echo "VERSION=1.7.7" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
1+
echo "VERSION=1.7.8" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append

bin/printversion.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
2-
VERSION="1.7.7"
2+
VERSION="1.7.8"
33
echo "VERSION=$VERSION" >> $GITHUB_ENV

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "zecwallet",
33
"productName": "Zecwallet Fullnode",
4-
"version": "1.7.7",
4+
"version": "1.7.8",
55
"description": "Zecwallet Fullnode (Electron version)",
66
"scripts": {
77
"build": "concurrently \"yarn build-main\" \"yarn build-renderer\"",

0 commit comments

Comments
 (0)