Merge branch 'master' into app-Mylar
This commit is contained in:
commit
586941ece7
12 changed files with 70 additions and 0 deletions
|
@ -29,6 +29,7 @@ class Item extends Model
|
|||
'AirSonic' => \App\SupportedApps\AirSonic::class,
|
||||
'Cardigann' => \App\SupportedApps\Cardigann::class,
|
||||
'CouchPotato' => \App\SupportedApps\CouchPotato::class,
|
||||
'Booksonic' => \App\SupportedApps\Booksonic::class,
|
||||
'Deluge' => \App\SupportedApps\Deluge::class,
|
||||
'Dokuwiki' => \App\SupportedApps\Dokuwiki::class,
|
||||
'Duplicati' => \App\SupportedApps\Duplicati::class,
|
||||
|
@ -37,14 +38,18 @@ class Item extends Model
|
|||
'Glances' => \App\SupportedApps\Glances::class,
|
||||
'Grafana' => \App\SupportedApps\Grafana::class,
|
||||
'Graylog' => \App\SupportedApps\Graylog::class,
|
||||
'Headphones' => \App\SupportedApps\Headphones::class,
|
||||
'Home Assistant' => \App\SupportedApps\HomeAssistant::class,
|
||||
'Jackett' => \App\SupportedApps\Jackett::class,
|
||||
'Jdownloader' => \App\SupportedApps\Jdownloader::class,
|
||||
'Krusader' => \App\SupportedApps\Krusader::class,
|
||||
'LibreNMS' => \App\SupportedApps\LibreNMS::class,
|
||||
'LazyLibrarian' => \App\SupportedApps\LazyLibrarian::class,
|
||||
'Lidarr' => \App\SupportedApps\Lidarr::class,
|
||||
'Mcmyadmin' => \App\SupportedApps\Mcmyadmin::class,
|
||||
'Medusa' => \App\SupportedApps\Medusa::class,
|
||||
'Mylar' => \App\SupportedApps\Mylar::class,
|
||||
'MusicBrainz' => \App\SupportedApps\MusicBrainz::class,
|
||||
'NZBGet' => \App\SupportedApps\Nzbget::class,
|
||||
'Netdata' => \App\SupportedApps\Netdata::class,
|
||||
'Nextcloud' => \App\SupportedApps\Nextcloud::class,
|
||||
|
|
12
app/SupportedApps/Booksonic.php
Normal file
12
app/SupportedApps/Booksonic.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php namespace App\SupportedApps;
|
||||
|
||||
class Booksonic implements Contracts\Applications {
|
||||
public function defaultColour()
|
||||
{
|
||||
return '#58a';
|
||||
}
|
||||
public function icon()
|
||||
{
|
||||
return 'supportedapps/booksonic.png';
|
||||
}
|
||||
}
|
12
app/SupportedApps/Headphones.php
Normal file
12
app/SupportedApps/Headphones.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php namespace App\SupportedApps;
|
||||
|
||||
class Headphones implements Contracts\Applications {
|
||||
public function defaultColour()
|
||||
{
|
||||
return '#185';
|
||||
}
|
||||
public function icon()
|
||||
{
|
||||
return 'supportedapps/headphones.png';
|
||||
}
|
||||
}
|
12
app/SupportedApps/LazyLibrarian.php
Normal file
12
app/SupportedApps/LazyLibrarian.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php namespace App\SupportedApps;
|
||||
|
||||
class LazyLibrarian implements Contracts\Applications {
|
||||
public function defaultColour()
|
||||
{
|
||||
return '#a50';
|
||||
}
|
||||
public function icon()
|
||||
{
|
||||
return 'supportedapps/lazylibrarian.png';
|
||||
}
|
||||
}
|
12
app/SupportedApps/LibreNMS.php
Normal file
12
app/SupportedApps/LibreNMS.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php namespace App\SupportedApps;
|
||||
|
||||
class LibreNMS implements Contracts\Applications {
|
||||
public function defaultColour()
|
||||
{
|
||||
return '#e77';
|
||||
}
|
||||
public function icon()
|
||||
{
|
||||
return 'supportedapps/librenms.png';
|
||||
}
|
||||
}
|
12
app/SupportedApps/MusicBrainz.php
Normal file
12
app/SupportedApps/MusicBrainz.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php namespace App\SupportedApps;
|
||||
|
||||
class MusicBrainz implements Contracts\Applications {
|
||||
public function defaultColour()
|
||||
{
|
||||
return '#a0a';
|
||||
}
|
||||
public function icon()
|
||||
{
|
||||
return 'supportedapps/musicbrainz.png';
|
||||
}
|
||||
}
|
|
@ -42,6 +42,7 @@ Supported applications are recognized by the title of the application as entered
|
|||
|
||||
**Foundation**
|
||||
- AirSonic
|
||||
- Booksonic
|
||||
- Cardigann
|
||||
- Deluge
|
||||
- DokuWiki
|
||||
|
@ -50,12 +51,16 @@ Supported applications are recognized by the title of the application as entered
|
|||
- Gitea
|
||||
- Grafana
|
||||
- Graylog
|
||||
- Headphones
|
||||
- Jdownloader
|
||||
- Krusader
|
||||
- LibreNMS
|
||||
- LazyLibrarian
|
||||
- Lidarr
|
||||
- McMyAdmin
|
||||
- Medusa
|
||||
- Mylar
|
||||
- MusicBrainz
|
||||
- NZBhydra & NZBhydra2
|
||||
- Netdata
|
||||
- Nextcloud
|
||||
|
|
BIN
storage/app/public/supportedapps/booksonic.png
Normal file
BIN
storage/app/public/supportedapps/booksonic.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 39 KiB |
BIN
storage/app/public/supportedapps/headphones.png
Normal file
BIN
storage/app/public/supportedapps/headphones.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 28 KiB |
BIN
storage/app/public/supportedapps/lazylibrarian.png
Normal file
BIN
storage/app/public/supportedapps/lazylibrarian.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 38 KiB |
BIN
storage/app/public/supportedapps/librenms.png
Normal file
BIN
storage/app/public/supportedapps/librenms.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 28 KiB |
BIN
storage/app/public/supportedapps/musicbrainz.png
Normal file
BIN
storage/app/public/supportedapps/musicbrainz.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 34 KiB |
Loading…
Reference in a new issue