Merge release into master #1880
8 changed files with 104 additions and 60 deletions
28
CHANGELOG.md
28
CHANGELOG.md
|
@ -15,10 +15,30 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
|
||||||
* Recommended content on file viewer page ([#1845](https://github.com/lbryio/lbry-desktop/pull/1845))
|
* Recommended content on file viewer page ([#1845](https://github.com/lbryio/lbry-desktop/pull/1845))
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
* Pass error message from spee.ch API during thumbnail upload ([#1840](https://github.com/lbryio/lbry-desktop/pull/1840))
|
* Pass error message from spee.ch API during thumbnail upload ([#1840](https://github.com/lbryio/lbry-desktop/pull/1840))
|
||||||
* Use router pattern for rendering file viewer ([#1544](https://github.com/lbryio/lbry-desktop/pull/1544))
|
* Use router pattern for rendering file viewer ([#1544](https://github.com/lbryio/lbry-desktop/pull/1544))
|
||||||
* Missing word "to" added to the Bid Help Text (#1854)
|
* Missing word "to" added to the Bid Help Text (#1854)
|
||||||
* Updated to electron@2 ([#1858](https://github.com/lbryio/lbry-desktop/pull/1858))
|
* Updated to electron@2 ([#1858](https://github.com/lbryio/lbry-desktop/pull/1858))
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
|
||||||
|
## [0.24.0] - 2018-08-04
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
* Issue where the publish page would show "Editing" on a new publish ([#1864](https://github.com/lbryio/lbry-desktop/pull/1864))
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
* Upgrade LBRY Protocol to [version 0.21.1](https://github.com/lbryio/lbry/releases/tag/v0.21.1) which should improve download speed and availability.
|
||||||
|
* Show label when publish button is disabled while uploading thumbnail to spee.ch ([#1867](https://github.com/lbryio/lbry-desktop/pull/1867))
|
||||||
|
|
||||||
|
## [0.23.1] - 2018-08-01
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
* Fix ShapeShift integration ([#1842](https://github.com/lbryio/lbry-desktop/pull/1842))
|
||||||
|
|
||||||
|
|
||||||
|
## [0.23.0] - 2018-07-25
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
* **Wallet -> Get Credits** page now shows correct ShapeShift status when it's avialable ([#1836](https://github.com/lbryio/lbry-desktop/issues/1836))
|
* **Wallet -> Get Credits** page now shows correct ShapeShift status when it's avialable ([#1836](https://github.com/lbryio/lbry-desktop/issues/1836))
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "LBRY",
|
"name": "LBRY",
|
||||||
"version": "0.23.1",
|
"version": "0.24.0",
|
||||||
"description": "A browser for the LBRY network, a digital marketplace controlled by its users.",
|
"description": "A browser for the LBRY network, a digital marketplace controlled by its users.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"lbry"
|
"lbry"
|
||||||
|
@ -132,7 +132,7 @@
|
||||||
"yarn": "^1.3"
|
"yarn": "^1.3"
|
||||||
},
|
},
|
||||||
"lbrySettings": {
|
"lbrySettings": {
|
||||||
"lbrynetDaemonVersion": "0.20.4",
|
"lbrynetDaemonVersion": "0.21.1",
|
||||||
"lbrynetDaemonUrlTemplate": "https://github.com/lbryio/lbry/releases/download/vDAEMONVER/lbrynet-daemon-vDAEMONVER-OSNAME.zip",
|
"lbrynetDaemonUrlTemplate": "https://github.com/lbryio/lbry/releases/download/vDAEMONVER/lbrynet-daemon-vDAEMONVER-OSNAME.zip",
|
||||||
"lbrynetDaemonDir": "static/daemon",
|
"lbrynetDaemonDir": "static/daemon",
|
||||||
"lbrynetDaemonFileName": "lbrynet-daemon"
|
"lbrynetDaemonFileName": "lbrynet-daemon"
|
||||||
|
|
|
@ -258,7 +258,14 @@ class PublishForm extends React.PureComponent<Props> {
|
||||||
} = this.props;
|
} = this.props;
|
||||||
|
|
||||||
// If they are editing, they don't need a new file chosen
|
// If they are editing, they don't need a new file chosen
|
||||||
const formValidLessFile = name && !nameError && title && bid && !bidError && tosAccepted && !(uploadThumbnailStatus === THUMBNAIL_STATUSES.IN_PROGRESS);
|
const formValidLessFile =
|
||||||
|
name &&
|
||||||
|
!nameError &&
|
||||||
|
title &&
|
||||||
|
bid &&
|
||||||
|
!bidError &&
|
||||||
|
tosAccepted &&
|
||||||
|
!(uploadThumbnailStatus === THUMBNAIL_STATUSES.IN_PROGRESS);
|
||||||
return editingURI && !filePath ? isStillEditing && formValidLessFile : formValidLessFile;
|
return editingURI && !filePath ? isStillEditing && formValidLessFile : formValidLessFile;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -291,6 +298,9 @@ class PublishForm extends React.PureComponent<Props> {
|
||||||
{uploadThumbnailStatus === THUMBNAIL_STATUSES.IN_PROGRESS
|
{uploadThumbnailStatus === THUMBNAIL_STATUSES.IN_PROGRESS
|
||||||
&& <div>{__('Please wait for thumbnail to finish uploading')}</div>}
|
&& <div>{__('Please wait for thumbnail to finish uploading')}</div>}
|
||||||
{!tosAccepted && <div>{__('You must agree to the terms of service')}</div>}
|
{!tosAccepted && <div>{__('You must agree to the terms of service')}</div>}
|
||||||
|
{uploadThumbnailStatus === THUMBNAIL_STATUSES.IN_PROGRESS && (
|
||||||
|
<div>{__('Please wait for thumbnail to finish uploading')}</div>
|
||||||
|
)}
|
||||||
{!!editingURI &&
|
{!!editingURI &&
|
||||||
!isStillEditing &&
|
!isStillEditing &&
|
||||||
!filePath && <div>{__('You need to reselect a file after changing the LBRY URL')}</div>}
|
!filePath && <div>{__('You need to reselect a file after changing the LBRY URL')}</div>}
|
||||||
|
|
|
@ -7,16 +7,18 @@ type Props = {
|
||||||
dark?: boolean, // always a dark spinner
|
dark?: boolean, // always a dark spinner
|
||||||
light?: boolean, // always a light spinner
|
light?: boolean, // always a light spinner
|
||||||
theme: string,
|
theme: string,
|
||||||
|
type: ?string,
|
||||||
};
|
};
|
||||||
|
|
||||||
const Spinner = (props: Props) => {
|
const Spinner = (props: Props) => {
|
||||||
const { dark, light, theme } = props;
|
const { dark, light, theme, type } = props;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
className={classnames('spinner', {
|
className={classnames('spinner', {
|
||||||
'spinner--dark': !light && (dark || theme === LIGHT_THEME),
|
'spinner--dark': !light && (dark || theme === LIGHT_THEME),
|
||||||
'spinner--light': !dark && (light || theme === DARK_THEME),
|
'spinner--light': !dark && (light || theme === DARK_THEME),
|
||||||
|
'spinner--splash': type === 'splash',
|
||||||
})}
|
})}
|
||||||
>
|
>
|
||||||
<div className="rect rect1" />
|
<div className="rect rect1" />
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
import * as React from 'react';
|
import * as React from 'react';
|
||||||
import Icon from 'component/common/icon';
|
import Icon from 'component/common/icon';
|
||||||
import * as icons from 'constants/icons';
|
import * as icons from 'constants/icons';
|
||||||
|
import Spinner from 'component/spinner';
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
message: string,
|
message: string,
|
||||||
|
@ -33,6 +34,7 @@ class LoadScreen extends React.PureComponent<Props> {
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{details && <div className="load-screen__details">{details}</div>}
|
{details && <div className="load-screen__details">{details}</div>}
|
||||||
|
<Spinner type="splash" />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,14 +1,17 @@
|
||||||
|
// @flow
|
||||||
import * as React from 'react';
|
import * as React from 'react';
|
||||||
import { Lbry, MODALS } from 'lbry-redux';
|
import { Lbry, MODALS } from 'lbry-redux';
|
||||||
import LoadScreen from './internal/load-screen';
|
|
||||||
import ModalWalletUnlock from 'modal/modalWalletUnlock';
|
import ModalWalletUnlock from 'modal/modalWalletUnlock';
|
||||||
import ModalIncompatibleDaemon from 'modal/modalIncompatibleDaemon';
|
import ModalIncompatibleDaemon from 'modal/modalIncompatibleDaemon';
|
||||||
import ModalUpgrade from 'modal/modalUpgrade';
|
import ModalUpgrade from 'modal/modalUpgrade';
|
||||||
import ModalDownloading from 'modal/modalDownloading';
|
import ModalDownloading from 'modal/modalDownloading';
|
||||||
|
import LoadScreen from './internal/load-screen';
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
checkDaemonVersion: () => Promise<any>,
|
checkDaemonVersion: () => Promise<any>,
|
||||||
notifyUnlockWallet: () => Promise<any>,
|
notifyUnlockWallet: () => Promise<any>,
|
||||||
|
daemonVersionMatched: boolean,
|
||||||
|
onReadyToLaunch: () => void,
|
||||||
notification: ?{
|
notification: ?{
|
||||||
id: string,
|
id: string,
|
||||||
},
|
},
|
||||||
|
@ -18,7 +21,6 @@ type State = {
|
||||||
details: string,
|
details: string,
|
||||||
message: string,
|
message: string,
|
||||||
isRunning: boolean,
|
isRunning: boolean,
|
||||||
isLagging: boolean,
|
|
||||||
launchedModal: boolean,
|
launchedModal: boolean,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -27,34 +29,59 @@ export class SplashScreen extends React.PureComponent<Props, State> {
|
||||||
super(props);
|
super(props);
|
||||||
|
|
||||||
this.state = {
|
this.state = {
|
||||||
details: __('Starting daemon'),
|
details: __('Starting up'),
|
||||||
message: __('Connecting'),
|
message: __('Connecting'),
|
||||||
isRunning: false,
|
isRunning: false,
|
||||||
isLagging: false,
|
|
||||||
launchedModal: false,
|
launchedModal: false,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
updateStatus() {
|
componentDidMount() {
|
||||||
Lbry.status().then(status => {
|
const { checkDaemonVersion } = this.props;
|
||||||
this._updateStatusCallback(status);
|
|
||||||
|
Lbry.connect()
|
||||||
|
.then(checkDaemonVersion)
|
||||||
|
.then(() => {
|
||||||
|
this.updateStatus();
|
||||||
|
})
|
||||||
|
.catch(() => {
|
||||||
|
this.setState({
|
||||||
|
message: __('Connection Failure'),
|
||||||
|
details: __(
|
||||||
|
'Try closing all LBRY processes and starting again. If this still happens, your anti-virus software or firewall may be preventing LBRY from connecting. Contact hello@lbry.io if you think this is a software bug.'
|
||||||
|
),
|
||||||
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
_updateStatusCallback(status) {
|
updateStatus() {
|
||||||
|
Lbry.status().then(status => {
|
||||||
|
this.updateStatusCallback(status);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
updateStatusCallback(status) {
|
||||||
const { notifyUnlockWallet } = this.props;
|
const { notifyUnlockWallet } = this.props;
|
||||||
const { launchedModal } = this.state;
|
const { launchedModal } = this.state;
|
||||||
|
if (!status.wallet.is_unlocked) {
|
||||||
|
this.setState({
|
||||||
|
message: __('Unlock Wallet'),
|
||||||
|
details: __('Please unlock your wallet to proceed.'),
|
||||||
|
isRunning: true,
|
||||||
|
});
|
||||||
|
|
||||||
const startupStatus = status.startup_status;
|
if (launchedModal === false) {
|
||||||
if (startupStatus.code === 'started') {
|
this.setState({ launchedModal: true }, () => notifyUnlockWallet());
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (status.is_running) {
|
||||||
// Wait until we are able to resolve a name before declaring
|
// Wait until we are able to resolve a name before declaring
|
||||||
// that we are done.
|
// that we are done.
|
||||||
// TODO: This is a hack, and the logic should live in the daemon
|
// TODO: This is a hack, and the logic should live in the daemon
|
||||||
// to give us a better sense of when we are actually started
|
// to give us a better sense of when we are actually started
|
||||||
this.setState({
|
this.setState({
|
||||||
message: __('Testing Network'),
|
|
||||||
details: __('Waiting for name resolution'),
|
|
||||||
isLagging: false,
|
|
||||||
isRunning: true,
|
isRunning: true,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -69,30 +96,23 @@ export class SplashScreen extends React.PureComponent<Props, State> {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (status.blockchain_status && status.blockchain_status.blocks_behind > 0) {
|
if (status.blockchain_headers && status.blockchain_headers.download_progress < 100) {
|
||||||
const format =
|
|
||||||
status.blockchain_status.blocks_behind == 1 ? '%s block behind' : '%s blocks behind';
|
|
||||||
this.setState({
|
this.setState({
|
||||||
message: __('Blockchain Sync'),
|
message: __('Blockchain Sync'),
|
||||||
details: __(format, status.blockchain_status.blocks_behind),
|
details: `${__('Catching up with the blockchain')} (${
|
||||||
isLagging: startupStatus.is_lagging,
|
status.blockchain_headers.download_progress
|
||||||
|
}%)`,
|
||||||
});
|
});
|
||||||
} else if (startupStatus.code === 'waiting_for_wallet_unlock') {
|
} else if (status.wallet && status.wallet.blocks_behind > 0) {
|
||||||
|
const format = status.wallet.blocks_behind === 1 ? '%s block behind' : '%s blocks behind';
|
||||||
this.setState({
|
this.setState({
|
||||||
message: __('Unlock Wallet'),
|
message: __('Blockchain Sync'),
|
||||||
details: __('Please unlock your wallet to proceed.'),
|
details: __(format, status.wallet.blocks_behind),
|
||||||
isLagging: false,
|
|
||||||
isRunning: true,
|
|
||||||
});
|
});
|
||||||
|
} else if (status.wallet && status.wallet.blocks_behind === 0) {
|
||||||
if (launchedModal === false) {
|
|
||||||
this.setState({ launchedModal: true }, () => notifyUnlockWallet());
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
this.setState({
|
this.setState({
|
||||||
message: __('Network Loading'),
|
message: 'Network Loading',
|
||||||
details: startupStatus.message + (startupStatus.is_lagging ? '' : '...'),
|
details: 'Initializing LBRY service...',
|
||||||
isLagging: startupStatus.is_lagging,
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
|
@ -100,34 +120,16 @@ export class SplashScreen extends React.PureComponent<Props, State> {
|
||||||
}, 500);
|
}, 500);
|
||||||
}
|
}
|
||||||
|
|
||||||
componentDidMount() {
|
|
||||||
const { checkDaemonVersion } = this.props;
|
|
||||||
|
|
||||||
Lbry.connect()
|
|
||||||
.then(checkDaemonVersion)
|
|
||||||
.then(() => {
|
|
||||||
this.updateStatus();
|
|
||||||
})
|
|
||||||
.catch(() => {
|
|
||||||
this.setState({
|
|
||||||
isLagging: true,
|
|
||||||
message: __('Connection Failure'),
|
|
||||||
details: __(
|
|
||||||
'Try closing all LBRY processes and starting again. If this still happens, your anti-virus software or firewall may be preventing LBRY from connecting. Contact hello@lbry.io if you think this is a software bug.'
|
|
||||||
),
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const { notification } = this.props;
|
const { notification } = this.props;
|
||||||
const { message, details, isLagging, isRunning } = this.state;
|
const { message, details, isRunning } = this.state;
|
||||||
|
|
||||||
const notificationId = notification && notification.id;
|
const notificationId = notification && notification.id;
|
||||||
|
|
||||||
|
// {notificationId === MODALS.WALLET_UNLOCK && <ModalWalletUnlock />}
|
||||||
return (
|
return (
|
||||||
<React.Fragment>
|
<React.Fragment>
|
||||||
<LoadScreen message={message} details={details} isWarning={isLagging} />
|
<LoadScreen message={message} details={details} />
|
||||||
{/* Temp hack: don't show any modals on splash screen daemon is running;
|
{/* Temp hack: don't show any modals on splash screen daemon is running;
|
||||||
daemon doesn't let you quit during startup, so the "Quit" buttons
|
daemon doesn't let you quit during startup, so the "Quit" buttons
|
||||||
in the modals won't work. */}
|
in the modals won't work. */}
|
||||||
|
|
|
@ -65,9 +65,9 @@ class HelpPage extends React.PureComponent<Props, State> {
|
||||||
versionInfo: info,
|
versionInfo: info,
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
Lbry.status({ session_status: true }).then(info => {
|
Lbry.status().then(info => {
|
||||||
this.setState({
|
this.setState({
|
||||||
lbryId: info.lbry_id,
|
lbryId: info.installation_id,
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -42,6 +42,14 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.spinner--splash {
|
||||||
|
margin-top: $spacing-vertical;
|
||||||
|
|
||||||
|
.rect {
|
||||||
|
background-color: var(--color-white);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@keyframes sk-stretchdelay {
|
@keyframes sk-stretchdelay {
|
||||||
0%,
|
0%,
|
||||||
40%,
|
40%,
|
||||||
|
|
Loading…
Reference in a new issue