Set version to 4.7.5

This commit is contained in:
0xb00bface 2022-04-10 17:52:16 +02:00
parent 5650494c2f
commit 38c16e6929
5 changed files with 7 additions and 6 deletions

View File

@ -3,7 +3,8 @@
* Add setting to show the number of active recordings in the tray
* Add a timeout of 2 seconds for each online check to make sure the online
check doesn't get blocked somehow
* Increase log level for the online check
* Increased log level for the online check
* Increased max heap size to 1GiB
4.7.4
========================

View File

@ -127,7 +127,7 @@
<path>jre</path>
<bundledJre64Bit>true</bundledJre64Bit>
<minVersion>15</minVersion>
<maxHeapSize>512</maxHeapSize>
<maxHeapSize>1024</maxHeapSize>
<opts>
<opt>-Dfile.encoding=utf-8</opt>
</opts>

View File

@ -4,5 +4,5 @@ DIR="$(dirname "$0")"
pushd "${DIR}"
JAVA=./jre/bin/java
$JAVA -version
$JAVA -Xmx512m -Djdk.gtk.version=3 -Dfile.encoding=utf-8 -jar ${name.final}.jar
$JAVA -Xmx1g -Djdk.gtk.version=3 -Dfile.encoding=utf-8 -jar ${name.final}.jar
popd

View File

@ -5,5 +5,5 @@ pushd "$DIR"
JAVA_HOME="$DIR/jre/Contents/Home"
JAVA="$JAVA_HOME/bin/java"
$JAVA -version
$JAVA -Xmx512m -Dfile.encoding=utf-8 -jar ${name.final}.jar
popd
$JAVA -Xmx1g -Dfile.encoding=utf-8 -jar ${name.final}.jar
popd

View File

@ -1 +1 @@
jre\bin\java -Xmx512m -Dfile.encoding=utf-8 -jar ${name.final}.jar
jre\bin\java -Xmx1g -Dfile.encoding=utf-8 -jar ${name.final}.jar