Configure separate indexers in lidarr using categories

Closes #802
This commit is contained in:
TheOtherP 2022-12-17 08:54:10 +01:00
parent 0a542f804a
commit f33fae0ffa
3 changed files with 56 additions and 33 deletions

View File

@ -49,7 +49,7 @@ public class AddRequest {
}
public boolean isV3() {
return this == Sonarrv3 || this == Radarrv3;
return this == Sonarrv3 || this == Radarrv3 || this == Lidarr;
}
public boolean isV4() {

View File

@ -1,34 +1,55 @@
[ {
"version" : "v4.7.4",
"date" : "2022-12-14",
"changes" : [ {
"type" : "fix",
"text" : "Hopefully make the java update message disappear after a java update. See #810"
} ],
"final" : true
}, {
"version" : "v4.7.3",
"date" : "2022-12-06",
"changes" : [ {
"type" : "note",
"text" : "A future update will require Java 17. To prepare for that a message will be shown asking you to update your system accordingly. If you're running NZBHydra2 in docker you don't need to do anything."
}, {
"type" : "feature",
"text" : "Set the environment variable NZBHYDRA_DISABLE_UPDATE to true to disable the NZBHydra update mechanism (similar as to when it's run inside docker). This can be used by package maintainers. See #809"
} ],
"final" : true
}, {
"version" : "v4.7.2",
"date" : "2022-11-30",
"changes" : [ {
"type" : "fix",
"text" : "Handle results without date."
}, {
"type" : "fix",
"text" : "Fix typo in apprise notification handler."
}, {
"type" : "fix",
"text" : "Hopefully fix notification sending test on arch-nzbhydra2. See #806"
[
{
"version": "v4.7.5",
"changes": [
{
"type": "fix",
"text": "Configure separate indexers in lidarr using categories. See #802"
}
],
"final": true
},
{
"version": "v4.7.4",
"date": "2022-12-14",
"changes": [
{
"type": "fix",
"text": "Hopefully make the java update message disappear after a java update. See #810"
}
],
"final": true
},
{
"version": "v4.7.3",
"date": "2022-12-06",
"changes": [
{
"type": "note",
"text": "A future update will require Java 17. To prepare for that a message will be shown asking you to update your system accordingly. If you're running NZBHydra2 in docker you don't need to do anything."
},
{
"type": "feature",
"text": "Set the environment variable NZBHYDRA_DISABLE_UPDATE to true to disable the NZBHydra update mechanism (similar as to when it's run inside docker). This can be used by package maintainers. See #809"
}
],
"final": true
},
{
"version": "v4.7.2",
"date": "2022-11-30",
"changes": [
{
"type": "fix",
"text": "Handle results without date."
},
{
"type": "fix",
"text": "Fix typo in apprise notification handler."
},
{
"type": "fix",
"text": "Hopefully fix notification sending test on arch-nzbhydra2. See #806"
}, {
"type" : "fix",
"text" : "Fix automatic configuration of Lidarr. See #802"
@ -3626,4 +3647,4 @@
"text" : "First public release. Welcome!"
} ],
"final" : true
} ]
} ]

View File

@ -15,3 +15,5 @@ services:
ports:
- 8686:8686
restart: unless-stopped
extra_hosts:
- "host.docker.internal:host-gateway"