Skip to content

Commit

Permalink
Update to 6.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
theotherp committed May 12, 2024
1 parent 4f6acae commit 67005c2
Show file tree
Hide file tree
Showing 15 changed files with 51 additions and 25 deletions.
28 changes: 27 additions & 1 deletion changelog.md
@@ -1,9 +1,35 @@
### v6.2.0

**Feature** Support DETAILS function from Newznab API spec. See <a href="https://github.com/theotherp/nzbhydra2/issues/942">#942</a>

**Feature** Option to show user agent in search history. See <a href="https://github.com/theotherp/nzbhydra2/issues/940">#940</a>

**Note** I've removed the old binary of the linux wrapper. It was always a bit hard to get it running and it's easier to just run the python wrapper file directly.



### v6.1.1

**Fix** Make sure settings yml file can be written to prevent file corruption



### v6.1.0

**Fix** Exit codes < 0 are now correctly handled in the python wrapper.

**Fix** Show username in download history. See <a href="https://github.com/theotherp/nzbhydra2/issues/932">#932</a>

**Note** The linux binary nzbhydra2 is now deprecated. Please switch to directly running nzbhydra2wrapperPy3.py.



### v6.0.0

**Feature** I've completely rewritten the wrapper for windows. It's not a packaged python script anymore but an actually compiled binary. This has a couple of benefits: No more false positives from virus scanners (VirusTotal shows 5/72). No more temporary files not being cleaned up after a crash. The files are (a bit) smaller.
I don't plan to compile the wrapper for anything but windows as it makes more sense and is easier to run the python wrapper instead.

**Feature** The temp folder can be set using the environment variable NZBHYDRA_TEMP_FOLDER. See <a href="https://github.com/theotherp/nzbhydra2/issues/984">#984</a>
**Feature** The temp folder can be set using the environment variable NZBHYDRA_TEMP_FOLDER. See <a href="https://github.com/theotherp/nzbhydra2/issues/894">#894</a>

**Fix** IPs or usernames were not shown in the history. See <a href="https://github.com/theotherp/nzbhydra2/issues/932">#932</a>

Expand Down
4 changes: 2 additions & 2 deletions core/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.nzbhydra</groupId>
<artifactId>nzbhydra2</artifactId>
<version>6.0.1-SNAPSHOT</version>
<version>6.2.0</version>
</parent>

<artifactId>core</artifactId>
Expand Down Expand Up @@ -99,7 +99,7 @@
<dependency>
<groupId>org.nzbhydra</groupId>
<artifactId>mapping</artifactId>
<version>6.0.1-SNAPSHOT</version>
<version>6.2.0</version>
</dependency>

<!-- spring (boot) -->
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/resources/wrapperHashes2.json
@@ -1 +1 @@
["2e772a1a140820687d5466e27c030d36f82abb54","930be2ca00604918fc0653e22e118efdc1693eb0","ecadc9b8264968a2ca53cedb73f00a69b4172315","4ece63cc425c88efbace9a013c3e1203a63b40c0","847cfdc8a7014c660b47c92e3f55b38b2fdc15ac"]
["930be2ca00604918fc0653e22e118efdc1693eb0","4ece63cc425c88efbace9a013c3e1203a63b40c0","3b25a8f25ea1f6dff6a9a9fa952d80a88d55ecb9","cc648b6ca281646eb9b0802e99bcb95adfcc8d4c"]
2 changes: 1 addition & 1 deletion other/mockserver/pom.xml
Expand Up @@ -59,7 +59,7 @@
<dependency>
<groupId>org.nzbhydra</groupId>
<artifactId>mapping</artifactId>
<version>6.0.1-SNAPSHOT</version>
<version>6.2.0</version>
<exclusions>
<exclusion>
<artifactId>jaxb-impl</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -4,7 +4,7 @@
<groupId>org.nzbhydra</groupId>
<artifactId>nzbhydra2</artifactId>
<packaging>pom</packaging>
<version>6.0.1-SNAPSHOT</version>
<version>6.2.0</version>

<modules>
<module>shared</module>
Expand Down
4 changes: 2 additions & 2 deletions releases/generic-release/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.nzbhydra</groupId>
<artifactId>releases</artifactId>
<version>6.0.1-SNAPSHOT</version>
<version>6.2.0</version>
</parent>

<artifactId>generic-release</artifactId>
Expand All @@ -15,7 +15,7 @@
<dependency>
<groupId>org.nzbhydra</groupId>
<artifactId>core</artifactId>
<version>6.0.1-SNAPSHOT</version>
<version>6.2.0</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions releases/linux-amd64-release/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.nzbhydra</groupId>
<artifactId>releases</artifactId>
<version>6.0.1-SNAPSHOT</version>
<version>6.2.0</version>
</parent>

<artifactId>linux-amd64-release</artifactId>
Expand All @@ -15,7 +15,7 @@
<dependency>
<groupId>org.nzbhydra</groupId>
<artifactId>core</artifactId>
<version>6.0.1-SNAPSHOT</version>
<version>6.2.0</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions releases/linux-arm64-release/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.nzbhydra</groupId>
<artifactId>releases</artifactId>
<version>6.0.1-SNAPSHOT</version>
<version>6.2.0</version>
</parent>

<artifactId>linux-arm64-release</artifactId>
Expand All @@ -15,7 +15,7 @@
<dependency>
<groupId>org.nzbhydra</groupId>
<artifactId>core</artifactId>
<version>6.0.1-SNAPSHOT</version>
<version>6.2.0</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions releases/pom.xml
Expand Up @@ -4,12 +4,12 @@
<parent>
<groupId>org.nzbhydra</groupId>
<artifactId>nzbhydra2</artifactId>
<version>6.0.1-SNAPSHOT</version>
<version>6.2.0</version>
</parent>

<artifactId>releases</artifactId>
<packaging>pom</packaging>
<version>6.0.1-SNAPSHOT</version>
<version>6.2.0</version>

<modules>
<module>generic-release</module>
Expand Down
4 changes: 2 additions & 2 deletions releases/windows-release/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.nzbhydra</groupId>
<artifactId>releases</artifactId>
<version>6.0.1-SNAPSHOT</version>
<version>6.2.0</version>
</parent>

<artifactId>windows-release</artifactId>
Expand All @@ -15,7 +15,7 @@
<dependency>
<groupId>org.nzbhydra</groupId>
<artifactId>core</artifactId>
<version>6.0.1-SNAPSHOT</version>
<version>6.2.0</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions shared/assertions/pom.xml
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.nzbhydra</groupId>
<artifactId>shared</artifactId>
<version>6.0.1-SNAPSHOT</version>
<version>6.2.0</version>
</parent>

<artifactId>assertions</artifactId>
Expand All @@ -31,7 +31,7 @@
<dependency>
<groupId>org.nzbhydra</groupId>
<artifactId>mapping</artifactId>
<version>6.0.1-SNAPSHOT</version>
<version>6.2.0</version>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
Expand Down
2 changes: 1 addition & 1 deletion shared/mapping/pom.xml
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.nzbhydra</groupId>
<artifactId>shared</artifactId>
<version>6.0.1-SNAPSHOT</version>
<version>6.2.0</version>
</parent>

<artifactId>mapping</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions shared/pom.xml
Expand Up @@ -4,12 +4,12 @@
<parent>
<groupId>org.nzbhydra</groupId>
<artifactId>nzbhydra2</artifactId>
<version>6.0.1-SNAPSHOT</version>
<version>6.2.0</version>
</parent>

<artifactId>shared</artifactId>
<packaging>pom</packaging>
<version>6.0.1-SNAPSHOT</version>
<version>6.2.0</version>

<modules>
<module>mapping</module>
Expand Down
2 changes: 1 addition & 1 deletion tests/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.nzbhydra</groupId>
<artifactId>nzbhydra2</artifactId>
<version>6.0.1-SNAPSHOT</version>
<version>6.2.0</version>
</parent>

<artifactId>tests</artifactId>
Expand Down
6 changes: 3 additions & 3 deletions tests/system/pom.xml
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.nzbhydra</groupId>
<artifactId>tests</artifactId>
<version>6.0.1-SNAPSHOT</version>
<version>6.2.0</version>
</parent>

<groupId>org.nzbhydra.tests</groupId>
Expand Down Expand Up @@ -101,7 +101,7 @@
<dependency>
<groupId>org.nzbhydra</groupId>
<artifactId>mapping</artifactId>
<version>6.0.1-SNAPSHOT</version>
<version>6.2.0</version>
</dependency>
<dependency>
<groupId>com.github.docker-java</groupId>
Expand All @@ -128,7 +128,7 @@
<dependency>
<groupId>org.nzbhydra</groupId>
<artifactId>assertions</artifactId>
<version>6.0.1-SNAPSHOT</version>
<version>6.2.0</version>
</dependency>


Expand Down

0 comments on commit 67005c2

Please sign in to comment.