I just wanted to help and share, since XDM using jar and java as it's code so it can be run in multiple platform.
But until now i can't use the newer version XDM, so i decide to create simple applescript to execute the XDM jar file and bundle it into simple .app with applescript run-only option
It's really simple applescript like following:
----------- START OF SCRIPT
set filePath to POSIX path of (path to me)
do shell script "java -jar " & filePath & "/Contents/XDMan.jar > /dev/null 2>&1 &"
----------- END OF SCRIPT
In this version i'am not including the Java application and library, so you will need to install Java for OS X from Apple.
Thank's
Cheers
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I just wanted to help and share, since XDM using jar and java as it's code so it can be run in multiple platform.
But until now i can't use the newer version XDM, so i decide to create simple applescript to execute the XDM jar file and bundle it into simple .app with applescript run-only option
So if anyone need latest XDM for Mac OS with compability here is the link:
https://cl.ly/04fd9398650b
It's really simple applescript like following:
----------- START OF SCRIPT
set filePath to POSIX path of (path to me)
do shell script "java -jar " & filePath & "/Contents/XDMan.jar > /dev/null 2>&1 &"
----------- END OF SCRIPT
In this version i'am not including the Java application and library, so you will need to install Java for OS X from Apple.
Thank's
Cheers