From e681cd7ce292143db38d89c5511820853fc7df02 Mon Sep 17 00:00:00 2001 From: Julian Prieber Date: Tue, 10 Dec 2024 16:15:49 +0100 Subject: [PATCH 1/4] Update version.json to 4.8.4 --- version.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.json b/version.json index f99c6583..57c4b30b 100644 --- a/version.json +++ b/version.json @@ -1 +1 @@ -4.8.3 +4.8.4 From 51917e7685d989acb0616aa52221e08d90821ace Mon Sep 17 00:00:00 2001 From: Frank Date: Thu, 6 Feb 2025 15:15:42 +0100 Subject: [PATCH 2/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 46a3012b..83723934 100644 --- a/README.md +++ b/README.md @@ -169,7 +169,7 @@ The official docker version of [LinkStack](https://github.com/linkstackorg/links The docker version of LinkStack retains all the features and customization options of the [original version](https://github.com/linkstackorg/linkstack). -This docker is based on [Alpine Linux](https://www.alpinelinux.org), a Linux distribution designed to be small, simple and secure. The web server is running [Apache2](https://www.apache.org), a free and open-source cross-platform web server software. The docker comes with [PHP 8.0](https://www.php.net/releases/8.0/en.php) for high compatibility and performance. +This docker is based on [Alpine Linux](https://www.alpinelinux.org), a Linux distribution designed to be small, simple and secure. The web server is running [Apache2](https://www.apache.org), a free and open-source cross-platform web server software. The docker comes with [PHP 8.2](https://www.php.net/releases/8.2/en.php) for high compatibility and performance. #### Using the docker is as simple as pulling and deploying. From 2ee4436c00ed897bc2a6efb5c5cf6715d0089312 Mon Sep 17 00:00:00 2001 From: Zac Yu Date: Tue, 11 Feb 2025 23:22:01 -0500 Subject: [PATCH 3/4] Add Furtrack to the list of pre-defined sites --- assets/linkstack/css/brands.css | 10 ++++++++++ assets/linkstack/icons/furtrack.svg | 1 + database/seeders/ButtonSeeder.php | 8 ++++++++ 3 files changed, 19 insertions(+) create mode 100644 assets/linkstack/icons/furtrack.svg diff --git a/assets/linkstack/css/brands.css b/assets/linkstack/css/brands.css index aa0309a4..dc7b695d 100644 --- a/assets/linkstack/css/brands.css +++ b/assets/linkstack/css/brands.css @@ -552,6 +552,16 @@ button:hover, filter: brightness(90%); } +/* Furtrack */ +.button.button-furtrack { + color: #2D0E4C; + background-color: #000000; +} +.button.button-furtrack:hover, +.button.button-furtrack:focus { + filter: brightness(90%); +} + /* Github */ .button.button-github { color: #FFFFFF; diff --git a/assets/linkstack/icons/furtrack.svg b/assets/linkstack/icons/furtrack.svg new file mode 100644 index 00000000..9e13739b --- /dev/null +++ b/assets/linkstack/icons/furtrack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/database/seeders/ButtonSeeder.php b/database/seeders/ButtonSeeder.php index 0d726d82..4309dde4 100755 --- a/database/seeders/ButtonSeeder.php +++ b/database/seeders/ButtonSeeder.php @@ -953,6 +953,14 @@ public function run() "group" => "default", "mb" => false, ], + + [ + "name" => "furtrack", + "alt" => "Furtrack", + "exclude" => false, + "group" => "default", + "mb" => false, + ], ]; Button::insert($buttons); From f3afd23f4809eeff1691071e1dd722e5120b72a1 Mon Sep 17 00:00:00 2001 From: Zac Yu Date: Tue, 11 Feb 2025 23:35:15 -0500 Subject: [PATCH 4/4] Fix button color --- assets/linkstack/css/brands.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/linkstack/css/brands.css b/assets/linkstack/css/brands.css index dc7b695d..6ac2564d 100644 --- a/assets/linkstack/css/brands.css +++ b/assets/linkstack/css/brands.css @@ -554,8 +554,8 @@ button:hover, /* Furtrack */ .button.button-furtrack { - color: #2D0E4C; - background-color: #000000; + color: #FFFFFF; + background-color: #2D0E4C; } .button.button-furtrack:hover, .button.button-furtrack:focus {