Browse Source
Merge pull request #40 from Futos/jdownloader
feat: added Jdownloader to supported Apps - Closes #26
pull/43/head
KodeStar
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
14 additions and
0 deletions
-
app/Item.php
-
app/SupportedApps/Jdownloader.php
-
readme.md
-
BIN
storage/app/public/supportedapps/jdownloader.png
|
@ -28,6 +28,7 @@ class Item extends Model |
|
|
return [ |
|
|
return [ |
|
|
'Duplicati' => \App\SupportedApps\Duplicati::class, |
|
|
'Duplicati' => \App\SupportedApps\Duplicati::class, |
|
|
'Emby' => \App\SupportedApps\Emby::class, |
|
|
'Emby' => \App\SupportedApps\Emby::class, |
|
|
|
|
|
'Jdownloader' => \App\SupportedApps\Jdownloader::class, |
|
|
'Mcmyadmin' => \App\SupportedApps\Mcmyadmin::class, |
|
|
'Mcmyadmin' => \App\SupportedApps\Mcmyadmin::class, |
|
|
'NZBGet' => \App\SupportedApps\Nzbget::class, |
|
|
'NZBGet' => \App\SupportedApps\Nzbget::class, |
|
|
'Nextcloud' => \App\SupportedApps\Nextcloud::class, |
|
|
'Nextcloud' => \App\SupportedApps\Nextcloud::class, |
|
|
|
@ -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** |
|
|
**Foundation** |
|
|
- Duplicati |
|
|
- Duplicati |
|
|
- Emby |
|
|
- Emby |
|
|
|
|
|
- Jdownloader |
|
|
- Mcmyadmin |
|
|
- Mcmyadmin |
|
|
- NZBGet |
|
|
- NZBGet |
|
|
- Nextcloud |
|
|
- Nextcloud |
|
|
Width:
|
Height:
|
Size: 57 KiB
|