From 6915a1bfaf312400b57a4170878a586861bb6039 Mon Sep 17 00:00:00 2001 From: RichyHBM Date: Thu, 21 Jul 2022 18:29:35 +0100 Subject: [PATCH] Add dashdot and linuxserver docker images to image to match list --- src/tools/types.ts | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/src/tools/types.ts b/src/tools/types.ts index b47d20571..acbc6ba74 100644 --- a/src/tools/types.ts +++ b/src/tools/types.ts @@ -60,34 +60,41 @@ export const Targets = [ export const ServiceTypeList = [ 'Other', - 'Emby', 'Dash.', 'Deluge', + 'Emby', 'Lidarr', 'Plex', + 'qBittorrent', 'Radarr', 'Readarr', 'Sonarr', - 'qBittorrent', 'Transmission', ]; export type ServiceType = | 'Other' - | 'Emby' | 'Dash.' | 'Deluge' + | 'Emby' | 'Lidarr' | 'Plex' | 'Radarr' | 'Readarr' - | 'Sonarr' | 'qBittorrent' + | 'Sonarr' | 'Transmission'; export const MatchingImages: { image: string; type: ServiceType }[] = [ - { image: 'lscr.io/linuxserver/radarr', type: 'Radarr' }, - { image: 'lscr.io/linuxserver/sonarr', type: 'Sonarr' }, + { image: 'mauricenino/dashdot', type: 'Dash.' }, + { image: 'lscr.io/linuxserver/deluge', type: 'Deluge' }, + { image: 'lscr.io/linuxserver/emby', type: 'Emby' }, + { image: 'lscr.io/linuxserver/lidarr', type: 'Lidarr' }, + { image: 'lscr.io/linuxserver/plex', type: 'Plex' }, { image: 'lscr.io/linuxserver/qbittorrent', type: 'qBittorrent' }, + { image: 'lscr.io/linuxserver/radarr', type: 'Radarr' }, + { image: 'lscr.io/linuxserver/readarr', type: 'Readarr' }, + { image: 'lscr.io/linuxserver/sonarr', type: 'Sonarr' }, + { image: 'lscr.io/linuxserver/transmission', type: 'Transmission' }, ]; export interface serviceItem {