diff --git a/locales/en_US.json b/locales/en_US.json index cb4d5e24..024383c1 100644 --- a/locales/en_US.json +++ b/locales/en_US.json @@ -62,12 +62,12 @@ "answer": "No. Lots of Pretendo's features/services are developed independently (for example, Miiverse may be worked on by one developer while Accounts and Friends is being worked on by another) and therefore we cannot give an overall ETA for how long this will take." }, { - "question": "Does Pretendo work on Cemu/emulators?", - "answer": "Pretendo supports any client that can interact with Nintendo Network. Currently the only emulator with this kind of functionality is Cemu. Cemu 2.0 officially supports Pretendo under your network account options in the emulator. For information on how to get started with Cemu, check out the documentation.
Citra does not support true online play and thus does not work with Pretendo, and does not show signs of supporting true online play at all. Mikage, a 3DS emulator for mobile devices, may provide support in the future though this is far from certain." + "question": "When will you add more games?", + "answer": "We work on new games once we feel that our backend libraries are ready to support it, and there is developer interest in maintaining it. A lot of our work goes into stabilising and completing our existing games - we want to get the best experience possible in those before we move on to new titles. Since new work comes up all the time, we cannot make any estimate of when that would be." }, { - "question": "If I am banned on Nintendo Network, will I stay banned when using Pretendo?", - "answer": "We will not have access to Nintendo Network's bans, and all users will not be banned on our service. However, we will have rules to follow when using the service and failing to follow these rules could result in a ban." + "question": "Does Pretendo work on Cemu/emulators?", + "answer": "Cemu 2.0 officially supports Pretendo under your network account options in the emulator. For information on how to get started with Cemu, check out the documentation.
Citra does not support true online play and thus does not work with Pretendo, and does not show signs of supporting true online play at all. Mikage, a 3DS emulator for mobile devices, may provide support in the future though this is far from certain." }, { "question": "Will Pretendo support the Wii/Switch?", @@ -76,6 +76,14 @@ { "question": "Will I need hacks to connect?", "answer": "For the best experience on consoles, you will need to hack your system - specifially Aroma for Wii U and Luma3DS for 3DS. However, on Wii U, the hackless SSSL method is also available with limited functionality. See our setup instructions for details." + }, + { + "question": "If I am banned on Nintendo Network, will I stay banned when using Pretendo?", + "answer": "We will not have access to Nintendo Network's bans, and all users will not be banned on our service. However, we will have rules to follow when using the service and failing to follow these rules could result in a ban." + }, + { + "question": "Can I use cheats or mods online with Pretendo?", + "answer": "Only in private matches - cheating online with people who didn't consent (as in public matches) is a bannable offense. We regularly apply account and console bans to both Wii U and 3DS systems. Pretendo uses extra security measures that make traditional 'unban' methods like changing your serial number ineffective." } ] }, @@ -154,6 +162,24 @@ "caption": "Web and server development", "picture": "https://github.com/hauntii.png", "github": "https://github.com/hauntii" + }, + { + "name": "MatthewL246", + "caption": "Server architecture and community work", + "picture": "https://github.com/MatthewL246.png", + "github": "https://github.com/MatthewL246" + }, + { + "name": "wolfendale", + "caption": "Server development and optimization", + "picture": "https://github.com/wolfendale.png", + "github": "https://github.com/wolfendale" + }, + { + "name": "TraceEntertains", + "caption": "3DS patch development and research", + "picture": "https://github.com/TraceEntertains.png", + "github": "https://github.com/TraceEntertains" } ] }, @@ -175,7 +201,7 @@ }, { "name": "Stary", - "caption": "3DS dev and NEX dissector", + "caption": "3DS development and NEX dissector", "picture": "https://github.com/Stary2001.png", "github": "https://github.com/Stary2001" }, @@ -200,7 +226,7 @@ }, { "name": "Rambo6Glaz", - "caption": "Network installer and console research", + "caption": "Console research and game servers", "picture": "https://github.com/EpicUsername12.png", "github": "https://github.com/EpicUsername12" }, @@ -215,6 +241,36 @@ "caption": "3DS patch creator", "picture": "https://cdn.discordapp.com/avatars/219324395707957248/c62573fbd4d26c8b4724f54413df6960.png?size=128", "github": "https://github.com/zaksabeast" + }, + { + "name": "mrjvs", + "caption": "Server architecture", + "picture": "https://github.com/mrjvs.png", + "github": "https://github.com/mrjvs" + }, + { + "name": "binaryoverload", + "caption": "Server architecture", + "picture": "https://github.com/binaryoverload.png", + "github": "https://github.com/binaryoverload" + }, + { + "name": "Simonx22", + "caption": "Splatoon rotations and research", + "picture": "https://github.com/Simonx22.png", + "github": "https://github.com/Simonx22" + }, + { + "name": "OatmealDome", + "caption": "Splatoon rotations and research", + "picture": "https://github.com/OatmealDome.png", + "github": "https://github.com/OatmealDome" + }, + { + "name": "GitHub contributors", + "caption": "Localizations and other contributions", + "picture": "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png", + "github": "https://github.com/PretendoNetwork" } ] }, diff --git a/public/assets/css/main.css b/public/assets/css/main.css index 07ace10f..2a3d7e59 100644 --- a/public/assets/css/main.css +++ b/public/assets/css/main.css @@ -463,7 +463,7 @@ section.team-helpers .text { } section.team-helpers .team-helpers-cards { display: inline-grid; - grid-template-columns: repeat(12, 1fr); + grid-template-columns: repeat(21, 1fr); grid-gap: 20px; margin-right: 20px; color: var(--text-shade-1); diff --git a/src/routes/home.js b/src/routes/home.js index 11544c01..a86e5ad5 100644 --- a/src/routes/home.js +++ b/src/routes/home.js @@ -20,9 +20,10 @@ router.get('/', async (request, response) => { } shuffleArray(specialThanksPeople); + const pivot = specialThanksPeople.length / 2; // Slices the array in half - const specialThanksFirstRow = specialThanksPeople.slice(0, 4); - const specialThanksSecondRow = specialThanksPeople.slice(4); + const specialThanksFirstRow = specialThanksPeople.slice(0, pivot); + const specialThanksSecondRow = specialThanksPeople.slice(pivot); // Builds the final array to be sent to the view, and triples each row. renderData.specialThanksPeople = {