Closed rgaiacs closed 3 years ago
When I go to Help > About ImageJ..., I get something like
Help
About ImageJ...
The version number includes the daily build number. When I call the macro getVersion(), it does not provide the daily build number:
getVersion()
$ imagej --headless --console -eval "print(getVersion());" | tail -n 1 2.1.0/1.53h
What do you think about include the daily build number in the output of getVersion()?
You can use IJ.getFullVersion() (in IJ1 macro language or any other supported scripting language):
IJ.getFullVersion()
$ imagej --headless --console -eval "print(IJ.getFullVersion)" | tail -n 1
Thanks!
When I go to
Help
>About ImageJ...
, I get something likeThe version number includes the daily build number. When I call the macro
getVersion()
, it does not provide the daily build number:What do you think about include the daily build number in the output of
getVersion()
?