mirror of
https://github.com/linuxserver/Heimdall.git
synced 2025-12-01 20:49:53 +09:00
Merge branch 'master' into patch-3
This commit is contained in:
@@ -26,6 +26,7 @@ class Item extends Model
|
|||||||
public static function supportedList()
|
public static function supportedList()
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
|
'AirSonic' => \App\SupportedApps\AirSonic::class,
|
||||||
'CouchPotato' => \App\SupportedApps\CouchPotato::class,
|
'CouchPotato' => \App\SupportedApps\CouchPotato::class,
|
||||||
'Deluge' => \App\SupportedApps\Deluge::class,
|
'Deluge' => \App\SupportedApps\Deluge::class,
|
||||||
'Dokuwiki' => \App\SupportedApps\Dokuwiki::class,
|
'Dokuwiki' => \App\SupportedApps\Dokuwiki::class,
|
||||||
@@ -48,6 +49,7 @@ class Item extends Model
|
|||||||
'OPNSense' => \App\SupportedApps\Opnsense::class,
|
'OPNSense' => \App\SupportedApps\Opnsense::class,
|
||||||
'Ombi' => \App\SupportedApps\Ombi::class,
|
'Ombi' => \App\SupportedApps\Ombi::class,
|
||||||
'Openhab' => \App\SupportedApps\Openhab::class,
|
'Openhab' => \App\SupportedApps\Openhab::class,
|
||||||
|
'OpenMediaVault' => \App\SupportedApps\OpenMediaVault::class,
|
||||||
'Pihole' => \App\SupportedApps\Pihole::class,
|
'Pihole' => \App\SupportedApps\Pihole::class,
|
||||||
'Plex' => \App\SupportedApps\Plex::class,
|
'Plex' => \App\SupportedApps\Plex::class,
|
||||||
'Plexpy' => \App\SupportedApps\Plexpy::class,
|
'Plexpy' => \App\SupportedApps\Plexpy::class,
|
||||||
@@ -62,11 +64,12 @@ class Item extends Model
|
|||||||
'Tautulli' => \App\SupportedApps\Tautulli::class,
|
'Tautulli' => \App\SupportedApps\Tautulli::class,
|
||||||
'Transmission' => \App\SupportedApps\Transmission::class,
|
'Transmission' => \App\SupportedApps\Transmission::class,
|
||||||
'Traefik' => \App\SupportedApps\Traefik::class,
|
'Traefik' => \App\SupportedApps\Traefik::class,
|
||||||
'Ttrss' => \App\SupportedApps\Ttrss::class,
|
'tt-rss' => \App\SupportedApps\Ttrss::class,
|
||||||
'UniFi' => \App\SupportedApps\Unifi::class,
|
'UniFi' => \App\SupportedApps\Unifi::class,
|
||||||
'pFsense' => \App\SupportedApps\Pfsense::class,
|
'pfSense' => \App\SupportedApps\Pfsense::class,
|
||||||
'ruTorrent' => \App\SupportedApps\ruTorrent::class,
|
'ruTorrent' => \App\SupportedApps\ruTorrent::class,
|
||||||
'Watcher3' => \App\SupportedApps\Watcher3::class,
|
'Watcher3' => \App\SupportedApps\Watcher3::class,
|
||||||
|
'WebTools' => \App\SupportedApps\WebTools::class,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
public static function supportedOptions()
|
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
|
- Transmission
|
||||||
|
|
||||||
**Foundation**
|
**Foundation**
|
||||||
|
- AirSonic
|
||||||
- Deluge
|
- Deluge
|
||||||
- DokuWiki
|
- DokuWiki
|
||||||
- Duplicati
|
- Duplicati
|
||||||
@@ -55,6 +56,7 @@ You can use the app to link to any site or application, but Foundation apps will
|
|||||||
- Nextcloud
|
- Nextcloud
|
||||||
- Ombi
|
- Ombi
|
||||||
- OpenHAB
|
- OpenHAB
|
||||||
|
- OpenMediaVault
|
||||||
- Plex
|
- Plex
|
||||||
- Plexrequests
|
- Plexrequests
|
||||||
- Portainer
|
- Portainer
|
||||||
@@ -67,6 +69,7 @@ You can use the app to link to any site or application, but Foundation apps will
|
|||||||
- pfSense
|
- pfSense
|
||||||
- rTorrent/ruTorrent
|
- rTorrent/ruTorrent
|
||||||
- Watcher3
|
- Watcher3
|
||||||
|
- WebTools
|
||||||
|
|
||||||
## Installing
|
## 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.
|
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 |
Reference in New Issue
Block a user