Browse Source

Merge pull request #4 from ullbergm/app-Booksonic

Added Booksonic support.
remotes/ullbergm/master
ullbergm 6 years ago
committed by GitHub
parent
commit
1837a69b3e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      app/Item.php
  2. 12
      app/SupportedApps/Booksonic.php
  3. 1
      readme.md
  4. BIN
      storage/app/public/supportedapps/booksonic.png

1
app/Item.php

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

12
app/SupportedApps/Booksonic.php

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

1
readme.md

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

BIN
storage/app/public/supportedapps/booksonic.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Loading…
Cancel
Save