Merge branch 'master' into refresh-fix

This commit is contained in:
Jeremy Kauffman 2017-07-24 17:31:12 -04:00 committed by GitHub
commit e6b28e55f6
6 changed files with 9 additions and 6 deletions

View file

@ -32,6 +32,7 @@ Web UI version numbers should always match the corresponding version of LBRY App
* Fixed downloading files that are deleted not being removed from the downloading list
* Fixed download progress bar not being cleared when a downloading file is deleted
* Fixed refresh regression after adding scroll position to history state
* Fixed app thinking downloads with 0 progress were downloaded after restart
### Deprecated
*

View file

@ -46,8 +46,8 @@ dir dist # verify that binary was built/named correctly
# sign binary
nuget install secure-file -ExcludeVersion
secure-file\tools\secure-file -decrypt build\lbry2.pfx.enc -secret "$env:pfx_key"
& ${env:SIGNTOOL_PATH} sign /f build\lbry2.pfx /p "$env:key_pass" /tr http://tsa.starfieldtech.com /td SHA256 /fd SHA256 dist\*.exe
secure-file\tools\secure-file -decrypt build\lbry3.pfx.enc -secret "$env:pfx_key"
& ${env:SIGNTOOL_PATH} sign /f build\lbry3.pfx /p "$env:key_pass" /tr http://tsa.starfieldtech.com /td SHA256 /fd SHA256 dist\*.exe
python build\upload_assets.py
python build\upload_assets.py

Binary file not shown.

BIN
build/lbry3.pfx.enc Normal file

Binary file not shown.

View file

@ -118,7 +118,10 @@ class FileActions extends React.PureComponent {
/>
</div>
);
} else if (fileInfo === null && !downloading) {
} else if (
(fileInfo === null || (fileInfo && fileInfo.written_bytes === 0)) &&
!downloading
) {
if (!costInfo) {
content = <BusyMessage message={__("Fetching cost info")} />;
} else {

View file

@ -35,7 +35,6 @@ class UserEmailVerify extends React.PureComponent {
<FormRow
type="text"
label={__("Verification Code")}
placeholder="a94bXXXXXXXXXXXXXX"
name="code"
value={this.state.code}
onChange={event => {
@ -46,7 +45,7 @@ class UserEmailVerify extends React.PureComponent {
{/* render help separately so it always shows */}
<div className="form-field__helper">
<p>
{__("Email")}{" "}
{__("Check your email for a verification code. Email")}{" "}
<Link href="mailto:help@lbry.io" label="help@lbry.io" />{" "}
{__("if you did not receive or are having trouble with your code.")}
</p>