Merge branch 'master' into patch-3
This commit is contained in:
commit
c91eb7ed47
9 changed files with 44 additions and 2 deletions
|
@ -26,6 +26,7 @@ class Item extends Model
|
|||
public static function supportedList()
|
||||
{
|
||||
return [
|
||||
'AirSonic' => \App\SupportedApps\AirSonic::class,
|
||||
'CouchPotato' => \App\SupportedApps\CouchPotato::class,
|
||||
'Deluge' => \App\SupportedApps\Deluge::class,
|
||||
'Dokuwiki' => \App\SupportedApps\Dokuwiki::class,
|
||||
|
@ -48,6 +49,7 @@ class Item extends Model
|
|||
'OPNSense' => \App\SupportedApps\Opnsense::class,
|
||||
'Ombi' => \App\SupportedApps\Ombi::class,
|
||||
'Openhab' => \App\SupportedApps\Openhab::class,
|
||||
'OpenMediaVault' => \App\SupportedApps\OpenMediaVault::class,
|
||||
'Pihole' => \App\SupportedApps\Pihole::class,
|
||||
'Plex' => \App\SupportedApps\Plex::class,
|
||||
'Plexpy' => \App\SupportedApps\Plexpy::class,
|
||||
|
@ -62,11 +64,12 @@ class Item extends Model
|
|||
'Tautulli' => \App\SupportedApps\Tautulli::class,
|
||||
'Transmission' => \App\SupportedApps\Transmission::class,
|
||||
'Traefik' => \App\SupportedApps\Traefik::class,
|
||||
'Ttrss' => \App\SupportedApps\Ttrss::class,
|
||||
'tt-rss' => \App\SupportedApps\Ttrss::class,
|
||||
'UniFi' => \App\SupportedApps\Unifi::class,
|
||||
'pFsense' => \App\SupportedApps\Pfsense::class,
|
||||
'pfSense' => \App\SupportedApps\Pfsense::class,
|
||||
'ruTorrent' => \App\SupportedApps\ruTorrent::class,
|
||||
'Watcher3' => \App\SupportedApps\Watcher3::class,
|
||||
'WebTools' => \App\SupportedApps\WebTools::class,
|
||||
];
|
||||
}
|
||||
public static function supportedOptions()
|
||||
|
|
12
app/SupportedApps/AirSonic.php
Normal file
12
app/SupportedApps/AirSonic.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
|
||||
<?php namespace App\SupportedApps;
|
||||
class AirSonic implements Contracts\Applications {
|
||||
public function defaultColour()
|
||||
{
|
||||
return '#08F';
|
||||
}
|
||||
public function icon()
|
||||
{
|
||||
return 'supportedapps/airsonic.png';
|
||||
}
|
||||
}
|
12
app/SupportedApps/OpenMediaVault.php
Normal file
12
app/SupportedApps/OpenMediaVault.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
|
||||
<?php namespace App\SupportedApps;
|
||||
class OpenMediaVault implements Contracts\Applications {
|
||||
public function defaultColour()
|
||||
{
|
||||
return '#5AF';
|
||||
}
|
||||
public function icon()
|
||||
{
|
||||
return 'supportedapps/openmediavault.png';
|
||||
}
|
||||
}
|
12
app/SupportedApps/WebTools.php
Normal file
12
app/SupportedApps/WebTools.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
|
||||
<?php namespace App\SupportedApps;
|
||||
class WebTools implements Contracts\Applications {
|
||||
public function defaultColour()
|
||||
{
|
||||
return '#555';
|
||||
}
|
||||
public function icon()
|
||||
{
|
||||
return 'supportedapps/webtools.png';
|
||||
}
|
||||
}
|
|
@ -39,6 +39,7 @@ You can use the app to link to any site or application, but Foundation apps will
|
|||
- Transmission
|
||||
|
||||
**Foundation**
|
||||
- AirSonic
|
||||
- Deluge
|
||||
- DokuWiki
|
||||
- Duplicati
|
||||
|
@ -55,6 +56,7 @@ You can use the app to link to any site or application, but Foundation apps will
|
|||
- Nextcloud
|
||||
- Ombi
|
||||
- OpenHAB
|
||||
- OpenMediaVault
|
||||
- Plex
|
||||
- Plexrequests
|
||||
- Portainer
|
||||
|
@ -67,6 +69,7 @@ You can use the app to link to any site or application, but Foundation apps will
|
|||
- pfSense
|
||||
- rTorrent/ruTorrent
|
||||
- Watcher3
|
||||
- WebTools
|
||||
|
||||
## Installing
|
||||
Apart from the Laravel dependencies, namely PHP >= 7.0.0, OpenSSL PHP Extension, PDO PHP Extension, Mbstring PHP Extension, Tokenizer PHP Extension and XML PHP Extension, the only other thing Heimdall needs is sqlite support.
|
||||
|
|
BIN
storage/app/public/supportedapps/airsonic.png
Normal file
BIN
storage/app/public/supportedapps/airsonic.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.9 KiB |
BIN
storage/app/public/supportedapps/openmediavault.png
Normal file
BIN
storage/app/public/supportedapps/openmediavault.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.3 KiB |
Binary file not shown.
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 19 KiB |
BIN
storage/app/public/supportedapps/webtools.png
Normal file
BIN
storage/app/public/supportedapps/webtools.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 52 KiB |
Loading…
Reference in a new issue