Adds logo for Radarr, Sonarr, Prowlarr ...

This commit is contained in:
2023-09-20 15:55:51 +02:00
parent f10e380bb2
commit f8028921c3
7 changed files with 20 additions and 8 deletions

View File

@@ -34,7 +34,7 @@ services:
subtitle: 'Movie tracker'
target: '_blank'
url: 'http://radarr.lan'
type: sonarr
type: radarr
keywords: 'movies tracker torrent usenet'
- title: '/Cloud'

View File

@@ -0,0 +1,7 @@
import type { ServiceHandler } from '../service';
export const handle: ServiceHandler = () => {
return {
logo: 'https://cdn.rawgit.com/jellyfin/jellyfin-ux/master/branding/SVG/icon-transparent.svg'
};
};

View File

@@ -2,4 +2,4 @@
export let data;
</script>
pihole status {data}
pihole status placeholder

View File

@@ -1,5 +0,0 @@
<script lang="ts">
export let data;
</script>
Prowlarr content {data}

View File

@@ -1,5 +1,5 @@
import type { ServiceHandler } from '../service';
export const handle: ServiceHandler = () => {
return { prowlardata: 'coucou' };
return { logo: 'https://cdn.rawgit.com/Prowlarr/Prowlarr/develop/Logo/Prowlarr.svg' };
};

View File

@@ -0,0 +1,5 @@
import type { ServiceHandler } from '../service';
export const handle: ServiceHandler = () => {
return { logo: 'https://cdn.rawgit.com/Radarr/Radarr/develop/Logo/Radarr.svg' };
};

View File

@@ -0,0 +1,5 @@
import type { ServiceHandler } from '../service';
export const handle: ServiceHandler = () => {
return { logo: 'https://cdn.rawgit.com/Sonarr/Sonarr/develop/Logo/Sonarr.svg' };
};