Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

Commit

Permalink
v1.7.15
Browse files Browse the repository at this point in the history
  • Loading branch information
adityapk00 committed Jul 15, 2022
1 parent c102b07 commit 7e5e0aa
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bin/printversion.ps1
Original file line number Diff line number Diff line change
@@ -1 +1 @@
echo "VERSION=1.7.14" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
echo "VERSION=1.7.15" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
2 changes: 1 addition & 1 deletion bin/printversion.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash
VERSION="1.7.14"
VERSION="1.7.15"
echo "VERSION=$VERSION" >> $GITHUB_ENV
2 changes: 1 addition & 1 deletion native/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion native/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ default-features = false
features = ["napi-6"]

[dependencies]
zecwalletlitelib = { git = "https://github.com/adityapk00/zecwallet-light-cli", rev = "3e1c4f2a31ed8f4e4163e31038b61bb0af27a416" }
zecwalletlitelib = { git = "https://github.com/adityapk00/zecwallet-light-cli", rev = "ce69377d163a548a0518237d84e677164280242d" }
#zecwalletlitelib = { path = "../../zecwallet-light-cli/lib" }
lazy_static = "1.4.0"
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "zecwallet-lite",
"productName": "Zecwallet Lite",
"version": "1.7.14",
"version": "1.7.15",
"private": true,
"description": "Zecwallet Lite",
"license": "MIT",
Expand Down
3 changes: 3 additions & 0 deletions src/components/LoadingScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,9 @@ class LoadingScreen extends Component<Props & RouteComponentProps, LoadingScreen
if (progress_blocks && !isNaN(progress_blocks)) {
const currentStatus = `Syncing: ${progress.toFixed(2)}%`;
me.setState({ currentStatus });
} else {
const currentStatus = <div>Syncing: 0.1%<br/>Please wait... This could take several minutes</div>;
me.setState({ currentStatus });
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ class Sidebar extends PureComponent<Props & RouteComponentProps, State> {
openErrorModal(
"Zecwallet Lite",
<div className={cstyles.verticalflex}>
<div className={cstyles.margintoplarge}>Zecwallet Lite v1.7.14</div>
<div className={cstyles.margintoplarge}>Zecwallet Lite v1.7.15</div>
<div className={cstyles.margintoplarge}>Built with Electron. Copyright (c) 2018-2021, Aditya Kulkarni.</div>
<div className={cstyles.margintoplarge}>
The MIT License (MIT) Copyright (c) 2018-2021 Zecwallet
Expand Down

0 comments on commit 7e5e0aa

Please sign in to comment.