Merge pull request #497 from jonjon1123/nzbget-download-client-merge

 Add NZBGet download client
This commit is contained in:
Thomas Camlong
2022-11-09 00:44:34 +09:00
committed by GitHub
30 changed files with 559 additions and 112 deletions

View File

@@ -76,6 +76,7 @@ export const ServiceTypeList = [
'Overseerr',
'Jellyseerr',
'Sabnzbd',
'NZBGet'
];
export type ServiceType =
| 'Other'
@@ -91,7 +92,8 @@ export type ServiceType =
| 'Overseerr'
| 'Jellyseerr'
| 'Transmission'
| 'Sabnzbd';
| 'Sabnzbd'
| 'NZBGet';
export function tryMatchPort(name: string | undefined, form?: any) {
if (!name) {
@@ -118,6 +120,7 @@ export const portmap = [
{ name: 'overseerr', value: '5055' },
{ name: 'dash.', value: '3001' },
{ name: 'sabnzbd', value: '8080' },
{ name: 'nzbget', value: '6789' }
];
export const MatchingImages: {