From 938fa70ac3a8bcdc80710db5841dea0084ea001e Mon Sep 17 00:00:00 2001 From: Thomas Zarebczan Date: Mon, 13 Aug 2018 16:01:33 -0400 Subject: [PATCH] rc bump + loading message Show initializing message after blockchain headers download status disappears --- package.json | 2 +- src/renderer/component/splash/view.jsx | 7 +------ 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index 8cede53fe..617e14888 100644 --- a/package.json +++ b/package.json @@ -132,7 +132,7 @@ "yarn": "^1.3" }, "lbrySettings": { - "lbrynetDaemonVersion": "0.21.1rc1", + "lbrynetDaemonVersion": "0.21.1rc2", "lbrynetDaemonUrlTemplate": "https://github.com/lbryio/lbry/releases/download/vDAEMONVER/lbrynet-daemon-vDAEMONVER-OSNAME.zip", "lbrynetDaemonDir": "static/daemon", "lbrynetDaemonFileName": "lbrynet-daemon" diff --git a/src/renderer/component/splash/view.jsx b/src/renderer/component/splash/view.jsx index 07c1deec6..d2ea7b937 100644 --- a/src/renderer/component/splash/view.jsx +++ b/src/renderer/component/splash/view.jsx @@ -110,12 +110,7 @@ export class SplashScreen extends React.PureComponent { message: __('Blockchain Sync'), details: __(format, status.wallet.blocks_behind), }); - } else if ( - status.blockchain_headers && - status.blockchain_headers.download_progress === 100 && - status.wallet && - status.wallet.blocks_behind === 0 - ) { + } else if (status.wallet && status.wallet.blocks_behind === 0) { this.setState({ message: 'Network Loading', details: 'Initializing LBRY service...',