Browse Source

Merge branch 'master' into v1.4

pull/99/head
KodeStar 7 years ago
parent
commit
78e368f406
  1. 2
      app/Item.php
  2. 12
      app/SupportedApps/Graylog.php
  3. 12
      app/SupportedApps/Ombi.php
  4. 14
      readme.md
  5. BIN
      storage/app/public/supportedapps/graylog.png
  6. BIN
      storage/app/public/supportedapps/ombi.png

2
app/Item.php

@ -29,6 +29,7 @@ class Item extends Model
'Deluge' => \App\SupportedApps\Deluge::class, 'Deluge' => \App\SupportedApps\Deluge::class,
'Duplicati' => \App\SupportedApps\Duplicati::class, 'Duplicati' => \App\SupportedApps\Duplicati::class,
'Emby' => \App\SupportedApps\Emby::class, 'Emby' => \App\SupportedApps\Emby::class,
'Graylog' => \App\SupportedApps\Graylog::class,
'Home Assistant' => \App\SupportedApps\HomeAssistant::class, 'Home Assistant' => \App\SupportedApps\HomeAssistant::class,
'Jackett' => \App\SupportedApps\Jackett::class, 'Jackett' => \App\SupportedApps\Jackett::class,
'Jdownloader' => \App\SupportedApps\Jdownloader::class, 'Jdownloader' => \App\SupportedApps\Jdownloader::class,
@ -40,6 +41,7 @@ class Item extends Model
'Nextcloud' => \App\SupportedApps\Nextcloud::class, 'Nextcloud' => \App\SupportedApps\Nextcloud::class,
'Nzbhydra' => \App\SupportedApps\Nzbhydra::class, 'Nzbhydra' => \App\SupportedApps\Nzbhydra::class,
'Ttrss' => \App\SupportedApps\Ttrss::class, 'Ttrss' => \App\SupportedApps\Ttrss::class,
'Ombi' => \App\SupportedApps\Ombi::class,
'OPNSense' => \App\SupportedApps\Opnsense::class, 'OPNSense' => \App\SupportedApps\Opnsense::class,
'Openhab' => \App\SupportedApps\Openhab::class, 'Openhab' => \App\SupportedApps\Openhab::class,
'Pihole' => \App\SupportedApps\Pihole::class, 'Pihole' => \App\SupportedApps\Pihole::class,

12
app/SupportedApps/Graylog.php

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

12
app/SupportedApps/Ombi.php

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

14
readme.md

@ -1,5 +1,14 @@
![alt text](https://i.imgur.com/iuV8w3y.png) ![alt text](https://i.imgur.com/iuV8w3y.png)
____
[![Discord](https://img.shields.io/discord/354974912613449730.svg)](https://discord.gg/CCjHKn4)
[![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/heimdall.svg)](https://hub.docker.com/r/linuxserver/heimdall/)
[![firsttimersonly](http://img.shields.io/badge/first--timers--only-friendly-blue.svg?style=flat-square)](http://www.firsttimersonly.com/)
[![Paypal](https://heimdall.site/img/paypaldonate.svg)](https://paypal.me/heimdall)
___
## About ## About
As the name suggests Heimdall Application Dashboard is a dashboard for all your web applications. It doesn't need to be limited to applications though, you can add links to anything you like. As the name suggests Heimdall Application Dashboard is a dashboard for all your web applications. It doesn't need to be limited to applications though, you can add links to anything you like.
@ -121,6 +130,11 @@ location / {
## Support ## Support
https://discord.gg/CCjHKn4 or through Github issues https://discord.gg/CCjHKn4 or through Github issues
## Donate
If you would like to show your appreciation, feel free to use the link below.
[![Paypal](https://heimdall.site/img/paypaldonate.svg)](https://paypal.me/heimdall)
## Credits ## Credits
- PHP Framework - [Laravel](https://laravel.com/) - PHP Framework - [Laravel](https://laravel.com/)
- Icons - [FonteAwesome 5](https://fontawesome.com/) - Icons - [FonteAwesome 5](https://fontawesome.com/)

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Loading…
Cancel
Save