Skip to content
Snippets Groups Projects
Commit fb6ae93d authored by Nick Draper's avatar Nick Draper
Browse files

minor change to doc and property declaration

re #12064
parent f2f8feff
No related branches found
No related tags found
No related merge requests found
......@@ -57,8 +57,8 @@ const std::string CheckMantidVersion::summary() const {
/** Initialize the algorithm's properties.
*/
void CheckMantidVersion::init() {
declareProperty("CurrentVersion", "", "The version string of the currently running version", Direction::Output);
declareProperty("MostRecentVersion", "", "The version string of most recent full or patch release available for download", Direction::Output);
declareProperty("CurrentVersion", "", Direction::Output);
declareProperty("MostRecentVersion", "", Direction::Output);
declareProperty("IsNewVersionAvailable", false,"True if a newer version is available, otherwise false", Direction::Output);
}
......
......@@ -17,11 +17,9 @@ 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.
If you want to disable the check on start-up add this to your mantid.user.properties file::
```
CheckMantidVersion.OnStartup = 0
```
Usage
-----
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment