From a49e970a2b03203c630858c964417b3b35377e0d Mon Sep 17 00:00:00 2001 From: Matthew Date: Wed, 31 Jul 2024 22:30:05 -0400 Subject: [PATCH 1/7] fix: Update Source in the footer --- src/components/shared/AppFooter.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/shared/AppFooter.jsx b/src/components/shared/AppFooter.jsx index a7153dc..6b096e6 100644 --- a/src/components/shared/AppFooter.jsx +++ b/src/components/shared/AppFooter.jsx @@ -39,7 +39,7 @@ function AppFooter () { -{' '} From b2e081b052f01693379b71d748f5f17ae784b929 Mon Sep 17 00:00:00 2001 From: Matthew Date: Wed, 31 Jul 2024 22:31:55 -0400 Subject: [PATCH 2/7] fix: Fix some branding issues in Credits --- src/pages/credits.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/credits.jsx b/src/pages/credits.jsx index 843d068..32a1005 100644 --- a/src/pages/credits.jsx +++ b/src/pages/credits.jsx @@ -61,11 +61,11 @@ function CreditsPage ({ display_name: wiitagName }) { Added official LinkTag support to his modification of USB Loader GX - Completely rewrote LinkTag into version 2.0 (LinkTag-Next) + Completely rewrote RiiTag into version 2.0 (RiiTag-Next) Created Wiinnertag (no longer available), which heavily inspired - LinkTag + RiiTag Created some of the LinkTag overlays From 63a46df719a0858288ed63b1114cb42ef24c18f8 Mon Sep 17 00:00:00 2001 From: Matthew Date: Wed, 31 Jul 2024 22:32:55 -0400 Subject: [PATCH 3/7] fix: Add navbar to credits page --- src/pages/credits.jsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/pages/credits.jsx b/src/pages/credits.jsx index 32a1005..67a5615 100644 --- a/src/pages/credits.jsx +++ b/src/pages/credits.jsx @@ -8,6 +8,7 @@ import ENV from '@/lib/constants/environmentVariables' import { withSession } from '@/lib/iron-session' import prisma from '@/lib/db' import Contributor from '@/components/credits/Contributor' +import AppNavbar from '@/components/shared/AppNavbar' export const getServerSideProps = withSession(async ({ req }) => { const username = req.session?.username @@ -34,6 +35,8 @@ export const getServerSideProps = withSession(async ({ req }) => { function CreditsPage ({ display_name: wiitagName }) { return ( + <> + + ) } From 96190505968a7284987b2357516dbc5ce60e6760 Mon Sep 17 00:00:00 2001 From: Matthew Date: Wed, 31 Jul 2024 22:33:33 -0400 Subject: [PATCH 4/7] fix: Add navbar to About page --- src/pages/about.jsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/pages/about.jsx b/src/pages/about.jsx index a88e96b..fd756a5 100644 --- a/src/pages/about.jsx +++ b/src/pages/about.jsx @@ -6,6 +6,7 @@ import ENV from '@/lib/constants/environmentVariables' import styles from '@/styles/modules/editor-text.module.scss' import prisma from '@/lib/db' import { isBlank } from '@/lib/utils/utils' +import AppNavbar from '@/components/shared/AppNavbar' export async function getStaticProps () { const about = await prisma.sys.findUnique({ @@ -26,6 +27,8 @@ export async function getStaticProps () { function AboutPage ({ about }) { return ( + <> + + ) } From c3500a42212fee482d6658528c8e84bd6c34fd39 Mon Sep 17 00:00:00 2001 From: Matthew Date: Wed, 31 Jul 2024 22:34:12 -0400 Subject: [PATCH 5/7] fix: Add navbar to Privacy Policy page --- src/pages/privacy-policy.jsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/pages/privacy-policy.jsx b/src/pages/privacy-policy.jsx index ba1b0e0..3b4bd01 100644 --- a/src/pages/privacy-policy.jsx +++ b/src/pages/privacy-policy.jsx @@ -6,6 +6,7 @@ import prisma from '@/lib/db' import styles from '@/styles/modules/editor-text.module.scss' import ENV from '@/lib/constants/environmentVariables' import { isBlank } from '@/lib/utils/utils' +import AppNavbar from '@/components/shared/AppNavbar' export async function getStaticProps () { const privacyPolicy = await prisma.sys.findUnique({ @@ -26,6 +27,8 @@ export async function getStaticProps () { function PrivacyPolicyPage ({ privacyPolicy }) { return ( + <> + + ) } From cdeb4daf79b0ea583735c005c06e48930a62f037 Mon Sep 17 00:00:00 2001 From: Matthew Date: Wed, 31 Jul 2024 22:34:34 -0400 Subject: [PATCH 6/7] fix: Add NavBar to TOS page --- src/pages/tos.jsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/pages/tos.jsx b/src/pages/tos.jsx index 7cee159..7e9189b 100644 --- a/src/pages/tos.jsx +++ b/src/pages/tos.jsx @@ -6,6 +6,7 @@ import prisma from '@/lib/db' import styles from '@/styles/modules/editor-text.module.scss' import ENV from '@/lib/constants/environmentVariables' import { isBlank } from '@/lib/utils/utils' +import AppNavbar from '@/components/shared/AppNavbar' export async function getStaticProps () { const tos = await prisma.sys.findUnique({ @@ -24,6 +25,8 @@ export async function getStaticProps () { function TosPage ({ tos }) { return ( + <> + + ) } From 9dde84935f6b7001c1c803bf9e037ac1a9250a89 Mon Sep 17 00:00:00 2001 From: Matthew Date: Thu, 1 Aug 2024 17:03:21 -0700 Subject: [PATCH 7/7] Update lint.yml --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 38be91f..619e6de 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -25,7 +25,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v2 with: - node-version: "16" + node-version: "20" - name: Install dependencies run: npm ci