Browse Source

Merge pull request #146 from halorrr/patch-1

SupportedApp: AirSonic
pull/151/head^2
KodeStar 7 years ago
committed by GitHub
parent
commit
443f631bac
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      app/Item.php
  2. 12
      app/SupportedApps/AirSonic.php
  3. 1
      readme.md
  4. BIN
      storage/app/public/supportedapps/airsonic.png

1
app/Item.php

@ -26,6 +26,7 @@ class Item extends Model
public static function supportedList()
{
return [
'AirSonic' => \App\SupportedApps\AirSonic::class,
'CouchPotato' => \App\SupportedApps\CouchPotato::class,
'Deluge' => \App\SupportedApps\Deluge::class,
'Dokuwiki' => \App\SupportedApps\Dokuwiki::class,

12
app/SupportedApps/AirSonic.php

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

1
readme.md

@ -39,6 +39,7 @@ You can use the app to link to any site or application, but Foundation apps will
- Transmission
**Foundation**
- AirSonic
- Deluge
- DokuWiki
- Duplicati

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Loading…
Cancel
Save