Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fslpy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository 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
Michiel Cottaar
fslpy
Commits
f3f75cc3
Commit
f3f75cc3
authored
7 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
Include changelog in docs
parent
b963fa31
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CHANGELOG.rst
+16
-14
16 additions, 14 deletions
CHANGELOG.rst
doc/changelog.rst
+4
-0
4 additions, 0 deletions
doc/changelog.rst
doc/contributing.rst
+7
-6
7 additions, 6 deletions
doc/contributing.rst
doc/index.rst
+1
-0
1 addition, 0 deletions
doc/index.rst
with
28 additions
and
20 deletions
CHANGELOG.rst
+
16
−
14
View file @
f3f75cc3
``fslpy`` release history
This document contains the
``fslpy`` release history
in reverse chronological
==========================
order.
1.3.0 (under development)
1.3.0 (under development)
...
@@ -26,7 +26,7 @@
...
@@ -26,7 +26,7 @@
1.2.1 (Saturday October 7th 2017)
1.2.1 (Saturday October 7th 2017)
---------------------------------
---------------------------------
*
* If an :class:`.Image` is passed an existing ``nibabel`` header object,
* If an :class:`.Image` is passed an existing ``nibabel`` header object,
it creates a copy, rather than using the original.
it creates a copy, rather than using the original.
* New :meth:`.Image.resample` method, which resamples the image data to a
* New :meth:`.Image.resample` method, which resamples the image data to a
...
@@ -43,7 +43,7 @@
...
@@ -43,7 +43,7 @@
* :meth:`fsl.data.image.Nifti.voxelsToScaledVoxels` method deprecated in
* :meth:`fsl.data.image.Nifti.voxelsToScaledVoxels` method deprecated in
favour of new :meth:`
`
.Nifti.voxToScaledVoxMat` and
favour of new :meth:`.Nifti.voxToScaledVoxMat` and
:meth:`Nifti.scaledVoxToVoxMat` properties.
:meth:`Nifti.scaledVoxToVoxMat` properties.
...
@@ -65,16 +65,18 @@
...
@@ -65,16 +65,18 @@
* New functions and further adjustments in :mod:`fsl.utils.transform` module:
* New functions and further adjustments in :mod:`fsl.utils.transform` module:
- :func:`.transform.rotMatToAffine` converts a ``(3, 3)`` rotation matrix
into a ``(4, 4)`` affine.
- :func:`.transform.rotMatToAffine` converts a ``(3, 3)`` rotation matrix
- :func:`.transform.transformNormal` applies an affine transform to one or
into a ``(4, 4)`` affine.
more vectors.
- :func:`.transform.transformNormal` applies an affine transform to one or
- :func:`.transform.veclength` calculates the length of a vector
more vectors.
- :func:`.transform.normalise` normalises a vector
- :func:`.transform.veclength` calculates the length of a vector
- :func:`.transform.scaleOffsetXform` adjusted to have more flexibility with
- :func:`.transform.normalise` normalises a vector
respect to inputs.
- :func:`.transform.scaleOffsetXform` adjusted to have more flexibility with
- :func:`.transform.decompose` can return rotations either as three
respect to inputs.
axis-angles, or as a rotation matrix
- :func:`.transform.decompose` can return rotations either as three
axis-angles, or as a rotation matrix
* Updates to :class:`fsl.data.mesh.TriangleMesh` - ``vertices`` and ``indices``
* Updates to :class:`fsl.data.mesh.TriangleMesh` - ``vertices`` and ``indices``
are now ``property`` attributes. New lazily generated ``normals`` and
are now ``property`` attributes. New lazily generated ``normals`` and
``vnormals`` properties (face and vertex normals respectively). Option
``vnormals`` properties (face and vertex normals respectively). Option
...
...
This diff is collapsed.
Click to expand it.
doc/changelog.rst
0 → 100644
+
4
−
0
View file @
f3f75cc3
``fslpy`` release history
=========================
.. include:: ../CHANGELOG.rst
This diff is collapsed.
Click to expand it.
doc/contributing.rst
+
7
−
6
View file @
f3f75cc3
...
@@ -61,7 +61,7 @@ components of the release version number (see above). For example, the branch
...
@@ -61,7 +61,7 @@ components of the release version number (see above). For example, the branch
name for minor release ``1.0`` would be ``v1.0``.
name for minor release ``1.0`` would be ``v1.0``.
Patches and bugfixes may be added to these release branches as ``p
oint
``
Patches and bugfixes may be added to these release branches as ``p
atch
``
releases. These changes should be made on the master branch like any other
releases. These changes should be made on the master branch like any other
change (i.e. via merge requests), and then cherry-picked onto the relevant
change (i.e. via merge requests), and then cherry-picked onto the relevant
release branch(es).
release branch(es).
...
@@ -69,7 +69,7 @@ release branch(es).
...
@@ -69,7 +69,7 @@ release branch(es).
Every release commit is also tagged with its full version number. For
Every release commit is also tagged with its full version number. For
example, the first release off the ``v1.0`` branch would be tagged with
example, the first release off the ``v1.0`` branch would be tagged with
``1.0.0``. P
oint
releases to the ``v1.0`` branch would be tagged with
``1.0.0``. P
atch
releases to the ``v1.0`` branch would be tagged with
``1.0.1``, ``1.0.2``, etc.
``1.0.1``, ``1.0.2``, etc.
...
@@ -124,10 +124,11 @@ for a list of error codes):
...
@@ -124,10 +124,11 @@ for a list of error codes):
- E303: too many blank lines (3)
- E303: too many blank lines (3)
- E701: multiple statements on one line (colon)
- E701: multiple statements on one line (colon)
The ``pylint`` tool checks many of the same things as ``flake8`,` and can be
*very* opinionated about other things. So I disable all refactoring and
The ``pylint`` tool can be *very* opinionated about how you write your code,
convention messages, and a few select warnings (type ``pylint --list-msgs``
and also checks many of the same things as ``flake8``. So I disable all
for a full list of codes):
refactoring and convention messages, and a few select warnings (type ``pylint
--list-msgs`` for a full list of codes):
- W0511 (``fixme``): Warn about ``TODO`` and ``FIXME`` comments
- W0511 (``fixme``): Warn about ``TODO`` and ``FIXME`` comments
...
...
This diff is collapsed.
Click to expand it.
doc/index.rst
+
1
−
0
View file @
f3f75cc3
...
@@ -12,3 +12,4 @@ by |fsleyes_apidoc|_.
...
@@ -12,3 +12,4 @@ by |fsleyes_apidoc|_.
self
self
fsl
fsl
contributing
contributing
changelog
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