Skip to content

Commit

Permalink
Merge Upstream
Browse files Browse the repository at this point in the history
* commit '1e2c63d8bb0d0ab1ca658f408d2cd8a585f51392':
  Docker: copy only the files required for build (aeharding#1397)
  Update join/login instance list (aeharding#1396)
  • Loading branch information
sharunkumar committed Apr 6, 2024
2 parents df61670 + 1e2c63d commit 419c499
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 18 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ dist
android/
ios/
fastlane/
e2e/
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ COPY patches ./patches
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile --ignore-scripts

# Copy all source files
COPY . ./
COPY build.sh disable_in_app_purchases.sh index.html vite.config.ts manifest.json tsconfig.json tsconfig.node.json ./
COPY public ./public
COPY src ./src

# Tests
RUN CI=true pnpm test
Expand Down
8 changes: 0 additions & 8 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
<data android:host="ani.social" />
<data android:host="aussie.zone" />
<data android:host="awful.systems" />
<data android:host="beehaw.org" />
<data android:host="burggit.moe" />
<data android:host="discuss.online" />
<data android:host="discuss.tchncs.de" />
Expand Down Expand Up @@ -118,7 +117,6 @@
<data android:host="ani.social" />
<data android:host="aussie.zone" />
<data android:host="awful.systems" />
<data android:host="beehaw.org" />
<data android:host="burggit.moe" />
<data android:host="discuss.online" />
<data android:host="discuss.tchncs.de" />
Expand Down Expand Up @@ -199,7 +197,6 @@
<data android:host="ani.social" />
<data android:host="aussie.zone" />
<data android:host="awful.systems" />
<data android:host="beehaw.org" />
<data android:host="burggit.moe" />
<data android:host="discuss.online" />
<data android:host="discuss.tchncs.de" />
Expand Down Expand Up @@ -280,7 +277,6 @@
<data android:host="ani.social" />
<data android:host="aussie.zone" />
<data android:host="awful.systems" />
<data android:host="beehaw.org" />
<data android:host="burggit.moe" />
<data android:host="discuss.online" />
<data android:host="discuss.tchncs.de" />
Expand Down Expand Up @@ -361,7 +357,6 @@
<data android:host="ani.social" />
<data android:host="aussie.zone" />
<data android:host="awful.systems" />
<data android:host="beehaw.org" />
<data android:host="burggit.moe" />
<data android:host="discuss.online" />
<data android:host="discuss.tchncs.de" />
Expand Down Expand Up @@ -442,7 +437,6 @@
<data android:host="ani.social" />
<data android:host="aussie.zone" />
<data android:host="awful.systems" />
<data android:host="beehaw.org" />
<data android:host="burggit.moe" />
<data android:host="discuss.online" />
<data android:host="discuss.tchncs.de" />
Expand Down Expand Up @@ -523,7 +517,6 @@
<data android:host="ani.social" />
<data android:host="aussie.zone" />
<data android:host="awful.systems" />
<data android:host="beehaw.org" />
<data android:host="burggit.moe" />
<data android:host="discuss.online" />
<data android:host="discuss.tchncs.de" />
Expand Down Expand Up @@ -604,7 +597,6 @@
<data android:host="ani.social" />
<data android:host="aussie.zone" />
<data android:host="awful.systems" />
<data android:host="beehaw.org" />
<data android:host="burggit.moe" />
<data android:host="discuss.online" />
<data android:host="discuss.tchncs.de" />
Expand Down
10 changes: 2 additions & 8 deletions src/features/auth/login/data/servers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,8 @@ export const SERVERS_BY_CATEGORY = {
"psychedelia.ink",
"ani.social",
],
activism: [
"rblind.com",
"badatbeing.social",
"beehaw.org",
"sirpnk.net",
"merv.news",
],
lgbt: ["femboys.bar", "transfem.space", "lemmy.blahaj.zone"],
activism: ["rblind.com", "badatbeing.social", "slrpnk.net"],
lgbt: ["femboys.bar", "lemmy.blahaj.zone"],
academia: ["mander.xyz", "literature.cafe", "futurology.today"],
furry: ["pawb.social", "yiffit.net"],
};
Expand Down
2 changes: 1 addition & 1 deletion src/features/community/list/GuestCommunitiesList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { CommunitiesListProps } from "./CommunitiesList";
*
* TODO in the future Local/All will be configurable in an explore view
*/
const SHOW_LOCAL_ONLY = ["lemmynsfw.com", "beehaw.org"];
const SHOW_LOCAL_ONLY = ["lemmynsfw.com"];

export default function GuestCommunitiesList({ actor }: CommunitiesListProps) {
const [communities, setCommunities] = useState<Community[] | undefined>();
Expand Down

0 comments on commit 419c499

Please sign in to comment.