diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9d43912a..90ee8146 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 diff --git a/package.json b/package.json index c770c489..ceb90a25 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/scripts/release-body.js b/scripts/release-body.js index 287cbc68..43a11480 100644 --- a/scripts/release-body.js +++ b/scripts/release-body.js @@ -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 diff --git a/src/views/home/home.tsx b/src/views/home/home.tsx index 8c678b52..3cba947d 100644 --- a/src/views/home/home.tsx +++ b/src/views/home/home.tsx @@ -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; }