Merge pull request #90 from Futos/adding-new-foundation-apps
Adding new foundation apps
This commit is contained in:
commit
6ec1a3d4cb
10 changed files with 62 additions and 5 deletions
16
.gitignore
vendored
16
.gitignore
vendored
|
@ -9,4 +9,18 @@ Homestead.yaml
|
|||
npm-debug.log
|
||||
yarn-error.log
|
||||
|
||||
storage/app/public/.DS_Store
|
||||
### macOS ###
|
||||
*.DS_Store
|
||||
.AppleDouble
|
||||
.LSOverride
|
||||
|
||||
# Thumbnails
|
||||
._*
|
||||
|
||||
# Files that might appear in the root of a volume
|
||||
.DocumentRevisions-V100
|
||||
.fseventsd
|
||||
.Spotlight-V100
|
||||
.TemporaryItems
|
||||
.Trashes
|
||||
.VolumeIcon.icns
|
11
app/Item.php
11
app/Item.php
|
@ -34,12 +34,14 @@ class Item extends Model
|
|||
'Jdownloader' => \App\SupportedApps\Jdownloader::class,
|
||||
'Lidarr' => \App\SupportedApps\Lidarr::class,
|
||||
'Mcmyadmin' => \App\SupportedApps\Mcmyadmin::class,
|
||||
'Nextcloud' => \App\SupportedApps\Nextcloud::class,
|
||||
'Medusa' => \App\SupportedApps\Medusa::class,
|
||||
'NZBGet' => \App\SupportedApps\Nzbget::class,
|
||||
'Openhab' => \App\SupportedApps\Openhab::class,
|
||||
'pFsense' => \App\SupportedApps\Pfsense::class,
|
||||
'Netdata' => \App\SupportedApps\Netdata::class,
|
||||
'Nextcloud' => \App\SupportedApps\Nextcloud::class,
|
||||
'Nzbhydra' => \App\SupportedApps\Nzbhydra::class,
|
||||
'Ttrss' => \App\SupportedApps\Ttrss::class,
|
||||
'OPNSense' => \App\SupportedApps\Opnsense::class,
|
||||
'Openhab' => \App\SupportedApps\Openhab::class,
|
||||
'Pihole' => \App\SupportedApps\Pihole::class,
|
||||
'Plex' => \App\SupportedApps\Plex::class,
|
||||
'Plexpy' => \App\SupportedApps\Plexpy::class,
|
||||
|
@ -47,11 +49,12 @@ class Item extends Model
|
|||
'Portainer' => \App\SupportedApps\Portainer::class,
|
||||
'Proxmox' => \App\SupportedApps\Proxmox::class,
|
||||
'Radarr' => \App\SupportedApps\Radarr::class,
|
||||
'ruTorrent' => \App\SupportedApps\ruTorrent::class,
|
||||
'Sabnzbd' => \App\SupportedApps\Sabnzbd::class,
|
||||
'Sonarr' => \App\SupportedApps\Sonarr::class,
|
||||
'Traefik' => \App\SupportedApps\Traefik::class,
|
||||
'UniFi' => \App\SupportedApps\Unifi::class,
|
||||
'pFsense' => \App\SupportedApps\Pfsense::class,
|
||||
'ruTorrent' => \App\SupportedApps\ruTorrent::class,
|
||||
];
|
||||
}
|
||||
public static function supportedOptions()
|
||||
|
|
12
app/SupportedApps/Medusa.php
Normal file
12
app/SupportedApps/Medusa.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php namespace App\SupportedApps;
|
||||
|
||||
class Medusa implements Contracts\Applications {
|
||||
public function defaultColour()
|
||||
{
|
||||
return '#4b5e55';
|
||||
}
|
||||
public function icon()
|
||||
{
|
||||
return 'supportedapps/medusa.png';
|
||||
}
|
||||
}
|
12
app/SupportedApps/Nzbhydra.php
Normal file
12
app/SupportedApps/Nzbhydra.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php namespace App\SupportedApps;
|
||||
|
||||
class Nzbhydra implements Contracts\Applications {
|
||||
public function defaultColour()
|
||||
{
|
||||
return '#53644d';
|
||||
}
|
||||
public function icon()
|
||||
{
|
||||
return 'supportedapps/nzbhydra.png';
|
||||
}
|
||||
}
|
12
app/SupportedApps/Ttrss.php
Normal file
12
app/SupportedApps/Ttrss.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php namespace App\SupportedApps;
|
||||
|
||||
class Ttrss implements Contracts\Applications {
|
||||
public function defaultColour()
|
||||
{
|
||||
return '#9d704c';
|
||||
}
|
||||
public function icon()
|
||||
{
|
||||
return 'supportedapps/tt-rss.png';
|
||||
}
|
||||
}
|
|
@ -21,11 +21,14 @@ You can use the app to link to any site or application, but Foundation apps will
|
|||
- Sabnzbd
|
||||
|
||||
**Foundation**
|
||||
- Deluge
|
||||
- Duplicati
|
||||
- Emby
|
||||
- Jdownloader
|
||||
- Mcmyadmin
|
||||
- Medusa
|
||||
- NZBGet
|
||||
- NZBHydra
|
||||
- Netdata
|
||||
- Nextcloud
|
||||
- Openhab
|
||||
|
@ -35,6 +38,7 @@ You can use the app to link to any site or application, but Foundation apps will
|
|||
- Plexrequests
|
||||
- Portainer
|
||||
- Sabnzbd
|
||||
- TT-RSS
|
||||
- Traefik
|
||||
- UniFi
|
||||
- pFsense
|
||||
|
|
BIN
storage/app/public/supportedapps/deluge.png
Normal file
BIN
storage/app/public/supportedapps/deluge.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 42 KiB |
BIN
storage/app/public/supportedapps/medusa.png
Normal file
BIN
storage/app/public/supportedapps/medusa.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.6 KiB |
BIN
storage/app/public/supportedapps/nzbhydra.png
Normal file
BIN
storage/app/public/supportedapps/nzbhydra.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
BIN
storage/app/public/supportedapps/tt-rss.png
Normal file
BIN
storage/app/public/supportedapps/tt-rss.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 19 KiB |
Loading…
Reference in a new issue