so much discovery I can't take it #2617

Merged
neb-b merged 20 commits from fixes into master 2019-07-23 01:45:30 +02:00
5 changed files with 10 additions and 14 deletions
Showing only changes of commit f4d155b8eb - Show all commits

View file

@ -200,8 +200,8 @@
"yarn": "^1.3"
},
"lbrySettings": {
"lbrynetDaemonVersion": "0.38.0",
"lbrynetDaemonUrlTemplate": "https://github.com/lbryio/lbry/releases/download/vDAEMONVER/lbrynet-OSNAME.zip",
"lbrynetDaemonVersion": "0.38.1",
"lbrynetDaemonUrlTemplate": "http://build.lbry.io/daemon/build-11443_commit-eae4ed7_branch-master/lbrynet-OSNAME.zip",
"lbrynetDaemonDir": "static/daemon",
"lbrynetDaemonFileName": "lbrynet"
}

View file

@ -38,7 +38,7 @@ function ChannelContent(props: Props) {
{hasContent && <ClaimList header={false} uris={claimsInChannel.map(claim => claim.permanent_url)} />}
<Paginate
onPageChange={page => console.log('fetch') || fetchClaims(uri, page)}
onPageChange={page => fetchClaims(uri, page)}
totalPages={totalPages}
loading={fetching && !hasContent}
/>

View file

@ -52,8 +52,6 @@ export default class SplashScreen extends React.PureComponent<Props, State> {
}
componentDidMount() {
this.props.onReadyToLaunch();
const { checkDaemonVersion } = this.props;
this.adjustErrorTimeout();
Lbry.connect()
@ -223,11 +221,11 @@ export default class SplashScreen extends React.PureComponent<Props, State> {
:container {
perspective: 30vmin;
}
@place-cell: center;
@size: 100%;
box-shadow: @m2(0 0 50px var(--color));
box-shadow: @m2(0 0 50px var(--color));
will-change: transform, opacity;
animation: scale-up 12s linear infinite;
animation-delay: calc(-12s / @size() * @i());
@ -237,11 +235,11 @@ export default class SplashScreen extends React.PureComponent<Props, State> {
transform: translateZ(0) rotate(0);
opacity: 0;
}
10% {
opacity: 1;
10% {
opacity: 1;
}
95% {
transform:
transform:
translateZ(35vmin) rotateZ(@var(--deg));
}
}

View file

@ -60,7 +60,6 @@ function ChannelPage(props: Props) {
return (
<Page>
{window.location.href}
<div className="card">
<header className="channel-cover">
{!editing && cover && <img className="channel-cover__custom" src={cover} />}

View file

@ -574,6 +574,5 @@
"You can generate a new address at any time, and any previous addresses will continue to work.": "You can generate a new address at any time, and any previous addresses will continue to work.",
"Confirm Claim Revoke": "Confirm Claim Revoke",
"Are you sure you want to remove this support?": "Are you sure you want to remove this support?",
"These credits are permanently yours and can be removed at any time. Removing this support will reduce the claim's discoverability and return the LBC to your spendable balance.": "These credits are permanently yours and can be removed at any time. Removing this support will reduce the claim's discoverability and return the LBC to your spendable balance.",
"The better your tags are, the easier it will be for people to discover your channel.": "The better your tags are, the easier it will be for people to discover your channel."
"These credits are permanently yours and can be removed at any time. Removing this support will reduce the claim's discoverability and return the LBC to your spendable balance.": "These credits are permanently yours and can be removed at any time. Removing this support will reduce the claim's discoverability and return the LBC to your spendable balance."
}