Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mantid
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mantidproject
mantid
Commits
fb6ae93d
Commit
fb6ae93d
authored
9 years ago
by
Nick Draper
Browse files
Options
Downloads
Patches
Plain Diff
minor change to doc and property declaration
re #12064
parent
f2f8feff
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Code/Mantid/Framework/DataHandling/src/CheckMantidVersion.cpp
+2
-2
2 additions, 2 deletions
.../Mantid/Framework/DataHandling/src/CheckMantidVersion.cpp
Code/Mantid/docs/source/algorithms/CheckMantidVersion-v1.rst
+1
-3
1 addition, 3 deletions
Code/Mantid/docs/source/algorithms/CheckMantidVersion-v1.rst
with
3 additions
and
5 deletions
Code/Mantid/Framework/DataHandling/src/CheckMantidVersion.cpp
+
2
−
2
View file @
fb6ae93d
...
...
@@ -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
);
}
...
...
This diff is collapsed.
Click to expand it.
Code/Mantid/docs/source/algorithms/CheckMantidVersion-v1.rst
+
1
−
3
View file @
fb6ae93d
...
...
@@ -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
-----
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment