forked from j62/ctbrec
Set version to 4.7.5
This commit is contained in:
parent
5650494c2f
commit
38c16e6929
|
@ -3,7 +3,8 @@
|
||||||
* Add setting to show the number of active recordings in the tray
|
* 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
|
* Add a timeout of 2 seconds for each online check to make sure the online
|
||||||
check doesn't get blocked somehow
|
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
|
4.7.4
|
||||||
========================
|
========================
|
||||||
|
|
|
@ -127,7 +127,7 @@
|
||||||
<path>jre</path>
|
<path>jre</path>
|
||||||
<bundledJre64Bit>true</bundledJre64Bit>
|
<bundledJre64Bit>true</bundledJre64Bit>
|
||||||
<minVersion>15</minVersion>
|
<minVersion>15</minVersion>
|
||||||
<maxHeapSize>512</maxHeapSize>
|
<maxHeapSize>1024</maxHeapSize>
|
||||||
<opts>
|
<opts>
|
||||||
<opt>-Dfile.encoding=utf-8</opt>
|
<opt>-Dfile.encoding=utf-8</opt>
|
||||||
</opts>
|
</opts>
|
||||||
|
|
|
@ -4,5 +4,5 @@ DIR="$(dirname "$0")"
|
||||||
pushd "${DIR}"
|
pushd "${DIR}"
|
||||||
JAVA=./jre/bin/java
|
JAVA=./jre/bin/java
|
||||||
$JAVA -version
|
$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
|
popd
|
||||||
|
|
|
@ -5,5 +5,5 @@ pushd "$DIR"
|
||||||
JAVA_HOME="$DIR/jre/Contents/Home"
|
JAVA_HOME="$DIR/jre/Contents/Home"
|
||||||
JAVA="$JAVA_HOME/bin/java"
|
JAVA="$JAVA_HOME/bin/java"
|
||||||
$JAVA -version
|
$JAVA -version
|
||||||
$JAVA -Xmx512m -Dfile.encoding=utf-8 -jar ${name.final}.jar
|
$JAVA -Xmx1g -Dfile.encoding=utf-8 -jar ${name.final}.jar
|
||||||
popd
|
popd
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue