diff --git a/core/src/main/java/org/nzbhydra/externaltools/AddRequest.java b/core/src/main/java/org/nzbhydra/externaltools/AddRequest.java index d55572607..f3d792320 100644 --- a/core/src/main/java/org/nzbhydra/externaltools/AddRequest.java +++ b/core/src/main/java/org/nzbhydra/externaltools/AddRequest.java @@ -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() { diff --git a/core/src/main/resources/changelog.json b/core/src/main/resources/changelog.json index 1a4091f7f..cf4201a09 100644 --- a/core/src/main/resources/changelog.json +++ b/core/src/main/resources/changelog.json @@ -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 -} ] \ No newline at end of file +} ] diff --git a/docker/lidarr/docker-compose.yaml b/docker/lidarr/docker-compose.yaml index e955ab65a..cf64b36a3 100644 --- a/docker/lidarr/docker-compose.yaml +++ b/docker/lidarr/docker-compose.yaml @@ -15,3 +15,5 @@ services: ports: - 8686:8686 restart: unless-stopped + extra_hosts: + - "host.docker.internal:host-gateway"