Skip to content

Commit

Permalink
Update to 5.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
theotherp committed Jan 22, 2023
1 parent 4d605ff commit beb8ba2
Show file tree
Hide file tree
Showing 15 changed files with 40 additions and 29 deletions.
10 changes: 10 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
### v5.0.8 (2023-01-22)

**Fix** Fixed performance logging. In 5.0.6 I disabled it, now it actually works.

**Fix** Never try to update automatically when running docker.

**Fix** Parsing sabnzbd remaining time was broken.



### v5.0.7 (2023-01-22)

**Fix** Alright, so the binary fix from 5.0.6 didn't fix anything but made it worse. But now I've found a way to make the binary run for everybody (I hope, who knows by know).
Expand Down
4 changes: 2 additions & 2 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.nzbhydra</groupId>
<artifactId>nzbhydra2</artifactId>
<version>5.0.7</version>
<version>5.0.8</version>
</parent>

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

<!-- spring (boot) -->
Expand Down
12 changes: 4 additions & 8 deletions misc/buildLinuxCore/arm64/buildLinuxCore.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,8 @@ if [[ ! -d "${PWD}/core" ]] ; then
return
fi

#rsync -rvu --exclude "target" --exclude "bower_components" --exclude "node_modules" --exclude ".git" --exclude ".idea" --exclude "results" --exclude "*.db" --exclude "*.zip" --exclude "venv*" ${PWD}/ build@141.147.54.141:~/nzbhydra2/ --delete
echo Syncing with remote server
rsync -rvu --exclude "target" --exclude "bower_components" --exclude "node_modules" --exclude ".git" --exclude ".idea" --exclude "results" --exclude "*.db" --exclude "*.zip" --exclude "*.jar" --exclude "venv*" ${PWD}/ build@141.147.54.141:~/nzbhydra2/ --delete

docker run -v ~/nzbhydra2/:/nzbhydra2:rw -v ~/.m2/repository:/root/.m2/repository:rw --rm hydrabuild:latest
if [[ ! -f ~/nzbhydra2/core/target/core ]] ; then
echo "core executable does not exist"
else
cp ~/nzbhydra2/core/target/core ${PWD}/core/target/
cp ~/nzbhydra2/core/target/core ${PWD}/releases/linux-release/include/
fi
echo Running build script on remote server
ssh build@141.147.54.141:~/nzbhydra2/misc/buildLinuxCore/arm64/buildLinuxCore.sh
5 changes: 5 additions & 0 deletions misc/buildLinuxCore/arm64/runOnRemoteMachine.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash

# Is executed on the build machine to build the linux executable

docker run -v ~/nzbhydra2/:/nzbhydra2:rw -v ~/.m2/repository:/root/.m2/repository:rw --rm hydrabuild:latest
2 changes: 1 addition & 1 deletion other/mockserver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
<dependency>
<groupId>org.nzbhydra</groupId>
<artifactId>mapping</artifactId>
<version>5.0.7</version>
<version>5.0.8</version>
<exclusions>
<exclusion>
<artifactId>jaxb-impl</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>org.nzbhydra</groupId>
<artifactId>nzbhydra2</artifactId>
<packaging>pom</packaging>
<version>5.0.7</version>
<version>5.0.8</version>

<modules>
<module>shared</module>
Expand Down
4 changes: 2 additions & 2 deletions releases/generic-release/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.nzbhydra</groupId>
<artifactId>releases</artifactId>
<version>5.0.7</version>
<version>5.0.8</version>
</parent>

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

Expand Down
4 changes: 2 additions & 2 deletions releases/linux-release/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.nzbhydra</groupId>
<artifactId>releases</artifactId>
<version>5.0.7</version>
<version>5.0.8</version>
</parent>

<artifactId>linux-release</artifactId>
Expand All @@ -15,7 +15,7 @@
<dependency>
<groupId>org.nzbhydra</groupId>
<artifactId>core</artifactId>
<version>5.0.7</version>
<version>5.0.8</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions releases/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<parent>
<groupId>org.nzbhydra</groupId>
<artifactId>nzbhydra2</artifactId>
<version>5.0.7</version>
<version>5.0.8</version>
</parent>

<artifactId>releases</artifactId>
<packaging>pom</packaging>
<version>5.0.7</version>
<version>5.0.8</version>

<modules>
<module>generic-release</module>
Expand Down
4 changes: 2 additions & 2 deletions releases/windows-release/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.nzbhydra</groupId>
<artifactId>releases</artifactId>
<version>5.0.7</version>
<version>5.0.8</version>
</parent>

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

Expand Down
4 changes: 2 additions & 2 deletions shared/assertions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.nzbhydra</groupId>
<artifactId>shared</artifactId>
<version>5.0.7</version>
<version>5.0.8</version>
</parent>

<artifactId>assertions</artifactId>
Expand All @@ -31,7 +31,7 @@
<dependency>
<groupId>org.nzbhydra</groupId>
<artifactId>mapping</artifactId>
<version>5.0.7</version>
<version>5.0.8</version>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
Expand Down
2 changes: 1 addition & 1 deletion shared/mapping/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.nzbhydra</groupId>
<artifactId>shared</artifactId>
<version>5.0.7</version>
<version>5.0.8</version>
</parent>

<artifactId>mapping</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions shared/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<parent>
<groupId>org.nzbhydra</groupId>
<artifactId>nzbhydra2</artifactId>
<version>5.0.7</version>
<version>5.0.8</version>
</parent>

<artifactId>shared</artifactId>
<packaging>pom</packaging>
<version>5.0.7</version>
<version>5.0.8</version>

<modules>
<module>mapping</module>
Expand Down
2 changes: 1 addition & 1 deletion tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.nzbhydra</groupId>
<artifactId>nzbhydra2</artifactId>
<version>5.0.7</version>
<version>5.0.8</version>
</parent>

<artifactId>tests</artifactId>
Expand Down
6 changes: 3 additions & 3 deletions tests/system/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.nzbhydra</groupId>
<artifactId>tests</artifactId>
<version>5.0.7</version>
<version>5.0.8</version>
</parent>

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


Expand Down

0 comments on commit beb8ba2

Please sign in to comment.