mirror of
https://github.com/plebbit/seedit.git
synced 2026-04-21 07:38:35 -04:00
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
@@ -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
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user