feat: added Jdownloader to supported Apps - Closes #26
This commit is contained in:
parent
7f0a33e36a
commit
d299e1dbb9
4 changed files with 19 additions and 5 deletions
|
@ -28,15 +28,16 @@ class Item extends Model
|
|||
return [
|
||||
'Duplicati' => \App\SupportedApps\Duplicati::class,
|
||||
'Emby' => \App\SupportedApps\Emby::class,
|
||||
'Jdownloader' => \App\SupportedApps\Jdownloader::class,
|
||||
'NZBGet' => \App\SupportedApps\Nzbget::class,
|
||||
'pFsense' => \App\SupportedApps\Pfsense::class,
|
||||
'Nextcloud' => \App\SupportedApps\Nextcloud::class,
|
||||
'Pihole' => \App\SupportedApps\Pihole::class,
|
||||
'Plex' => \App\SupportedApps\Plex::class,
|
||||
'Plexpy' => \App\SupportedApps\Plexpy::class,
|
||||
'Portainer' => \App\SupportedApps\Portainer::class,
|
||||
'UniFi' => \App\SupportedApps\Unifi::class,
|
||||
'Nextcloud' => \App\SupportedApps\Nextcloud::class,
|
||||
'Sabnzbd' => \App\SupportedApps\Sabnzbd::class,
|
||||
'UniFi' => \App\SupportedApps\Unifi::class,
|
||||
'pFsense' => \App\SupportedApps\Pfsense::class,
|
||||
];
|
||||
}
|
||||
public static function supportedOptions()
|
||||
|
|
12
app/SupportedApps/Jdownloader.php
Normal file
12
app/SupportedApps/Jdownloader.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php namespace App\SupportedApps;
|
||||
|
||||
class Jdownloader implements Contracts\Applications {
|
||||
public function defaultColour()
|
||||
{
|
||||
return '#2b494f';
|
||||
}
|
||||
public function icon()
|
||||
{
|
||||
return 'supportedapps/jdownloader.png';
|
||||
}
|
||||
}
|
|
@ -22,15 +22,16 @@ You can use the app to link to any site or application, but "Supported" apps wil
|
|||
**Supported**
|
||||
- Duplicati
|
||||
- Emby
|
||||
- Jdownloader
|
||||
- NZBGet
|
||||
- Nextcloud
|
||||
- pFsense
|
||||
- Pihole
|
||||
- Plex
|
||||
- Plexpy
|
||||
- Portainer
|
||||
- UniFi
|
||||
- Sabnzbd
|
||||
- UniFi
|
||||
- pFsense
|
||||
|
||||
## 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/jdownloader.png
Normal file
BIN
storage/app/public/supportedapps/jdownloader.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 57 KiB |
Loading…
Add table
Reference in a new issue