From 789ffad90dd7f31ee5b5db160ff86f58e6ec6b56 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Apr 2023 06:05:16 +0000 Subject: [PATCH 1/6] Bump phpunit/phpunit from 9.6.6 to 9.6.7 Bumps [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) from 9.6.6 to 9.6.7. - [Release notes](https://github.com/sebastianbergmann/phpunit/releases) - [Changelog](https://github.com/sebastianbergmann/phpunit/blob/9.6.7/ChangeLog-9.6.md) - [Commits](https://github.com/sebastianbergmann/phpunit/compare/9.6.6...9.6.7) --- updated-dependencies: - dependency-name: phpunit/phpunit dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- composer.lock | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/composer.lock b/composer.lock index b474646..68a80fd 100644 --- a/composer.lock +++ b/composer.lock @@ -6796,16 +6796,16 @@ }, { "name": "phpunit/phpunit", - "version": "9.6.6", + "version": "9.6.7", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "b65d59a059d3004a040c16a82e07bbdf6cfdd115" + "reference": "c993f0d3b0489ffc42ee2fe0bd645af1538a63b2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b65d59a059d3004a040c16a82e07bbdf6cfdd115", - "reference": "b65d59a059d3004a040c16a82e07bbdf6cfdd115", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c993f0d3b0489ffc42ee2fe0bd645af1538a63b2", + "reference": "c993f0d3b0489ffc42ee2fe0bd645af1538a63b2", "shasum": "" }, "require": { @@ -6879,7 +6879,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.6" + "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.7" }, "funding": [ { @@ -6895,7 +6895,7 @@ "type": "tidelift" } ], - "time": "2023-03-27T11:43:46+00:00" + "time": "2023-04-14T08:58:40+00:00" }, { "name": "sebastian/cli-parser", From bec79fa2594a354036cd01434dde08393c6b0f9e Mon Sep 17 00:00:00 2001 From: Thomas G <62822072+Thomasluigi07@users.noreply.github.com> Date: Wed, 19 Apr 2023 17:26:58 +1000 Subject: [PATCH 2/6] Fix JS error --- maintenance/404.html | 2 +- maintenance/blog.html | 2 +- maintenance/buttonhell.html | 2 +- maintenance/download.html | 2 +- maintenance/index.html | 2 +- maintenance/mascot.html | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/maintenance/404.html b/maintenance/404.html index ce44c9e..d08cbb2 100644 --- a/maintenance/404.html +++ b/maintenance/404.html @@ -28,7 +28,7 @@ } } - + diff --git a/maintenance/blog.html b/maintenance/blog.html index 06afbc6..f60c1f3 100644 --- a/maintenance/blog.html +++ b/maintenance/blog.html @@ -28,7 +28,7 @@ } } - + diff --git a/maintenance/buttonhell.html b/maintenance/buttonhell.html index b158e9d..1243437 100644 --- a/maintenance/buttonhell.html +++ b/maintenance/buttonhell.html @@ -28,7 +28,7 @@ } } - + diff --git a/maintenance/download.html b/maintenance/download.html index 16a943e..52376b7 100644 --- a/maintenance/download.html +++ b/maintenance/download.html @@ -28,7 +28,7 @@ } } - + diff --git a/maintenance/index.html b/maintenance/index.html index ce44c9e..d08cbb2 100644 --- a/maintenance/index.html +++ b/maintenance/index.html @@ -28,7 +28,7 @@ } } - + diff --git a/maintenance/mascot.html b/maintenance/mascot.html index d44d7ae..4b8810e 100644 --- a/maintenance/mascot.html +++ b/maintenance/mascot.html @@ -28,7 +28,7 @@ } } - + From 79c82340390a22b5ea524e6097ed46e98d8c9e80 Mon Sep 17 00:00:00 2001 From: Thomas G <62822072+Thomasluigi07@users.noreply.github.com> Date: Wed, 19 Apr 2023 17:37:05 +1000 Subject: [PATCH 3/6] fix laravel leftover in darkmode --- maintenance/js/darkmode.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintenance/js/darkmode.js b/maintenance/js/darkmode.js index 94b57db..1889335 100644 --- a/maintenance/js/darkmode.js +++ b/maintenance/js/darkmode.js @@ -2,7 +2,7 @@ function getDarkMode() { var currentTime = new Date().getHours(); if (6 >= currentTime || currentTime > 18) { var li = document.createElement('link'); - var href = "{{ asset('css/appdark.css?id='.Str::random(8)) }}"; + var href = "https://archblox.com/css/appdark.css"; var rel = 'stylesheet'; li.setAttribute('href', href); li.setAttribute('rel', rel); From 37dd64b57567bb205928115e7d72d1fbb88f974a Mon Sep 17 00:00:00 2001 From: Thomas G <62822072+Thomasluigi07@users.noreply.github.com> Date: Wed, 19 Apr 2023 17:47:21 +1000 Subject: [PATCH 4/6] fix dark mode css --- maintenance/css/appdark.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/maintenance/css/appdark.css b/maintenance/css/appdark.css index dc73a4b..0f6c3c0 100644 --- a/maintenance/css/appdark.css +++ b/maintenance/css/appdark.css @@ -75,7 +75,8 @@ body { .content_signup { color: rgb(167, 167, 167); - background: rgb(25, 25, 25); + background-color: rgba(0,0,0,0.5); + background: rgba(0,0,0,0.5) } .content p a, @@ -92,7 +93,7 @@ body { } #footer_signup { - background: rgb(0, 0, 0); + /*background: rgb(0, 0, 0);*/ } #footer p, From 6da360d7d74d02e2f21c6506e33536d8e30ee316 Mon Sep 17 00:00:00 2001 From: Thomas G <62822072+Thomasluigi07@users.noreply.github.com> Date: Wed, 19 Apr 2023 17:47:48 +1000 Subject: [PATCH 5/6] fix dark mode css --- public/css/appdark.css | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/public/css/appdark.css b/public/css/appdark.css index 56d4aca..0f6c3c0 100644 --- a/public/css/appdark.css +++ b/public/css/appdark.css @@ -73,6 +73,12 @@ body { background: rgb(25, 25, 25); } +.content_signup { + color: rgb(167, 167, 167); + background-color: rgba(0,0,0,0.5); + background: rgba(0,0,0,0.5) +} + .content p a, .content a, .content_signup p a, @@ -86,6 +92,17 @@ body { background: rgb(31, 31, 31); } +#footer_signup { + /*background: rgb(0, 0, 0);*/ +} + +#footer p, +#footer a, +#footer_signup p, +#footer_signup a { + color: rgb(167, 167, 167); +} + a, #navbarusername { color: rgb(215, 215, 215);