Skip to content

Commit

Permalink
ACat (part 2)
Browse files Browse the repository at this point in the history
  • Loading branch information
nmsderp authored Mar 10, 2024
1 parent 03eb98c commit a681750
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/playground/credits/credits.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const Credits = () => (
<p>
Snail IDE is made by a small bunch of developers, but people will sometimes contribute!
</p>
<UserList users={UserData.snContribute} />
<UserList users={UserData.snContributeCodeBerg} />
<p><i>The list order is randomized on each refresh.</i></p>
<p>
♥ Without PenguinMod, Snail IDE would never exist, here the PenguinMod Dev Team is listed ♥
Expand Down
17 changes: 9 additions & 8 deletions src/playground/credits/users.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ const fromHardcodedGithub = username => ({
href: `https://github.com/${username}/`,
text: username
});
const fromHardcodedCodeberg = username => ({
image: `https://codeberg.org/${username}.png`,
href: `https://codeberg.org/${username}/`,
text: username
});

const fromHardcodedDiscord = async userId => {
const res = await fetch(`https://pmupdatereader.jeremygamer13.repl.co/user/${userId}`);
Expand Down Expand Up @@ -136,14 +141,10 @@ const snDev = [
'nmsderp',
'cesderp14',
].map(fromHardcodedGithub);
const snContribute = [
{
image: "https://codeberg.org/avatars/7b7db239db951a3a298d6824a61972dfaede0d06871c43c77753aa993f435f31?size=512",
href: "https://codeberg.org/ACat",
text: "ACat"
}
const snContributeCodeBerg = [
'ACat'

].map(fromOther)
].map(fromHardcodedCodeberg)

const rubyDev = [
"Gen1x-ALT",
Expand Down Expand Up @@ -178,6 +179,6 @@ export default {
rubyDev: shuffle(rubyDev),
logoArtists: shuffle(logoArtists),
extensionDevelopers: shuffle(extensionDevelopers),
snContribute: shuffle(snContribute),
snContributeCodeBerg: shuffle(snContributeCodeBerg),
fromOther: shuffle(fromOther)
};

0 comments on commit a681750

Please sign in to comment.