From e493aa6b7028b95684b889ceddad3806a3693dc1 Mon Sep 17 00:00:00 2001 From: Eric Larson Date: Thu, 23 Apr 2020 15:57:28 -0400 Subject: [PATCH] DOC: Document changes --- doc/changes/0.20.inc | 40 ++++++++++++++++++++++++++++++++++++++++ doc/changes/names.inc | 2 ++ 2 files changed, 42 insertions(+) diff --git a/doc/changes/0.20.inc b/doc/changes/0.20.inc index 51f873e8e32..9487aa6d300 100644 --- a/doc/changes/0.20.inc +++ b/doc/changes/0.20.inc @@ -7,6 +7,46 @@ - "Bug" for bug fixes - "API" for backward-incompatible changes +.. _changes_0_20_1: + +Version 0.20.1 +-------------- + +Bug +~~~ + +- Fix bug with :func:`mne.setup_volume_source_space` when ``volume_label`` was supplied where voxels slightly (in a worst case, about 37% times ``pos`` in distance) outside the voxel-grid-based bounds of regions were errantly included, by `Eric Larson`_ + +- Fix bug with :func:`mne.preprocessing.nirs.scalp_coupling_index` where filter transition was incorrectly assigned by `Robert Luke`_ + +- Fix support for signals in mV for :func:`mne.io.read_raw_brainvision` by `Clemens Brunner`_ + +- Fix bug with :func:`mne.minimum_norm.compute_source_psd_epochs` and :func:`mne.minimum_norm.source_band_induced_power` raised errors when ``method='eLORETA'`` by `Eric Larson`_ + +- Fix bug with :func:`mne.make_forward_dipole` where :func:`mne.write_forward_solution` could not be used by `Eric Larson`_ + +- Fix bug with :func:`mne.read_epochs` when loading data in complex format with ``preload=False`` by `Eric Larson`_ + +- Fix bug with :func:`mne.io.Raw.plot` where toggling all projectors did not actually take effect by `Eric Larson`_ + +- Fix bug with :func:`mne.io.read_raw_gdf` where birthdays were not parsed properly, leading to an error by `Svea Marie Meyer`_ + +- Fix bug with :meth:`mne.io.Raw.plot` when ``scalings='auto'`` where bad data would prevent channel plotting by `Eric Larson`_ + +- Fix bug with :func:`mne.io.read_raw_edf` where recording ID was not read properly for non-ASCII characters by `Lx37`_ + +- Fix :ref:`gen_mne_setup_forward_model` to have it actually compute the BEM solution in addition to creating the BEM model by `Eric Larson`_ + +- Fix bug with :func:`mne.beamformer.make_lcmv` where leadfield rank reduction was only partiall applied by `Britta Westner`_ + +- Fix bug when using :meth:`mne.Epochs.crop` to exclude the baseline period would break :func:`mne.Epochs.save` / :func:`mne.read_epochs` round-trip by `Eric Larson`_ + +- Fix bug with :func:`mne.io.read_raw_edf` where null bytes were not properly handled, causing an error when opening a file by `Eric Larson`_ + +- Fix bug with :func:`mne.beamformer.make_dics` where complex conjugates were not applied properly by `Britta Westner`_ and `Eric Larson`_ + +- Fix bug with :func:`mne.bem.make_watershed_bem` where the RAS coordinates of watershed bem surfaces were not updated correctly from the volume file by `Yu-Han Luo`_ + .. _changes_0_20: Version 0.20 diff --git a/doc/changes/names.inc b/doc/changes/names.inc index d90bdd95f61..516759b114e 100644 --- a/doc/changes/names.inc +++ b/doc/changes/names.inc @@ -301,3 +301,5 @@ .. _Ramiro Gatti: https://github.com/ragatti .. _Svea Marie Meyer: https://github.com/SveaMeyer13 + +.. _Lx37: https://github.com/Lx37