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
parent
commit
39c71b6f26
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      app/Item.php
  2. 12
      app/SupportedApps/Jdownloader.php
  3. 1
      readme.md
  4. BIN
      storage/app/public/supportedapps/jdownloader.png

1
app/Item.php

@ -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

@ -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';
}
}

1
readme.md

@ -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

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

Loading…
Cancel
Save