Skip to content

Commit 463f896

Browse files
authored
Add GitHub link (#57)
And update other links to point to the new repo.
1 parent 7c21bb3 commit 463f896

File tree

7 files changed

+19
-17
lines changed

7 files changed

+19
-17
lines changed

scripts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "scripts",
33
"version": "1.0.0",
4-
"repository": "https://github.com/ekzhang/setwithfriends",
4+
"repository": "https://github.com/eltoder/setwithfriends",
55
"license": "MIT",
66
"description": "Internal scripts for Set with Friends.",
77
"main": "src/index.ts",

src/components/DonateDialog.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ function DonateDialog({ active }) {
5757
<Link
5858
target="_blank"
5959
rel="noopener"
60-
href="https://github.com/ekzhang/setwithfriends"
60+
href="https://github.com/eltoder/setwithfriends"
6161
>
6262
starring the project on GitHub
6363
</Link>

src/components/Navbar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ function Navbar({
143143
<Link
144144
target="_blank"
145145
rel="noopener"
146-
href={`https://github.com/ekzhang/setwithfriends/releases/tag/v${version}`}
146+
href={`https://github.com/eltoder/setwithfriends/releases/tag/v${version}`}
147147
>
148148
Release Notes
149149
</Link>

src/pages/AboutPage.js

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,33 +22,27 @@ function AboutPage() {
2222
</Typography>
2323
<Typography variant="body1" gutterBottom>
2424
The code powering this site is completely open source and available on{" "}
25-
<Link href="https://github.com/ekzhang/setwithfriends">GitHub</Link>.
25+
<Link href="https://github.com/eltoder/setwithfriends">GitHub</Link>.
2626
We are happy to provide mentorship for contributors from all
2727
backgrounds, whether you're a seasoned programmer or just want to
2828
learn more about web development.
2929
</Typography>
3030
<Typography variant="body1" gutterBottom>
3131
This site would not be possible without many people's help: the{" "}
32-
<Link href="https://github.com/ekzhang/setwithfriends/graphs/contributors">
32+
<Link href="https://github.com/eltoder/setwithfriends/graphs/contributors">
3333
volunteer developers
3434
</Link>{" "}
35-
who contribute code to add features and fix bugs, the{" "}
36-
<Link href="https://www.patreon.com/setwithfriends">patrons</Link> who
37-
help keep the site running, and many others who reported bugs and
38-
provided feedback.
35+
who contributed code to add features and fix bugs and many others who
36+
reported bugs and provided feedback.
3937
</Typography>
4038
<Typography variant="body1" gutterBottom>
4139
<strong>
4240
If you have suggestions, the best way to reach us is by{" "}
43-
<Link href="https://github.com/ekzhang/setwithfriends/issues">
41+
<Link href="https://github.com/eltoder/setwithfriends/issues">
4442
filing an issue
4543
</Link>
4644
.
47-
</strong>{" "}
48-
For questions about payment, please email us at{" "}
49-
<Link href="mailto:ekzhang1@gmail.com">ekzhang1@gmail.com</Link> and{" "}
50-
<Link href="mailto:cynthiakedu@gmail.com">cynthiakedu@gmail.com</Link>
51-
.
45+
</strong>
5246
</Typography>
5347
</Paper>
5448
<Paper style={{ padding: "1rem", maxWidth: 720, margin: "12px auto" }}>

src/pages/LobbyPage.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,14 @@ function LobbyPage() {
281281
<Typography variant="body1" align="center" style={{ padding: "16px 0" }}>
282282
<InternalLink to="/help">Help</InternalLink>{" "}
283283
<InternalLink to="/about">About</InternalLink>{" "}
284-
<InternalLink to="/conduct">Conduct</InternalLink>{" "}
284+
<Link
285+
target="_blank"
286+
rel="noopener"
287+
href="https://github.com/eltoder/setwithfriends"
288+
>
289+
GitHub
290+
</Link>{" "}
291+
<InternalLink to="/conduct">Conduct</InternalLink>{" "}
285292
<InternalLink to="/legal">Legal</InternalLink>{" "}
286293
<Link target="_blank" rel="noopener" href="https://discord.gg/XbjJyc9">
287294
Discord

src/util.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const fixedDataset = englishDataset
3535
.addWhitelistedTerm("dickens")
3636
)
3737
.addPhrase((phrase) =>
38-
phrase.setMetadata({ originalWord: "fuck" }).addWhitelistedTerm("fickle")
38+
phrase.setMetadata({ originalWord: "fuck" }).addWhitelistedTerm("fick")
3939
);
4040
export const badWords = new RegExpMatcher({
4141
...fixedDataset.build(),

src/util.test.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ describe("bad words filter", () => {
8585
expect(badWords.hasMatch("retard")).toBe(true);
8686
expect(badWords.hasMatch("ducks")).toBe(false);
8787
expect(badWords.hasMatch("deck")).toBe(false);
88+
expect(badWords.hasMatch("fick")).toBe(false);
8889
expect(badWords.hasMatch("fickle")).toBe(false);
8990
});
9091
});

0 commit comments

Comments
 (0)