Skip to content
This repository was archived by the owner on Feb 4, 2023. It is now read-only.

Commit ebe2dba

Browse files
authored
Merge pull request #70 from tofi86/develop
Release version 3.0.4
2 parents 49e55ed + a7ee3e4 commit ebe2dba

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
ChangeLog
22
---------
33

4+
### v3.0.4 (2018-08-24)
5+
* Bugfix: Variables `$APP_PACKAGE`, `$JAVAROOT`, `$USER_HOME` in `JVMOptions` key (Oracle) or `Java:Properties` key (Apple) were not expanded (#69)
6+
47
### v3.0.3 (2018-07-29)
58
* Bugfix: changes for the new Java 10 `java -version` formatting (#66)
69

src/universalJavaApplicationStub

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
# #
1212
# @author Tobias Fischer #
1313
# @url https://github.com/tofi86/universalJavaApplicationStub #
14-
# @date 2018-07-29 #
15-
# @version 3.0.3 #
14+
# @date 2018-08-24 #
15+
# @version 3.0.4 #
1616
# #
1717
##################################################################################
1818
# #
@@ -767,7 +767,7 @@ exec "${JAVACMD}" \
767767
-splash:"${ResourcesFolder}/${JVMSplashFile}" \
768768
-Xdock:icon="${ResourcesFolder}/${CFBundleIconFile}" \
769769
-Xdock:name="${CFBundleName}" \
770-
${JVMOptions:+"${JVMOptions[@]}" }\
770+
${JVMOptionsArr:+"${JVMOptionsArr[@]}" }\
771771
${JVMDefaultOptions:+$JVMDefaultOptions }\
772772
"${JVMMainClass}"\
773773
${MainArgsArr:+ "${MainArgsArr[@]}"}\

0 commit comments

Comments
 (0)