Merge pull request #4 from ullbergm/app-Booksonic

Added Booksonic support.
This commit is contained in:
ullbergm
2018-06-04 21:40:38 -04:00
committed by GitHub
4 changed files with 14 additions and 0 deletions

View File

@@ -29,6 +29,7 @@ class Item extends Model
'AirSonic' => \App\SupportedApps\AirSonic::class,
'Cardigann' => \App\SupportedApps\Cardigann::class,
'CouchPotato' => \App\SupportedApps\CouchPotato::class,
'Booksonic' => \App\SupportedApps\Booksonic::class,
'Deluge' => \App\SupportedApps\Deluge::class,
'Dokuwiki' => \App\SupportedApps\Dokuwiki::class,
'Duplicati' => \App\SupportedApps\Duplicati::class,

View File

@@ -0,0 +1,12 @@
<?php namespace App\SupportedApps;
class Booksonic implements Contracts\Applications {
public function defaultColour()
{
return '#58a';
}
public function icon()
{
return 'supportedapps/booksonic.png';
}
}

View File

@@ -42,6 +42,7 @@ Supported applications are recognized by the title of the application as entered
**Foundation**
- AirSonic
- Booksonic
- Cardigann
- Deluge
- DokuWiki

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB