mirror of
https://github.com/linuxserver/Heimdall.git
synced 2025-11-04 06:52:41 +09:00
Revert "Merge branch 'master' into app-Mylar"
This reverts commit586941ece7, reversing changes made to263a4578d4.
This commit is contained in:
@@ -29,7 +29,6 @@ class Item extends Model
|
|||||||
'AirSonic' => \App\SupportedApps\AirSonic::class,
|
'AirSonic' => \App\SupportedApps\AirSonic::class,
|
||||||
'Cardigann' => \App\SupportedApps\Cardigann::class,
|
'Cardigann' => \App\SupportedApps\Cardigann::class,
|
||||||
'CouchPotato' => \App\SupportedApps\CouchPotato::class,
|
'CouchPotato' => \App\SupportedApps\CouchPotato::class,
|
||||||
'Booksonic' => \App\SupportedApps\Booksonic::class,
|
|
||||||
'Deluge' => \App\SupportedApps\Deluge::class,
|
'Deluge' => \App\SupportedApps\Deluge::class,
|
||||||
'Dokuwiki' => \App\SupportedApps\Dokuwiki::class,
|
'Dokuwiki' => \App\SupportedApps\Dokuwiki::class,
|
||||||
'Duplicati' => \App\SupportedApps\Duplicati::class,
|
'Duplicati' => \App\SupportedApps\Duplicati::class,
|
||||||
@@ -38,18 +37,14 @@ class Item extends Model
|
|||||||
'Glances' => \App\SupportedApps\Glances::class,
|
'Glances' => \App\SupportedApps\Glances::class,
|
||||||
'Grafana' => \App\SupportedApps\Grafana::class,
|
'Grafana' => \App\SupportedApps\Grafana::class,
|
||||||
'Graylog' => \App\SupportedApps\Graylog::class,
|
'Graylog' => \App\SupportedApps\Graylog::class,
|
||||||
'Headphones' => \App\SupportedApps\Headphones::class,
|
|
||||||
'Home Assistant' => \App\SupportedApps\HomeAssistant::class,
|
'Home Assistant' => \App\SupportedApps\HomeAssistant::class,
|
||||||
'Jackett' => \App\SupportedApps\Jackett::class,
|
'Jackett' => \App\SupportedApps\Jackett::class,
|
||||||
'Jdownloader' => \App\SupportedApps\Jdownloader::class,
|
'Jdownloader' => \App\SupportedApps\Jdownloader::class,
|
||||||
'Krusader' => \App\SupportedApps\Krusader::class,
|
'Krusader' => \App\SupportedApps\Krusader::class,
|
||||||
'LibreNMS' => \App\SupportedApps\LibreNMS::class,
|
|
||||||
'LazyLibrarian' => \App\SupportedApps\LazyLibrarian::class,
|
|
||||||
'Lidarr' => \App\SupportedApps\Lidarr::class,
|
'Lidarr' => \App\SupportedApps\Lidarr::class,
|
||||||
'Mcmyadmin' => \App\SupportedApps\Mcmyadmin::class,
|
'Mcmyadmin' => \App\SupportedApps\Mcmyadmin::class,
|
||||||
'Medusa' => \App\SupportedApps\Medusa::class,
|
'Medusa' => \App\SupportedApps\Medusa::class,
|
||||||
'Mylar' => \App\SupportedApps\Mylar::class,
|
'Mylar' => \App\SupportedApps\Mylar::class,
|
||||||
'MusicBrainz' => \App\SupportedApps\MusicBrainz::class,
|
|
||||||
'NZBGet' => \App\SupportedApps\Nzbget::class,
|
'NZBGet' => \App\SupportedApps\Nzbget::class,
|
||||||
'Netdata' => \App\SupportedApps\Netdata::class,
|
'Netdata' => \App\SupportedApps\Netdata::class,
|
||||||
'Nextcloud' => \App\SupportedApps\Nextcloud::class,
|
'Nextcloud' => \App\SupportedApps\Nextcloud::class,
|
||||||
|
|||||||
@@ -1,12 +0,0 @@
|
|||||||
<?php namespace App\SupportedApps;
|
|
||||||
|
|
||||||
class Booksonic implements Contracts\Applications {
|
|
||||||
public function defaultColour()
|
|
||||||
{
|
|
||||||
return '#58a';
|
|
||||||
}
|
|
||||||
public function icon()
|
|
||||||
{
|
|
||||||
return 'supportedapps/booksonic.png';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
<?php namespace App\SupportedApps;
|
|
||||||
|
|
||||||
class Headphones implements Contracts\Applications {
|
|
||||||
public function defaultColour()
|
|
||||||
{
|
|
||||||
return '#185';
|
|
||||||
}
|
|
||||||
public function icon()
|
|
||||||
{
|
|
||||||
return 'supportedapps/headphones.png';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
<?php namespace App\SupportedApps;
|
|
||||||
|
|
||||||
class LazyLibrarian implements Contracts\Applications {
|
|
||||||
public function defaultColour()
|
|
||||||
{
|
|
||||||
return '#a50';
|
|
||||||
}
|
|
||||||
public function icon()
|
|
||||||
{
|
|
||||||
return 'supportedapps/lazylibrarian.png';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
<?php namespace App\SupportedApps;
|
|
||||||
|
|
||||||
class LibreNMS implements Contracts\Applications {
|
|
||||||
public function defaultColour()
|
|
||||||
{
|
|
||||||
return '#e77';
|
|
||||||
}
|
|
||||||
public function icon()
|
|
||||||
{
|
|
||||||
return 'supportedapps/librenms.png';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
<?php namespace App\SupportedApps;
|
|
||||||
|
|
||||||
class MusicBrainz implements Contracts\Applications {
|
|
||||||
public function defaultColour()
|
|
||||||
{
|
|
||||||
return '#a0a';
|
|
||||||
}
|
|
||||||
public function icon()
|
|
||||||
{
|
|
||||||
return 'supportedapps/musicbrainz.png';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -42,7 +42,6 @@ Supported applications are recognized by the title of the application as entered
|
|||||||
|
|
||||||
**Foundation**
|
**Foundation**
|
||||||
- AirSonic
|
- AirSonic
|
||||||
- Booksonic
|
|
||||||
- Cardigann
|
- Cardigann
|
||||||
- Deluge
|
- Deluge
|
||||||
- DokuWiki
|
- DokuWiki
|
||||||
@@ -51,16 +50,12 @@ Supported applications are recognized by the title of the application as entered
|
|||||||
- Gitea
|
- Gitea
|
||||||
- Grafana
|
- Grafana
|
||||||
- Graylog
|
- Graylog
|
||||||
- Headphones
|
|
||||||
- Jdownloader
|
- Jdownloader
|
||||||
- Krusader
|
- Krusader
|
||||||
- LibreNMS
|
|
||||||
- LazyLibrarian
|
|
||||||
- Lidarr
|
- Lidarr
|
||||||
- McMyAdmin
|
- McMyAdmin
|
||||||
- Medusa
|
- Medusa
|
||||||
- Mylar
|
- Mylar
|
||||||
- MusicBrainz
|
|
||||||
- NZBhydra & NZBhydra2
|
- NZBhydra & NZBhydra2
|
||||||
- Netdata
|
- Netdata
|
||||||
- Nextcloud
|
- Nextcloud
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 39 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 28 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 38 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 28 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 34 KiB |
Reference in New Issue
Block a user