Browse Source

Merge pull request #1 from linuxserver/master

Rebase
pull/246/head
chbmb 7 years ago
committed by GitHub
parent
commit
a138b65842
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      app/Item.php
  2. 14
      app/SupportedApps/BookStack.php
  3. 11
      app/SupportedApps/FreshRSS.php
  4. 4
      app/SupportedApps/Pfsense.php
  5. 14
      app/SupportedApps/TVheadend.php
  6. 2
      app/SupportedApps/Unraid.php
  7. 2
      readme.md
  8. BIN
      storage/app/public/supportedapps/bookstack.png
  9. BIN
      storage/app/public/supportedapps/freshrss.png
  10. BIN
      storage/app/public/supportedapps/pfsense.png
  11. BIN
      storage/app/public/supportedapps/tvheadend.png
  12. BIN
      storage/app/public/supportedapps/unraid.png
  13. BIN
      storage/app/public/supportedapps/unraid3.png

3
app/Item.php

@ -30,11 +30,13 @@ class Item extends Model
'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,
@ -76,6 +78,7 @@ class Item extends Model
'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,

14
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
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
app/SupportedApps/Pfsense.php

@ -3,10 +3,10 @@
class Pfsense implements Contracts\Applications {
public function defaultColour()
{
return '#4e4742';
return '#243699';
}
public function icon()
{
return 'supportedapps/pfsense.png';
}
}
}

14
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
app/SupportedApps/Unraid.php

@ -3,7 +3,7 @@
class Unraid implements Contracts\Applications {
public function defaultColour()
{
return '#3B5E1F';
return '#A12624';
}
public function icon()
{

2
readme.md

@ -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

BIN
storage/app/public/supportedapps/bookstack.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

BIN
storage/app/public/supportedapps/freshrss.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

BIN
storage/app/public/supportedapps/pfsense.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.6 KiB

After

Width:  |  Height:  |  Size: 23 KiB

BIN
storage/app/public/supportedapps/tvheadend.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
storage/app/public/supportedapps/unraid.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 6.5 KiB

BIN
storage/app/public/supportedapps/unraid3.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Loading…
Cancel
Save