Skip to content

Commit 159b3b4

Browse files
committed
v1.4.7
1 parent f9063d4 commit 159b3b4

13 files changed

+9
-13
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.4.6.AppImage
17+
./Zecwallet.Fullnode-1.4.7.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.4.6_amd64.deb
23+
sudo apt install -f ./zecwallet_1.4.7_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.4.6'
392+
serverversion: '1.4.7'
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.4.6</div>
228+
<div className={cstyles.margintoplarge}>Zecwallet Fullnode v1.4.7</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.4.6",
4+
"version": "1.4.7",
55
"description": "Zecwallet Fullnode",
66
"main": "./main.prod.js",
77
"author": {

bin/linux/zcash-cli

819 KB
Binary file not shown.

bin/linux/zcashd

879 KB
Binary file not shown.

bin/mac/zcash-cli

16 KB
Binary file not shown.

bin/mac/zcashd

531 KB
Binary file not shown.

bin/printversion.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
echo "VERSION=1.4.6" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
1+
echo "VERSION=1.4.7" | 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.4.6"
2+
VERSION="1.4.7"
33
echo "VERSION=$VERSION" >> $GITHUB_ENV

bin/win/zcash-cli.exe

811 KB
Binary file not shown.

bin/win/zcashd.exe

891 KB
Binary file not shown.

package.json

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "zecwallet",
33
"productName": "Zecwallet Fullnode",
4-
"version": "1.4.6",
4+
"version": "1.4.7",
55
"description": "Zecwallet Fullnode (Electron version)",
66
"scripts": {
77
"build": "concurrently \"yarn build-main\" \"yarn build-renderer\"",
@@ -179,14 +179,10 @@
179179
},
180180
"keywords": [
181181
"electron",
182-
"boilerplate",
183182
"react",
184-
"redux",
185183
"flow",
186184
"sass",
187-
"webpack",
188-
"hot",
189-
"reload"
185+
"webpack"
190186
],
191187
"homepage": "https://github.com/adityapk00/zecwallet-electron#readme",
192188
"jest": {

0 commit comments

Comments
 (0)