Skip to content

Commit

Permalink
Merge pull request #118 from Futos/add-new-foundationApps
Browse files Browse the repository at this point in the history
Add new foundation apps
  • Loading branch information
KodeStar authored Mar 1, 2018
2 parents 2ccf9a1 + c7b92ad commit 6a836f9
Show file tree
Hide file tree
Showing 8 changed files with 48 additions and 6 deletions.
7 changes: 5 additions & 2 deletions app/Item.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,10 @@ public static function supportedList()
{
return [
'Deluge' => \App\SupportedApps\Deluge::class,
'Dokuwiki' => \App\SupportedApps\Dokuwiki::class,
'Duplicati' => \App\SupportedApps\Duplicati::class,
'Emby' => \App\SupportedApps\Emby::class,
'Gitea' => \App\SupportedApps\Gitea::class,
'Graylog' => \App\SupportedApps\Graylog::class,
'Home Assistant' => \App\SupportedApps\HomeAssistant::class,
'Jackett' => \App\SupportedApps\Jackett::class,
Expand All @@ -40,9 +42,8 @@ public static function supportedList()
'Netdata' => \App\SupportedApps\Netdata::class,
'Nextcloud' => \App\SupportedApps\Nextcloud::class,
'Nzbhydra' => \App\SupportedApps\Nzbhydra::class,
'Ttrss' => \App\SupportedApps\Ttrss::class,
'Ombi' => \App\SupportedApps\Ombi::class,
'OPNSense' => \App\SupportedApps\Opnsense::class,
'Ombi' => \App\SupportedApps\Ombi::class,
'Openhab' => \App\SupportedApps\Openhab::class,
'Pihole' => \App\SupportedApps\Pihole::class,
'Plex' => \App\SupportedApps\Plex::class,
Expand All @@ -53,8 +54,10 @@ public static function supportedList()
'Radarr' => \App\SupportedApps\Radarr::class,
'Runeaudio' => \App\SupportedApps\Runeaudio::class,
'Sabnzbd' => \App\SupportedApps\Sabnzbd::class,
'Sickrage' => \App\SupportedApps\Sickrage::class,
'Sonarr' => \App\SupportedApps\Sonarr::class,
'Traefik' => \App\SupportedApps\Traefik::class,
'Ttrss' => \App\SupportedApps\Ttrss::class,
'UniFi' => \App\SupportedApps\Unifi::class,
'pFsense' => \App\SupportedApps\Pfsense::class,
'ruTorrent' => \App\SupportedApps\ruTorrent::class,
Expand Down
12 changes: 12 additions & 0 deletions app/SupportedApps/Dokuwiki.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php namespace App\SupportedApps;

class Dokuwiki implements Contracts\Applications {
public function defaultColour()
{
return '#9d7056';
}
public function icon()
{
return 'supportedapps/dokuwiki.png';
}
}
12 changes: 12 additions & 0 deletions app/SupportedApps/Gitea.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php namespace App\SupportedApps;

class Gitea implements Contracts\Applications {
public function defaultColour()
{
return '#585e52';
}
public function icon()
{
return 'supportedapps/gitea.png';
}
}
12 changes: 12 additions & 0 deletions app/SupportedApps/Sickrage.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php namespace App\SupportedApps;

class Sickrage implements Contracts\Applications {
public function defaultColour()
{
return '#6185a6';
}
public function icon()
{
return 'supportedapps/sickrage.png';
}
}
11 changes: 7 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,29 +34,32 @@ You can use the app to link to any site or application, but Foundation apps will

**Foundation**
- Deluge
- DokuWiki
- Duplicati
- Emby
- Gitea
- Graylog
- Jdownloader
- Lidarr
- McMyAdmin
- Medusa
- NZBhydra & NZBhydra2
- Netdata
- Nextcloud
- NZBhydra & NZBhydra2
- Ombi
- OpenHAB
- pfSense
- Plex
- Plexpy
- Plexrequests
- Portainer
- Radarr
- rTorrent/ruTorrent
- SickRage
- Sonarr
- Traefik
- TT-RSS
- Traefik
- UniFI
- pfSense
- rTorrent/ruTorrent

## Installing
Apart from the Laravel dependencies, namely PHP >= 7.0.0, OpenSSL PHP Extension, PDO PHP Extension, Mbstring PHP Extension, Tokenizer PHP Extension and XML PHP Extension, the only other thing Heimdall needs is sqlite support.
Expand Down
Binary file added storage/app/public/supportedapps/dokuwiki.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added storage/app/public/supportedapps/gitea.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added storage/app/public/supportedapps/sickrage.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 6a836f9

Please sign in to comment.