Merge pull request #119 from plebbit/master

Development
This commit is contained in:
plebeius.eth
2023-12-16 14:15:46 +01:00
committed by GitHub
4 changed files with 11 additions and 5 deletions

View File

@@ -52,6 +52,10 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: 16
# install missing dep for sqlite3
- run: python3 -m ensurepip
- run: pip install setuptools
- run: yarn install --frozen-lockfile
# make sure the ipfs executable is executable
- run: node electron/download-ipfs && sudo chmod +x bin/mac/ipfs

View File

@@ -1,6 +1,8 @@
{
"name": "seedit",
"version": "0.1.0",
"description": "A GUI for plebbit similar to old.reddit",
"author": "plebeius.eth",
"private": true,
"dependencies": {
"@floating-ui/react": "0.26.1",
@@ -34,7 +36,7 @@
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"build": "cross-env PUBLIC_URL=./ GENERATE_SOURCEMAP=false react-scripts build",
"build-netlify": "cross-env PUBLIC_URL=./ GENERATE_SOURCEMAP=true REACT_APP_COMMIT_REF=$COMMIT_REF react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",

View File

@@ -11,9 +11,9 @@ let releaseChangelog =
releaseChangelog = releaseChangelog.trim().replace(/\n\n+/g, '\n\n')
const releaseBody = `Progressive web app mirrors:
- https://plebones.eth.limo
- https://plebones.eth.link
- https://cloudflare-ipfs.com/ipns/plebones.eth (insecure, no subdomain isolation)
- https://seedit.eth.limo
- https://seedit.eth.link
- https://cloudflare-ipfs.com/ipns/seedit.eth (insecure, no subdomain isolation)
CLI client:
- https://github.com/plebbit/plebbit-cli/releases/latest

View File

@@ -65,7 +65,7 @@ const Home = () => {
if (feed?.length === 0) {
Footer = NoPosts;
}
if (hasMore || subplebbitAddresses && subplebbitAddresses.length === 0) {
if (hasMore || (subplebbitAddresses && subplebbitAddresses.length === 0)) {
Footer = () => loadingString;
}