diff --git a/src/app/pages/Home.tsx b/src/app/pages/Home.tsx index 0e135231..b8c59254 100644 --- a/src/app/pages/Home.tsx +++ b/src/app/pages/Home.tsx @@ -136,11 +136,11 @@ function Changelog() { function Contributors() { const supporters = useMemo(() => { - return contributors.filter(c => c.types.includes('support')) + return contributors.filter(c => c.types.includes('support') || c.types.includes('infrastructure')) }, []) const otherContributors = useMemo(() => { - return shuffle(contributors.filter(c => c.types.filter(t => t !== 'support').length > 0)) + return shuffle(contributors.filter(c => !supporters.includes(c))) }, []) return
diff --git a/src/contributors.json b/src/contributors.json index 18aaeda9..40bedbb1 100644 --- a/src/contributors.json +++ b/src/contributors.json @@ -5,6 +5,12 @@ "avatar": "https://avatars.githubusercontent.com/u/26075577?s=60&v=4", "url": "https://github.com/tryashtar" }, + { + "name": "catter1", + "types": ["support", "translation"], + "avatar": "https://avatars.githubusercontent.com/u/63272345?v=4", + "url": "https://github.com/catter1" + }, { "name": "EpyonProjects", "types": ["support", "report"], @@ -49,6 +55,11 @@ "avatar": "https://storage.ko-fi.com/cdn/useruploads/78f6cf72-52e1-4953-99f5-dd38f55a9c6e.png", "url": "https://github.com/RitikShah" }, + { + "name": "Xanbelor", + "types": ["support"], + "avatar": "https://ko-fi.com/img/anon3.png" + }, { "name": "SPGoding", "types": ["code", "infrastructure", "report", "translation"], @@ -475,6 +486,18 @@ "avatar": "https://cdn.discordapp.com/avatars/220658627067904000/fb55cc1e8d4b8c01e445c588b1d26a01.webp?size=80", "url": "https://github.com/vdvman1" }, + { + "name": "Insane96", + "types": ["report"], + "avatar": "https://avatars.githubusercontent.com/u/7185104?v=4", + "url": "https://github.com/Insane96" + }, + { + "name": "Shadowclaimer", + "types": ["report"], + "avatar": "https://avatars.githubusercontent.com/u/2214143?v=4", + "url": "https://github.com/Shadowclaimer" + }, { "name": "Manasukiyami-Github2", "types": ["report"], @@ -487,12 +510,6 @@ "avatar": "https://avatars.githubusercontent.com/u/36039861?v=4", "url": "https://github.com/lakejason0" }, - { - "name": "catter1", - "types": ["translation"], - "avatar": "https://avatars.githubusercontent.com/u/63272345?v=4", - "url": "https://github.com/catter1" - }, { "name": "Jerozgen", "types": ["translation"], @@ -799,10 +816,22 @@ "avatar": "https://avatars.githubusercontent.com/u/64474984?v=4", "url": "https://github.com/GustavoLank" }, + { + "name": "CavaleiroDev", + "types": ["translation"], + "avatar": "https://avatars.githubusercontent.com/u/48626778?v=4", + "url": "https://github.com/CavaleiroDev" + }, { "name": "TuTurDuDur", "types": ["translation"], "avatar": "https://avatars.githubusercontent.com/u/90134169?v=4", "url": "https://github.com/TuTurDuDur" + }, + { + "name": "Neylz", + "types": ["translation"], + "avatar": "https://avatars.githubusercontent.com/u/56648332?v=4", + "url": "https://github.com/Neylz" } ] diff --git a/src/locales/en.json b/src/locales/en.json index 11dd9d81..139fe1ad 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -20,12 +20,12 @@ "collapse": "Collapse", "collapse_all": "Hold %0% to collapse all", "configure_layers": "Configure layers", - "contributor.code": "Code contributions", - "contributor.content": "Guides", + "contributor.code": "Code contributor", + "contributor.content": "Guide writer", "contributor.infrastructure": "Infrastructure", - "contributor.report": "Bug reports", - "contributor.support": "Financial support", - "contributor.translation": "Translations", + "contributor.report": "Bug reporter", + "contributor.support": "Supporter", + "contributor.translation": "Translator", "copy": "Copy", "copy_share": "Copy share link", "copied": "Copied!",