diff --git a/.env.defaults b/.env.defaults index 3c94c14d8..f5e43ecce 100644 --- a/.env.defaults +++ b/.env.defaults @@ -8,7 +8,7 @@ WEBPACK_ELECTRON_PORT=9091 WEB_SERVER_PORT=1337 ## APIS -LBRY_WEB_API=https://api.na-backend.odysee.com # update +LBRY_WEB_API=https://api.na-backend.odysee.com LBRY_WEB_STREAMING_API=https://cdn.lbryplayer.xyz LBRY_WEB_BUFFER_API=https://collector-service.api.lbry.tv/api/v1/events/video COMMENT_SERVER_API=https://comments.lbry.com/api/v2 diff --git a/static/img/favicon.png b/static/img/favicon.png index 4570d2248..20e725d6e 100644 Binary files a/static/img/favicon.png and b/static/img/favicon.png differ diff --git a/static/img/lbry-favicon.png b/static/img/lbry-favicon.png new file mode 100644 index 000000000..4570d2248 Binary files /dev/null and b/static/img/lbry-favicon.png differ diff --git a/ui/component/channelThumbnail/spaceman.png b/ui/component/channelThumbnail/spaceman.png new file mode 100644 index 000000000..4300ae1c1 Binary files /dev/null and b/ui/component/channelThumbnail/spaceman.png differ diff --git a/ui/component/channelThumbnail/view.jsx b/ui/component/channelThumbnail/view.jsx index 19c15fc2e..6e68cc8ef 100644 --- a/ui/component/channelThumbnail/view.jsx +++ b/ui/component/channelThumbnail/view.jsx @@ -2,7 +2,7 @@ import React from 'react'; import { parseURI } from 'lbry-redux'; import classnames from 'classnames'; -import Gerbil from './gerbil.png'; +import Spaceman from './spaceman.png'; import FreezeframeWrapper from 'component/fileThumbnail/FreezeframeWrapper'; import ChannelStakedIndicator from 'component/channelStakedIndicator'; import OptimizedImage from 'component/optimizedImage'; @@ -86,7 +86,7 @@ function ChannelThumbnail(props: Props) { setThumbError(true)} // if thumb fails (including due to https replace, show gerbil. /> @@ -99,7 +99,7 @@ function ChannelThumbnail(props: Props) { setThumbError(true)} // if thumb fails (including due to https replace, show gerbil. /> diff --git a/ui/component/claimTilesDiscover/view.jsx b/ui/component/claimTilesDiscover/view.jsx index 069c8f7ca..a77bbce79 100644 --- a/ui/component/claimTilesDiscover/view.jsx +++ b/ui/component/claimTilesDiscover/view.jsx @@ -156,7 +156,7 @@ function ClaimTilesDiscover(props: Props) { const { location } = useHistory(); const urlParams = new URLSearchParams(location.search); const feeAmountInUrl = urlParams.get('fee_amount'); - const feeAmountParam = feeAmountInUrl || feeAmount; + const feeAmountParam = feeAmountInUrl || feeAmount || CS.FEE_AMOUNT_ONLY_FREE; const mutedAndBlockedChannelIds = Array.from( new Set(mutedUris.concat(blockedUris).map((uri) => splitBySeparator(uri)[1])) ); @@ -291,7 +291,7 @@ function ClaimTilesDiscover(props: Props) { }; const modifiedUris = uris ? uris.slice() : []; - const fixUris = pinUrls || ['lbry://@AlisonMorrow#6/LBRY#8']; + const fixUris = pinUrls || ['lbry://@Odysee#8/Does-Google-Own-Odysee#4']; if (pin && modifiedUris && modifiedUris.length > 2 && window.location.pathname === '/') { fixUris.forEach((fixUri) => { @@ -308,7 +308,13 @@ function ClaimTilesDiscover(props: Props) {