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

Commit a3aa1c5

Browse files
committed
version 0.7.0
1 parent 289da57 commit a3aa1c5

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

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

4+
### v0.7.0 (2014-10-12)
5+
* read ClassPath from ApplePlist in either Array or String style (PR #5, Thanks to Philipp Holzschneider for his contribution)
6+
* read StartOnMainThread (issue #4, Thanks to @wrstlbrnft for his contribution)
7+
8+
49
### v0.6.3 (2014-07-31)
510
* check Info.plist for Apple style Java keys. Better indicator to distinguish between Apple or Oracle parsing...
611

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ The shell script reads JVM properties from `Info.plist` regardless of which form
4343
# - main class
4444
# - JVM arguments
4545
exec "$JAVACMD" \
46-
-cp "${JavaFolder}/*" \
46+
-cp "${JVMClassPath}" \
4747
-Xdock:icon="${ResourcesFolder}/${CFBundleIconFile}" \
4848
-Xdock:name="${CFBundleName}" \
4949
${JVMOptions:+$JVMOptions }\

src/universalJavaApplicationStub

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
# #
1414
# @author Tobias Fischer #
1515
# @url https://github.com/tofi86/universalJavaApplicationStub #
16-
# @date 2014-07-31 #
17-
# @version 0.6.3 #
16+
# @date 2014-10-12 #
17+
# @version 0.7.0 #
1818
# #
1919
# #
2020
##################################################################################

0 commit comments

Comments
 (0)