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

Commit 4eea734

Browse files
committed
version 3.0.0
1 parent 2126acc commit 4eea734

File tree

4 files changed

+19
-16
lines changed

4 files changed

+19
-16
lines changed

CHANGELOG.md

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

4-
### v3.0.0-BETA (2018-02-18)
4+
### v3.0.0 (2018-02-25)
55
* Completeley overhauled algorithm for JVM detection (JRE and JDK)
6-
* JDK has no longer precedence before JRE
7-
* All JVMs on the system which can be found are taken into account
8-
* See Readme 'How the script works' for details
9-
* NEW special syntax in Plist key `JVMVersion` to specify a max JVM requirement in addition to the minimum requirement.
6+
* JDK has no longer precedence over JRE
7+
* All Java Virtual Machines on the system are taken into account
8+
* See Readme section 'How the script works' for more details
9+
* NEW special syntax in Plist key `JVMVersion` to specify a maximum JVM version requirement in addition to the minimum requirement.
1010
* See issue #51 for examples
1111
* Support `JVMVersion` also in Oracle PList style (#59)
12-
* Implemented logging to 'syslog' facility which can be viewed via `Console.app` (#49)
12+
* Implemented logging to `syslog` facility which can be viewed via `Console.app` (#49)
1313
* Translation of messages to Chinese (PR #55, Thanks to @acely for his contribution)
1414
* Added a table with 'Supported PList keys' to the Readme file
1515
* Refactoring of functions, bash syntax, etc... (#46, #50, #56)
1616
* Bugfix: pass JVM options with spaces correctly to the java exec call (#14)
1717
* Bugfixes: better handling of MainClass arguments with spaces (#57, #58)
18-
* More bugfixes for issues #47, #48, #52
18+
* Bugfixes: issues #47, #48, #52
1919

2020
### v2.1.0 (2017-07-28)
2121
* Support for Java 9 which introduces a new version number schema (fixes #43)

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015 Tobias Fischer
3+
Copyright (c) 2014-2018 Tobias Fischer
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
21+
SOFTWARE.

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
universalJavaApplicationStub
2-
=====================
2+
============================
33

44
[![Current release](https://img.shields.io/github/release/tofi86/universalJavaApplicationStub.svg)](https://github.com/tofi86/universalJavaApplicationStub/releases) [![Join the chat at https://gitter.im/tofi86/universalJavaApplicationStub](https://badges.gitter.im/tofi86/universalJavaApplicationStub.svg)](https://gitter.im/tofi86/universalJavaApplicationStub?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
55

6-
A BASH based *JavaApplicationStub* for Java Apps on Mac OS X that works with both Apple's and Oracle's plist format. It is released under the MIT License.
6+
A BASH based *JavaApplicationStub* for Java Apps on Mac OS X that works with both Apple's and Oracle's plist format. It is released under the [MIT License](https://github.com/tofi86/universalJavaApplicationStub/blob/master/LICENSE).
7+
8+
See the [CHANGELOG](https://github.com/tofi86/universalJavaApplicationStub/blob/master/CHANGELOG.md) for a Release History and feature details.
79

810

911
Why
@@ -177,9 +179,10 @@ Missing Features
177179

178180
At the moment, there's no support for
179181
* required JVM architecture (like `x86_64`, etc.)
182+
* prefer JDK over JRE or vice versa
180183

181184

182185
License
183186
-------
184187

185-
*universalJavaApplicationStub* is released under the MIT License.
188+
*universalJavaApplicationStub* is released under the [MIT License](https://github.com/tofi86/universalJavaApplicationStub/blob/master/LICENSE).

src/universalJavaApplicationStub

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,22 @@
33
# #
44
# universalJavaApplicationStub #
55
# #
6-
# A shellscript JavaApplicationStub for Java Apps on Mac OS X #
6+
# A BASH based JavaApplicationStub for Java Apps on Mac OS X #
77
# that works with both Apple's and Oracle's plist format. #
88
# #
99
# Inspired by Ian Roberts stackoverflow answer #
1010
# at http://stackoverflow.com/a/17546508/1128689 #
1111
# #
1212
# @author Tobias Fischer #
1313
# @url https://github.com/tofi86/universalJavaApplicationStub #
14-
# @date 2018-02-18 #
15-
# @version 3.0.0-BETA #
14+
# @date 2018-02-25 #
15+
# @version 3.0.0 #
1616
# #
1717
##################################################################################
1818
# #
1919
# The MIT License (MIT) #
2020
# #
21-
# Copyright (c) 2018 Tobias Fischer #
21+
# Copyright (c) 2014-2018 Tobias Fischer #
2222
# #
2323
# Permission is hereby granted, free of charge, to any person obtaining a copy #
2424
# of this software and associated documentation files (the "Software"), to deal #

0 commit comments

Comments
 (0)