From 99cc32f83136860bdaf7c8dad434086025d2d3a0 Mon Sep 17 00:00:00 2001 From: Dorian Niemiec Date: Mon, 29 Jul 2024 22:22:33 +0200 Subject: [PATCH 1/4] Fix clipped text in the bottom on the heading in /changelogs/[slug] pages. --- app/(root)/changelogs/[slug]/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/(root)/changelogs/[slug]/page.tsx b/app/(root)/changelogs/[slug]/page.tsx index 0b1ae03..5e232f7 100644 --- a/app/(root)/changelogs/[slug]/page.tsx +++ b/app/(root)/changelogs/[slug]/page.tsx @@ -73,7 +73,7 @@ const Page = ({ params }: { params: { slug: string } }) => { return ( <>
-

+

{page.title}

-- 2.39.5 From 8949594090a8a5ed0e3b8f6597e60eca849aaecf Mon Sep 17 00:00:00 2001 From: Dorian Niemiec Date: Mon, 29 Jul 2024 22:29:19 +0200 Subject: [PATCH 2/4] Make the text below the heading and the prose smaller on mobile devices. --- app/(root)/changelogs/[slug]/page.tsx | 2 +- app/(root)/changelogs/page.tsx | 6 +++--- app/(root)/contribute/page.tsx | 4 ++-- app/(root)/downloads/page.tsx | 2 +- app/(root)/mods/page.tsx | 2 +- app/(root)/privacy-policy/page.tsx | 4 ++-- app/(root)/tos/page.tsx | 4 ++-- app/(root)/vulnerabilities/page.tsx | 4 ++-- 8 files changed, 14 insertions(+), 14 deletions(-) diff --git a/app/(root)/changelogs/[slug]/page.tsx b/app/(root)/changelogs/[slug]/page.tsx index 5e232f7..e6a8436 100644 --- a/app/(root)/changelogs/[slug]/page.tsx +++ b/app/(root)/changelogs/[slug]/page.tsx @@ -76,7 +76,7 @@ const Page = ({ params }: { params: { slug: string } }) => {

{page.title}

- + {page.content}
diff --git a/app/(root)/changelogs/page.tsx b/app/(root)/changelogs/page.tsx index 0b26690..6ed4172 100644 --- a/app/(root)/changelogs/page.tsx +++ b/app/(root)/changelogs/page.tsx @@ -57,7 +57,7 @@ const LogsPage: React.FC = () => {

Server LOGS

-

+

Get all the latest version of SVRJS download and compiled Files here!

{error &&

{error}

} @@ -65,7 +65,7 @@ const LogsPage: React.FC = () => { {reversedDownloads.map((download) => (

{download.version}

{download.date} @@ -76,7 +76,7 @@ const LogsPage: React.FC = () => {
))} -
+
{CHANGE_LOGS}
diff --git a/app/(root)/contribute/page.tsx b/app/(root)/contribute/page.tsx index b0070c8..9a846cc 100644 --- a/app/(root)/contribute/page.tsx +++ b/app/(root)/contribute/page.tsx @@ -15,11 +15,11 @@ const Contribute = () => {

Contributing to SVR.JS

-

+

We welcome contributions from the community! Here's how you can help!

-
+
{contribute}
diff --git a/app/(root)/downloads/page.tsx b/app/(root)/downloads/page.tsx index e090aa9..0726796 100644 --- a/app/(root)/downloads/page.tsx +++ b/app/(root)/downloads/page.tsx @@ -61,7 +61,7 @@ const DownloadPage: React.FC = () => {

Downloads

-

+

Get all the latest version of SVRJS download and compiled Files here!

{error &&

{error}

} diff --git a/app/(root)/mods/page.tsx b/app/(root)/mods/page.tsx index 4393b20..67c0ffb 100644 --- a/app/(root)/mods/page.tsx +++ b/app/(root)/mods/page.tsx @@ -61,7 +61,7 @@ const ModsPage: React.FC = () => {

SvrJS Mods

-

+

Get all the latest version of SVRJS Mods and compiled Files here!{" "}

{error &&

{error}

} diff --git a/app/(root)/privacy-policy/page.tsx b/app/(root)/privacy-policy/page.tsx index 0634eb5..caa5c48 100644 --- a/app/(root)/privacy-policy/page.tsx +++ b/app/(root)/privacy-policy/page.tsx @@ -17,10 +17,10 @@ const PrivacyPolicy = () => {

Privacy Policy

-

+

Effective date: 26.05.2024

-
+
{PRIVACY_POLICY}
diff --git a/app/(root)/tos/page.tsx b/app/(root)/tos/page.tsx index 8e74c70..4013bc8 100644 --- a/app/(root)/tos/page.tsx +++ b/app/(root)/tos/page.tsx @@ -15,10 +15,10 @@ const TermsOfService = () => {

Terms and Conditions

-

+

Last updated: 24.04.2024

-
+
{TERMS_AND_CONDITIONS}
diff --git a/app/(root)/vulnerabilities/page.tsx b/app/(root)/vulnerabilities/page.tsx index e5274ee..930d3f2 100644 --- a/app/(root)/vulnerabilities/page.tsx +++ b/app/(root)/vulnerabilities/page.tsx @@ -15,14 +15,14 @@ const Vulnerabilities = () => {

SVR.JS Vulnerabilities

-

+

Some older versions of SVR.JS are vulnerable to cyberattacks. It's recommended to update your SVR.JS version to the newest one. If you find a security issue with SVR.JS, report it as soon as possible to vulnerability-reports[at]svrjs[dot]org. We'll mitigate that vulnerability if it is possible.

-
+
{vulnerabilities}
-- 2.39.5 From 046911d82e4e002e03062491c633873220656354 Mon Sep 17 00:00:00 2001 From: Dorian Niemiec Date: Mon, 29 Jul 2024 22:57:35 +0200 Subject: [PATCH 3/4] Fix clipped in the bottom heading text on mobile devices. Also correct spacing in between of children elements. --- app/(root)/changelogs/[slug]/page.tsx | 4 ++-- app/(root)/changelogs/page.tsx | 6 +++--- app/(root)/contribute/page.tsx | 4 ++-- app/(root)/downloads/page.tsx | 4 ++-- app/(root)/mods/page.tsx | 4 ++-- app/(root)/privacy-policy/page.tsx | 4 ++-- app/(root)/tos/page.tsx | 4 ++-- app/(root)/vulnerabilities/page.tsx | 4 ++-- 8 files changed, 17 insertions(+), 17 deletions(-) diff --git a/app/(root)/changelogs/[slug]/page.tsx b/app/(root)/changelogs/[slug]/page.tsx index e6a8436..f420fb7 100644 --- a/app/(root)/changelogs/[slug]/page.tsx +++ b/app/(root)/changelogs/[slug]/page.tsx @@ -72,8 +72,8 @@ const Page = ({ params }: { params: { slug: string } }) => { return ( <> -
-

+
+

{page.title}

diff --git a/app/(root)/changelogs/page.tsx b/app/(root)/changelogs/page.tsx index 6ed4172..3bca07d 100644 --- a/app/(root)/changelogs/page.tsx +++ b/app/(root)/changelogs/page.tsx @@ -52,9 +52,9 @@ const LogsPage: React.FC = () => { return (
-

+

Server LOGS

@@ -65,7 +65,7 @@ const LogsPage: React.FC = () => { {reversedDownloads.map((download) => (

{download.version}

{download.date} diff --git a/app/(root)/contribute/page.tsx b/app/(root)/contribute/page.tsx index 9a846cc..efdaedd 100644 --- a/app/(root)/contribute/page.tsx +++ b/app/(root)/contribute/page.tsx @@ -10,9 +10,9 @@ const Contribute = () => { return (
-

+

Contributing to SVR.JS

diff --git a/app/(root)/downloads/page.tsx b/app/(root)/downloads/page.tsx index 0726796..6c4b150 100644 --- a/app/(root)/downloads/page.tsx +++ b/app/(root)/downloads/page.tsx @@ -56,9 +56,9 @@ const DownloadPage: React.FC = () => { return (

-

+

Downloads

diff --git a/app/(root)/mods/page.tsx b/app/(root)/mods/page.tsx index 67c0ffb..b9c3b84 100644 --- a/app/(root)/mods/page.tsx +++ b/app/(root)/mods/page.tsx @@ -56,9 +56,9 @@ const ModsPage: React.FC = () => { return (

-

+

SvrJS Mods

diff --git a/app/(root)/privacy-policy/page.tsx b/app/(root)/privacy-policy/page.tsx index caa5c48..6574239 100644 --- a/app/(root)/privacy-policy/page.tsx +++ b/app/(root)/privacy-policy/page.tsx @@ -12,9 +12,9 @@ const PrivacyPolicy = () => { return (

-

+

Privacy Policy

diff --git a/app/(root)/tos/page.tsx b/app/(root)/tos/page.tsx index 4013bc8..e5aa530 100644 --- a/app/(root)/tos/page.tsx +++ b/app/(root)/tos/page.tsx @@ -10,9 +10,9 @@ const TermsOfService = () => { return (

-

+

Terms and Conditions

diff --git a/app/(root)/vulnerabilities/page.tsx b/app/(root)/vulnerabilities/page.tsx index 930d3f2..31fd084 100644 --- a/app/(root)/vulnerabilities/page.tsx +++ b/app/(root)/vulnerabilities/page.tsx @@ -10,9 +10,9 @@ const Vulnerabilities = () => { return (

-

+

SVR.JS Vulnerabilities

-- 2.39.5 From 2ef41b3d644fb7c50e2ac876832fb93500de0eaf Mon Sep 17 00:00:00 2001 From: Dorian Niemiec Date: Mon, 29 Jul 2024 23:03:55 +0200 Subject: [PATCH 4/4] Correct out spacing below the text below the heading. --- app/(root)/changelogs/page.tsx | 2 +- app/(root)/contribute/page.tsx | 2 +- app/(root)/downloads/page.tsx | 2 +- app/(root)/mods/page.tsx | 2 +- app/(root)/privacy-policy/page.tsx | 2 +- app/(root)/tos/page.tsx | 2 +- app/(root)/vulnerabilities/page.tsx | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/app/(root)/changelogs/page.tsx b/app/(root)/changelogs/page.tsx index 3bca07d..57d8a7b 100644 --- a/app/(root)/changelogs/page.tsx +++ b/app/(root)/changelogs/page.tsx @@ -57,7 +57,7 @@ const LogsPage: React.FC = () => {

Server LOGS

-

+

Get all the latest version of SVRJS download and compiled Files here!

{error &&

{error}

} diff --git a/app/(root)/contribute/page.tsx b/app/(root)/contribute/page.tsx index efdaedd..1bd577e 100644 --- a/app/(root)/contribute/page.tsx +++ b/app/(root)/contribute/page.tsx @@ -15,7 +15,7 @@ const Contribute = () => {

Contributing to SVR.JS

-

+

We welcome contributions from the community! Here's how you can help!

diff --git a/app/(root)/downloads/page.tsx b/app/(root)/downloads/page.tsx index 6c4b150..706eb20 100644 --- a/app/(root)/downloads/page.tsx +++ b/app/(root)/downloads/page.tsx @@ -61,7 +61,7 @@ const DownloadPage: React.FC = () => {

Downloads

-

+

Get all the latest version of SVRJS download and compiled Files here!

{error &&

{error}

} diff --git a/app/(root)/mods/page.tsx b/app/(root)/mods/page.tsx index b9c3b84..e9f276e 100644 --- a/app/(root)/mods/page.tsx +++ b/app/(root)/mods/page.tsx @@ -61,7 +61,7 @@ const ModsPage: React.FC = () => {

SvrJS Mods

-

+

Get all the latest version of SVRJS Mods and compiled Files here!{" "}

{error &&

{error}

} diff --git a/app/(root)/privacy-policy/page.tsx b/app/(root)/privacy-policy/page.tsx index 6574239..00c9eed 100644 --- a/app/(root)/privacy-policy/page.tsx +++ b/app/(root)/privacy-policy/page.tsx @@ -17,7 +17,7 @@ const PrivacyPolicy = () => {

Privacy Policy

-

+

Effective date: 26.05.2024

diff --git a/app/(root)/tos/page.tsx b/app/(root)/tos/page.tsx index e5aa530..cc0f5a6 100644 --- a/app/(root)/tos/page.tsx +++ b/app/(root)/tos/page.tsx @@ -15,7 +15,7 @@ const TermsOfService = () => {

Terms and Conditions

-

+

Last updated: 24.04.2024

diff --git a/app/(root)/vulnerabilities/page.tsx b/app/(root)/vulnerabilities/page.tsx index 31fd084..fa76ec9 100644 --- a/app/(root)/vulnerabilities/page.tsx +++ b/app/(root)/vulnerabilities/page.tsx @@ -15,7 +15,7 @@ const Vulnerabilities = () => {

SVR.JS Vulnerabilities

-

+

Some older versions of SVR.JS are vulnerable to cyberattacks. It's recommended to update your SVR.JS version to the newest one. If you find a security issue with SVR.JS, report it as soon as possible to -- 2.39.5