From 39a76d873b3d5b05d63d88bbed916096de8560b7 Mon Sep 17 00:00:00 2001 From: J-onasJones Date: Wed, 27 Sep 2023 14:00:31 +0200 Subject: [PATCH 01/34] Updated project metadata --- src/routes/projects/projects.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/routes/projects/projects.json b/src/routes/projects/projects.json index 4b17517..c9d78ae 100644 --- a/src/routes/projects/projects.json +++ b/src/routes/projects/projects.json @@ -721,13 +721,13 @@ "html" ], "gh_api": "J-onasJones/jonasjones.dev", - "version": "1.0.1", + "version": "1.0.2", "backgroud": "/homepage.png", "links": { "GH": "https://github.com/J-onasJones/jonasjones.dev" }, "visible": true, - "last_update": 1695761856 + "last_update": 1695808613 }, { "title": "Website V1", From b0479811fd755ec7a5f272b3fc684c02266d8c74 Mon Sep 17 00:00:00 2001 From: J-onasJones Date: Wed, 27 Sep 2023 14:10:33 +0200 Subject: [PATCH 02/34] Fixed an issue with link font colors Fixed the tag font colors with difference between normal and hover --- src/routes/+page.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/routes/+page.css b/src/routes/+page.css index 05be1dc..c973b94 100644 --- a/src/routes/+page.css +++ b/src/routes/+page.css @@ -24,6 +24,14 @@ body { text-align: center; } +a { + color: rgb(0, 255, 0); +} + +a:hover { + color: green; +} + .parallax-background { position: fixed; top: 0; From 783a62b678ec79c9a85750082b8c0efecd3e9892 Mon Sep 17 00:00:00 2001 From: J-onasJones Date: Wed, 27 Sep 2023 14:11:51 +0200 Subject: [PATCH 03/34] Added Useful Links section Added a section to the About page, listing some useful links such as old builds index and the wiki --- src/routes/about/+page.svelte | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/routes/about/+page.svelte b/src/routes/about/+page.svelte index 90bef77..b119c13 100644 --- a/src/routes/about/+page.svelte +++ b/src/routes/about/+page.svelte @@ -60,6 +60,9 @@ Also, I like K-Pop.
I uSe ArCh BtW.

+

Useful Links

+
Old Builds
+ Wiki

Greatest Acomplishment

A severity 7.5/10 rated CVE I received for a humble project of mine From cfdd7c61d54e9102baeea8d3af60de35dbd942b6 Mon Sep 17 00:00:00 2001 From: J-onasJones Date: Wed, 27 Sep 2023 14:23:16 +0200 Subject: [PATCH 04/34] Fixed issue with background on mobile Fixed an issue where the background moves when you tap somewhere like on desktop. This makes the background look weird and has therefore been fixed --- src/routes/+page.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/routes/+page.css b/src/routes/+page.css index c973b94..5e6634d 100644 --- a/src/routes/+page.css +++ b/src/routes/+page.css @@ -47,6 +47,13 @@ a:hover { /* Place the background behind other content */ } +@media screen and (max-width: 768px) { + .parallax-background { + transform:none; + } + +} + /* Set container styles */ .container { display: flex; From 0923936258d18620f1f1cc6994cb2210be545938 Mon Sep 17 00:00:00 2001 From: J-onasJones Date: Wed, 27 Sep 2023 14:27:59 +0200 Subject: [PATCH 05/34] Added property to disable dark-reader extension Added meta property to gloablly disable DarkReader on the website. This fixes an issue where the background wouldn't render properly --- src/app.html | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app.html b/src/app.html index 423a444..3705784 100644 --- a/src/app.html +++ b/src/app.html @@ -3,6 +3,7 @@ + From 7e9110d639a1c3397c10b0a9e8e379efa6169d9c Mon Sep 17 00:00:00 2001 From: J-onasJones Date: Wed, 27 Sep 2023 15:36:14 +0200 Subject: [PATCH 06/34] Added crucial style related features Made the following changes: - Added light-mode that changes based on browser theme - Fixed style-related issues concerning the projects page - Refactored code - Fixed an issue where the LastFM music details were hidden when there was enough space to show them - --- src/components/Footer.svelte | 9 +++-- src/components/NavBar.svelte | 31 ++++++----------- src/routes/+page.css | 60 +++++++++++++++++++++++++++----- src/routes/projects/+page.svelte | 15 ++++---- 4 files changed, 79 insertions(+), 36 deletions(-) diff --git a/src/components/Footer.svelte b/src/components/Footer.svelte index d9a8cbd..6a6798e 100644 --- a/src/components/Footer.svelte +++ b/src/components/Footer.svelte @@ -2,11 +2,16 @@

Website by Jonas_Jones 2021 - 2023

+ + diff --git a/src/components/ProjectsLinks.svelte b/src/components/ProjectsLinks.svelte new file mode 100644 index 0000000..22c73f7 --- /dev/null +++ b/src/components/ProjectsLinks.svelte @@ -0,0 +1,57 @@ + + +