Merge pull request #40 from Futos/jdownloader
feat: added Jdownloader to supported Apps - Closes #26
This commit is contained in:
commit
39c71b6f26
4 changed files with 14 additions and 0 deletions
|
@ -28,6 +28,7 @@ class Item extends Model
|
|||
return [
|
||||
'Duplicati' => \App\SupportedApps\Duplicati::class,
|
||||
'Emby' => \App\SupportedApps\Emby::class,
|
||||
'Jdownloader' => \App\SupportedApps\Jdownloader::class,
|
||||
'Mcmyadmin' => \App\SupportedApps\Mcmyadmin::class,
|
||||
'NZBGet' => \App\SupportedApps\Nzbget::class,
|
||||
'Nextcloud' => \App\SupportedApps\Nextcloud::class,
|
||||
|
|
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,6 +22,7 @@ You can use the app to link to any site or application, but Foundation apps will
|
|||
**Foundation**
|
||||
- Duplicati
|
||||
- Emby
|
||||
- Jdownloader
|
||||
- Mcmyadmin
|
||||
- NZBGet
|
||||
- Nextcloud
|
||||
|
|
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…
Reference in a new issue