fix: bugs
Manually set the sdk path to grab a fixed build from http://build.lbry.io/daemon/build-11443_commit-eae4ed7_branch-master/ - please revert on next commit.
This commit is contained in:
parent
44d94c3aa0
commit
f4d155b8eb
5 changed files with 10 additions and 14 deletions
|
@ -200,8 +200,8 @@
|
||||||
"yarn": "^1.3"
|
"yarn": "^1.3"
|
||||||
},
|
},
|
||||||
"lbrySettings": {
|
"lbrySettings": {
|
||||||
"lbrynetDaemonVersion": "0.38.0",
|
"lbrynetDaemonVersion": "0.38.1",
|
||||||
"lbrynetDaemonUrlTemplate": "https://github.com/lbryio/lbry/releases/download/vDAEMONVER/lbrynet-OSNAME.zip",
|
"lbrynetDaemonUrlTemplate": "http://build.lbry.io/daemon/build-11443_commit-eae4ed7_branch-master/lbrynet-OSNAME.zip",
|
||||||
"lbrynetDaemonDir": "static/daemon",
|
"lbrynetDaemonDir": "static/daemon",
|
||||||
"lbrynetDaemonFileName": "lbrynet"
|
"lbrynetDaemonFileName": "lbrynet"
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,7 +38,7 @@ function ChannelContent(props: Props) {
|
||||||
{hasContent && <ClaimList header={false} uris={claimsInChannel.map(claim => claim.permanent_url)} />}
|
{hasContent && <ClaimList header={false} uris={claimsInChannel.map(claim => claim.permanent_url)} />}
|
||||||
|
|
||||||
<Paginate
|
<Paginate
|
||||||
onPageChange={page => console.log('fetch') || fetchClaims(uri, page)}
|
onPageChange={page => fetchClaims(uri, page)}
|
||||||
totalPages={totalPages}
|
totalPages={totalPages}
|
||||||
loading={fetching && !hasContent}
|
loading={fetching && !hasContent}
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -52,8 +52,6 @@ export default class SplashScreen extends React.PureComponent<Props, State> {
|
||||||
}
|
}
|
||||||
|
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
this.props.onReadyToLaunch();
|
|
||||||
|
|
||||||
const { checkDaemonVersion } = this.props;
|
const { checkDaemonVersion } = this.props;
|
||||||
this.adjustErrorTimeout();
|
this.adjustErrorTimeout();
|
||||||
Lbry.connect()
|
Lbry.connect()
|
||||||
|
@ -223,11 +221,11 @@ export default class SplashScreen extends React.PureComponent<Props, State> {
|
||||||
:container {
|
:container {
|
||||||
perspective: 30vmin;
|
perspective: 30vmin;
|
||||||
}
|
}
|
||||||
|
|
||||||
@place-cell: center;
|
@place-cell: center;
|
||||||
@size: 100%;
|
@size: 100%;
|
||||||
|
|
||||||
box-shadow: @m2(0 0 50px var(--color));
|
box-shadow: @m2(0 0 50px var(--color));
|
||||||
will-change: transform, opacity;
|
will-change: transform, opacity;
|
||||||
animation: scale-up 12s linear infinite;
|
animation: scale-up 12s linear infinite;
|
||||||
animation-delay: calc(-12s / @size() * @i());
|
animation-delay: calc(-12s / @size() * @i());
|
||||||
|
@ -237,11 +235,11 @@ export default class SplashScreen extends React.PureComponent<Props, State> {
|
||||||
transform: translateZ(0) rotate(0);
|
transform: translateZ(0) rotate(0);
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
}
|
}
|
||||||
10% {
|
10% {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
95% {
|
95% {
|
||||||
transform:
|
transform:
|
||||||
translateZ(35vmin) rotateZ(@var(--deg));
|
translateZ(35vmin) rotateZ(@var(--deg));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -60,7 +60,6 @@ function ChannelPage(props: Props) {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Page>
|
<Page>
|
||||||
{window.location.href}
|
|
||||||
<div className="card">
|
<div className="card">
|
||||||
<header className="channel-cover">
|
<header className="channel-cover">
|
||||||
{!editing && cover && <img className="channel-cover__custom" src={cover} />}
|
{!editing && cover && <img className="channel-cover__custom" src={cover} />}
|
||||||
|
|
|
@ -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.",
|
"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",
|
"Confirm Claim Revoke": "Confirm Claim Revoke",
|
||||||
"Are you sure you want to remove this support?": "Are you sure you want to remove this support?",
|
"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.",
|
"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."
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue