Skip to content
Snippets Groups Projects
Commit d938485f authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

Merge branch 'bf/message-typo' into 'master'

Bf/message typo

See merge request !11
parents cf7f8e68 f7326b3f
No related branches found
Tags 0.3.2
1 merge request!11Bf/message typo
Pipeline #10555 passed
# `fsl_add_module` changelog # `fsl_add_module` changelog
## 0.3.2 (Wednesday 1st September 2021)
- Changed the default manifest URL to
http://fsl.fmrib.ox.ac.uk/fslcourse/downloads/manifest.json, which
describes the FSL course data sets.
- Fixed a typo in a UI message.
## 0.3.1 (Tuesday 25th May 2021) ## 0.3.1 (Tuesday 25th May 2021)
- Fixed an issue with building the `fsl_add_module` package. - Fixed an issue with building the `fsl_add_module` package.
......
...@@ -9,5 +9,5 @@ ...@@ -9,5 +9,5 @@
""" """
__version__ = '0.3.1' __version__ = '0.3.2'
"""``fsl_add_module`` version number.""" """``fsl_add_module`` version number."""
...@@ -42,7 +42,7 @@ optional but recommended: ...@@ -42,7 +42,7 @@ optional but recommended:
- ``description``: An extended description of the plugin - ``description``: An extended description of the plugin
- ``version``: A version identifier for the plugin (used solely for - ``version``: A version identifier for the plugin (used solely for
descriptive purposes) descriptive purposes)
- ``tersm_of_use``: Terms of use for the plugin (displayed to the user) - ``terms_of_use``: Terms of use for the plugin (displayed to the user)
- ``destination``: Default installation directory. May contain environment - ``destination``: Default installation directory. May contain environment
variables and ``~``. variables and ``~``.
""" # noqa: E501 """ # noqa: E501
......
...@@ -157,7 +157,7 @@ def _selectMultiplePlugins(plugins : List[Plugin]) -> List[Plugin]: ...@@ -157,7 +157,7 @@ def _selectMultiplePlugins(plugins : List[Plugin]) -> List[Plugin]:
'Alternately, enter the numbers of each module you would like ' 'Alternately, enter the numbers of each module you would like '
'to download, separated by spaces. For example, if you would ' 'to download, separated by spaces. For example, if you would '
f'like to download the [{plugins[0].name}] and ' f'like to download the [{plugins[0].name}] and '
'[{plugins[1],name}] modules, enter "1 2".', indent=2, wrap=True) f'[{plugins[1].name}] modules, enter "1 2".', indent=2, wrap=True)
response = prompt('Enter module(s) to download: ') response = prompt('Enter module(s) to download: ')
......
...@@ -112,7 +112,7 @@ from fsl.add_module.messages import (info, ...@@ -112,7 +112,7 @@ from fsl.add_module.messages import (info,
UNDERLINE) UNDERLINE)
MANIFEST_URL = 'http://fsl.fmrib.ox.ac.uk/fsldownloads/manifest.txt' MANIFEST_URL = 'http://fsl.fmrib.ox.ac.uk/fslcourse/downloads/manifest.json'
"""Location of the official FSL plugin manifest file, downloaded if an """Location of the official FSL plugin manifest file, downloaded if an
alternate manifest file is not specified. alternate manifest file is not specified.
""" """
......
...@@ -35,7 +35,7 @@ setup( ...@@ -35,7 +35,7 @@ setup(
description='Script to download and install FSL modules', description='Script to download and install FSL modules',
long_description=readme, long_description=readme,
long_description_content_type='text/markdown', long_description_content_type='text/markdown',
url='https://git.fmrib.ox.ac.uk/fsl/fsl_add_module', url='https://git.fmrib.ox.ac.uk/fsl/add_module',
author='Paul McCarthy', author='Paul McCarthy',
author_email='paul.mccarthy@ndcn.ox.ac.uk', author_email='paul.mccarthy@ndcn.ox.ac.uk',
license='Apache License Version 2.0', license='Apache License Version 2.0',
......
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