Table of Contents
Name | Direction | Type | Default | Description |
---|---|---|---|---|
CurrentVersion | Output | string | ||
MostRecentVersion | Output | string | ||
IsNewVersionAvailable | Output | boolean | True if a newer version is available, otherwise false |
Checks if a new release of Mantid is available using the Github API for inspecting the most recent release. In order to reduce API usage and optimise performance the request is sent with a “if-modified-since” header with the date of the current release.
This algorithm is run on asynchronously on start-up in release builds and official releases of Mantid. It only outputs messages to the logs and outpus properties, it does not change anything else.
If you want to disable the check on start-up add this to your mantid.user.properties file:
CheckMantidVersion.OnStartup = 0
Example - CheckMantidVersion
(current_version, most_recent_version, is_new_version_available)=CheckMantidVersion()
print "Current Version: " + current_version
print "Most Recent Version: " + most_recent_version
print "Is a newer version available? " + str(is_new_version_available)
Output:
Current Version: ...
Most Recent Version: ...
Is a newer version available? ...
Categories: Algorithms | Utility\Development