Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
10 changes: 10 additions & 0 deletions assets/linkstack/css/brands.css
Original file line number Diff line number Diff line change
Expand Up @@ -552,6 +552,16 @@ button:hover,
filter: brightness(90%);
}

/* Furtrack */
.button.button-furtrack {
color: #FFFFFF;
background-color: #2D0E4C;
}
.button.button-furtrack:hover,
.button.button-furtrack:focus {
filter: brightness(90%);
}

/* Github */
.button.button-github {
color: #FFFFFF;
Expand Down
1 change: 1 addition & 0 deletions assets/linkstack/icons/furtrack.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions database/seeders/ButtonSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -953,6 +953,14 @@ public function run()
"group" => "default",
"mb" => false,
],

[
"name" => "furtrack",
"alt" => "Furtrack",
"exclude" => false,
"group" => "default",
"mb" => false,
],
];

Button::insert($buttons);
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.8.3
4.8.4