CHANGELOG fix, remove settings, abstract interval setting

This commit is contained in:
Jeremy Kauffman 2017-08-30 12:43:35 -04:00
parent a3af234e98
commit 7e23b62c7b
3 changed files with 7 additions and 4 deletions

View file

@ -31,7 +31,7 @@ Web UI version numbers should always match the corresponding version of LBRY App
* Tiles will no longer be blurry on hover (Windows only bug) * Tiles will no longer be blurry on hover (Windows only bug)
* Removed placeholder values from price selection form fields, which was causing confusion that these were real values (#426) * Removed placeholder values from price selection form fields, which was causing confusion that these were real values (#426)
* Fixed showing "other currency" help tip in publish form, which was caused due to not "setting" state for price * Fixed showing "other currency" help tip in publish form, which was caused due to not "setting" state for price
* Public page now properly checks for all required fields are filled * Publish page now properly checks for all required fields are filled
* Fixed pagination styling for pages > 5 (#416) * Fixed pagination styling for pages > 5 (#416)
* Fixed sizing on squat videos (#419) * Fixed sizing on squat videos (#419)
* Support claims no longer show up on Published page (#384) * Support claims no longer show up on Published page (#384)

View file

@ -20,6 +20,8 @@ import * as modals from "constants/modal_types";
const { ipcRenderer } = require("electron"); const { ipcRenderer } = require("electron");
const DOWNLOAD_POLL_INTERVAL = 250;
export function doResolveUri(uri) { export function doResolveUri(uri) {
return function(dispatch, getState) { return function(dispatch, getState) {
uri = lbryuri.normalize(uri); uri = lbryuri.normalize(uri);
@ -175,7 +177,7 @@ export function doUpdateLoadStatus(uri, outpoint) {
// download hasn't started yet // download hasn't started yet
setTimeout(() => { setTimeout(() => {
dispatch(doUpdateLoadStatus(uri, outpoint)); dispatch(doUpdateLoadStatus(uri, outpoint));
}, 250); }, DOWNLOAD_POLL_INTERVAL);
} else if (fileInfo.completed) { } else if (fileInfo.completed) {
// TODO this isn't going to get called if they reload the client before // TODO this isn't going to get called if they reload the client before
// the download finished // the download finished
@ -221,7 +223,7 @@ export function doUpdateLoadStatus(uri, outpoint) {
setTimeout(() => { setTimeout(() => {
dispatch(doUpdateLoadStatus(uri, outpoint)); dispatch(doUpdateLoadStatus(uri, outpoint));
}, 250); }, DOWNLOAD_POLL_INTERVAL);
} }
}); });
}; };

View file

@ -116,6 +116,7 @@ class SettingsPage extends React.PureComponent {
return ( return (
<main className="main--single-column"> <main className="main--single-column">
<SubHeader /> <SubHeader />
{/*
<section className="card"> <section className="card">
<div className="card__content"> <div className="card__content">
<h3>{__("Language")}</h3> <h3>{__("Language")}</h3>
@ -137,7 +138,7 @@ class SettingsPage extends React.PureComponent {
</FormField> </FormField>
</div> </div>
</div> </div>
</section> </section> */}
<section className="card"> <section className="card">
<div className="card__content"> <div className="card__content">
<h3>{__("Download Directory")}</h3> <h3>{__("Download Directory")}</h3>