]> git.mxchange.org Git - friendica.git/commitdiff
More system are added to the federation page
authorMichael <heluecht@pirati.ca>
Fri, 4 Feb 2022 20:45:27 +0000 (20:45 +0000)
committerMichael <heluecht@pirati.ca>
Fri, 4 Feb 2022 20:45:27 +0000 (20:45 +0000)
src/Module/Admin/Federation.php

index 9e039fc84c715cea4bd9ec3fa6d56ad874a60caa..8f9f69de43bb9de2fd2aa96fbbd7e7124f43e0c5 100644 (file)
@@ -35,25 +35,28 @@ class Federation extends BaseAdmin
                // get counts on active federation systems this node is knowing
                // We list the more common systems by name. The rest is counted as "other"
                $systems = [
-                       'friendica'   => ['name' => 'Friendica', 'color' => '#ffc018'], // orange from the logo
-                       'diaspora'    => ['name' => 'Diaspora', 'color' => '#a1a1a1'], // logo is black and white, makes a gray
-                       'funkwhale'   => ['name' => 'Funkwhale', 'color' => '#4082B4'], // From the homepage
-                       'gnusocial'   => ['name' => 'GNU Social/Statusnet', 'color' => '#a22430'], // dark red from the logo
-                       'hubzilla'    => ['name' => 'Hubzilla/Red Matrix', 'color' => '#43488a'], // blue from the logo
-                       'mastodon'    => ['name' => 'Mastodon', 'color' => '#1a9df9'], // blue from the Mastodon logo
-                       'misskey'     => ['name' => 'Misskey', 'color' => '#ccfefd'], // Font color of the homepage
-                       'mobilizon'   => ['name' => 'Mobilizon', 'color' => '#ffd599'], // Background color of parts of the homepage
-                       'nextcloud'   => ['name' => 'Nextcloud', 'color' => '#1cafff'], // Logo color
-                       'peertube'    => ['name' => 'Peertube', 'color' => '#ffad5c'], // One of the logo colors
-                       'pixelfed'    => ['name' => 'Pixelfed', 'color' => '#11da47'], // One of the logo colors
-                       'pleroma'     => ['name' => 'Pleroma', 'color' => '#E46F0F'], // Orange from the text that is used on Pleroma instances
-                       'plume'       => ['name' => 'Plume', 'color' => '#7765e3'], // From the homepage
-                       'socialhome'  => ['name' => 'SocialHome', 'color' => '#52056b'], // lilac from the Django Image used at the Socialhome homepage
-                       'wordpress'   => ['name' => 'WordPress', 'color' => '#016087'], // Background color of the homepage
-                       'writefreely' => ['name' => 'WriteFreely', 'color' => '#292929'], // Font color of the homepage
-                       'mistpark'    => ['name' => 'Nomad projects (Mistpark, Osada, Roadhouse, Zap)', 'color' => '#348a4a'], // Green like the Mistpark green
-                       'relay'       => ['name' => 'ActivityPub Relay', 'color' => '#888888'], // Grey like the second color of the ActivityPub logo
-                       'other'       => ['name' => DI::l10n()->t('Other'), 'color' => '#F1007E'], // ActivityPub main color
+                       'friendica'    => ['name' => 'Friendica', 'color' => '#ffc018'], // orange from the logo
+                       'birdsitelive' => ['name' => 'BirdsiteLIVE', 'color' => '#1b6ec2'], // Color from the page
+                       'bookwyrm'     => ['name' => 'BookWyrm', 'color' => '#00d1b2'], // Color from the page
+                       'diaspora'     => ['name' => 'Diaspora', 'color' => '#a1a1a1'], // logo is black and white, makes a gray
+                       'funkwhale'    => ['name' => 'Funkwhale', 'color' => '#4082B4'], // From the homepage
+                       'gnusocial'    => ['name' => 'GNU Social/Statusnet', 'color' => '#a22430'], // dark red from the logo
+                       'hubzilla'     => ['name' => 'Hubzilla/Red Matrix', 'color' => '#43488a'], // blue from the logo
+                       'lemmy'        => ['name' => 'Lemmy', 'color' => '#00c853'], // Green from the page
+                       'mastodon'     => ['name' => 'Mastodon', 'color' => '#1a9df9'], // blue from the Mastodon logo
+                       'misskey'      => ['name' => 'Misskey', 'color' => '#ccfefd'], // Font color of the homepage
+                       'mobilizon'    => ['name' => 'Mobilizon', 'color' => '#ffd599'], // Background color of parts of the homepage
+                       'nextcloud'    => ['name' => 'Nextcloud', 'color' => '#1cafff'], // Logo color
+                       'mistpark'     => ['name' => 'Nomad projects (Mistpark, Osada, Roadhouse, Zap)', 'color' => '#348a4a'], // Green like the Mistpark green
+                       'peertube'     => ['name' => 'Peertube', 'color' => '#ffad5c'], // One of the logo colors
+                       'pixelfed'     => ['name' => 'Pixelfed', 'color' => '#11da47'], // One of the logo colors
+                       'pleroma'      => ['name' => 'Pleroma', 'color' => '#E46F0F'], // Orange from the text that is used on Pleroma instances
+                       'plume'        => ['name' => 'Plume', 'color' => '#7765e3'], // From the homepage
+                       'relay'        => ['name' => 'ActivityPub Relay', 'color' => '#888888'], // Grey like the second color of the ActivityPub logo
+                       'socialhome'   => ['name' => 'SocialHome', 'color' => '#52056b'], // lilac from the Django Image used at the Socialhome homepage
+                       'wordpress'    => ['name' => 'WordPress', 'color' => '#016087'], // Background color of the homepage
+                       'writefreely'  => ['name' => 'WriteFreely', 'color' => '#292929'], // Font color of the homepage
+                       'other'        => ['name' => DI::l10n()->t('Other'), 'color' => '#F1007E'], // ActivityPub main color
                ];
 
                $platforms = array_keys($systems);