Skip to content

Commit

Permalink
Merge pull request #1 from linuxserver/master
Browse files Browse the repository at this point in the history
Rebase
  • Loading branch information
CHBMB committed Sep 13, 2018
2 parents ecde7a0 + c344de3 commit a138b65
Show file tree
Hide file tree
Showing 13 changed files with 47 additions and 3 deletions.
3 changes: 3 additions & 0 deletions app/Item.php
Expand Up @@ -30,11 +30,13 @@ public static function supportedList()
'Cardigann' => \App\SupportedApps\Cardigann::class,
'CouchPotato' => \App\SupportedApps\CouchPotato::class,
'Booksonic' => \App\SupportedApps\Booksonic::class,
'BookStack' => \App\SupportedApps\BookStack::class,
'Deluge' => \App\SupportedApps\Deluge::class,
'Dokuwiki' => \App\SupportedApps\Dokuwiki::class,
'Duplicati' => \App\SupportedApps\Duplicati::class,
'Emby' => \App\SupportedApps\Emby::class,
'Flood' => \App\SupportedApps\Flood::class,
'FreshRSS' => \App\SupportedApps\FreshRSS::class,
'Gitea' => \App\SupportedApps\Gitea::class,
'Glances' => \App\SupportedApps\Glances::class,
'Grafana' => \App\SupportedApps\Grafana::class,
Expand Down Expand Up @@ -76,6 +78,7 @@ public static function supportedList()
'Transmission' => \App\SupportedApps\Transmission::class,
'Traefik' => \App\SupportedApps\Traefik::class,
'tt-rss' => \App\SupportedApps\Ttrss::class,
'TVheadend' => \App\SupportedApps\TVheadend::class,
'UniFi' => \App\SupportedApps\Unifi::class,
'unRAID' => \App\SupportedApps\Unraid::class,
'pfSense' => \App\SupportedApps\Pfsense::class,
Expand Down
14 changes: 14 additions & 0 deletions app/SupportedApps/BookStack.php
@@ -0,0 +1,14 @@
<?php namespace App\SupportedApps;

class BookStack implements Contracts\Applications {

public function defaultColour()
{
return '#02679E';
}
public function icon()
{
return 'supportedapps/bookstack.png';
}

}
11 changes: 11 additions & 0 deletions app/SupportedApps/FreshRSS.php
@@ -0,0 +1,11 @@
<?php namespace App\SupportedApps;
class FreshRSS implements Contracts\Applications {
public function defaultColour()
{
return '#003B73';
}
public function icon()
{
return 'supportedapps/freshrss.png';
}
}
4 changes: 2 additions & 2 deletions app/SupportedApps/Pfsense.php
Expand Up @@ -3,10 +3,10 @@
class Pfsense implements Contracts\Applications {
public function defaultColour()
{
return '#4e4742';
return '#243699';
}
public function icon()
{
return 'supportedapps/pfsense.png';
}
}
}
14 changes: 14 additions & 0 deletions app/SupportedApps/TVheadend.php
@@ -0,0 +1,14 @@
<?php namespace App\SupportedApps;

class TVheadend implements Contracts\Applications {

public function defaultColour()
{
return '#006080';
}
public function icon()
{
return 'supportedapps/tvheadend.png';
}

}
2 changes: 1 addition & 1 deletion app/SupportedApps/Unraid.php
Expand Up @@ -3,7 +3,7 @@
class Unraid implements Contracts\Applications {
public function defaultColour()
{
return '#3B5E1F';
return '#A12624';
}
public function icon()
{
Expand Down
2 changes: 2 additions & 0 deletions readme.md
Expand Up @@ -45,10 +45,12 @@ Supported applications are recognized by the title of the application as entered
**Foundation**
- AirSonic
- Booksonic
- BookStack
- Cardigann
- DokuWiki
- Duplicati
- Emby
- FreshRSS
- Gitea
- Grafana
- Graylog
Expand Down
Binary file added storage/app/public/supportedapps/bookstack.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added storage/app/public/supportedapps/freshrss.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified storage/app/public/supportedapps/pfsense.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added storage/app/public/supportedapps/tvheadend.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified storage/app/public/supportedapps/unraid.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added storage/app/public/supportedapps/unraid3.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit a138b65

Please sign in to comment.