Skip to content

Commit 44f8d01

Browse files
committedJul 30, 2020
MAINT: Prepare for version 0.1.5
1 parent a1a8b88 commit 44f8d01

File tree

6 files changed

+139
-94
lines changed

6 files changed

+139
-94
lines changed
 

‎applications/mne_analyze/mne_analyze/info.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ class CInfo
141141
*/
142142
static int RevisionVersion()
143143
{
144-
return 4;
144+
return 5;
145145
}
146146

147147
//=========================================================================================================

‎applications/mne_scan/mne_scan/info.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ class CInfo
146146
*/
147147
static int RevisionVersion()
148148
{
149-
return 4;
149+
return 5;
150150
}
151151

152152
//=========================================================================================================

‎doc/doxygen/mne-cpp_doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = MNE-CPP
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 0.1.4
41+
PROJECT_NUMBER = 0.1.5
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

‎doc/gh-pages/pages/install/binaries.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Stable Releases
1313

1414
| Version | Release | Dynamic Build | Static Build |
1515
|-------|-------|-------|-------|
16-
| [0.1.4](changelog.md#version-014) | 2020-07-07 | <span class="fs-2"> [Windows](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.4/mne-cpp-windows-dynamic-x86_64.zip){: .btn .btn-blue } [Linux](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.4/mne-cpp-linux-dynamic-x86_64.tar.gz){: .btn .btn-blue } [MacOS](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.4/mne-cpp-macos-dynamic-x86_64.tar.gz){: .btn .btn-blue } </span> | <span class="fs-2"> [Windows](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.4/mne-cpp-windows-static-x86_64.zip){: .btn .btn-blue } [Linux](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.4/mne-cpp-linux-static-x86_64.tar.gz){: .btn .btn-blue } [MacOS](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.4/mne-cpp-macos-static-x86_64.tar.gz){: .btn .btn-blue } </span> |
16+
| [0.1.5](changelog.md#version-015) | 2020-07-30 | <span class="fs-2"> [Windows](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.5/mne-cpp-windows-dynamic-x86_64.zip){: .btn .btn-blue } [Linux](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.5/mne-cpp-linux-dynamic-x86_64.tar.gz){: .btn .btn-blue } [MacOS](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.5/mne-cpp-macos-dynamic-x86_64.tar.gz){: .btn .btn-blue } </span> | <span class="fs-2"> [Windows](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.5/mne-cpp-windows-static-x86_64.zip){: .btn .btn-blue } [Linux](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.5/mne-cpp-linux-static-x86_64.tar.gz){: .btn .btn-blue } [MacOS](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.5/mne-cpp-macos-static-x86_64.tar.gz){: .btn .btn-blue } </span> |
1717

1818
Development Release
1919
{: .label .label-green }

‎doc/gh-pages/pages/install/changelog.md

+134-89
Original file line numberDiff line numberDiff line change
@@ -7,63 +7,108 @@ nav_order: 1
77

88
# Changelog
99

10+
## Version 0.1.5 - 2020/07/30
11+
12+
### Applications
13+
14+
MNE Analyze
15+
* Refactored DataManagerView to DataManagerControlView.
16+
* Added a break case to switch statement in datamanager.cpp.
17+
* Added triggerdetectview to Event plugin.
18+
* Added functionality to Event plugin to create event groups by type and sort detected events.
19+
* Tweaked/added get/set functions dealing with event groups.
20+
* Added functionality to Averaging plugin to read events from user-selected event group.
21+
* Added jump to event to right click menu.
22+
* Changed key event to keyReleaseEvent in Event plugin to avoid event being accepted elsewhere.
23+
* FiffRawView now inherits from AbstractView.
24+
* Window size and number of channels preserved while resizing window.
25+
* Fix data plotting when scrolling to the left (raw and filtering). Fixed a problem where the current fiff curser of the beginning data block was substracted by the filter delay even if filtering was disabled.
26+
* Remove filterAllData function and replace usage by reloadAllData, which leads to an performance improvement.
27+
* Rename updateDisplayData to reloadAllData.
28+
* Comment out some qInfo outputs.
29+
* Rename getWindowSizeBlocks to getTotalBlockCount in FiffRawViewModel.
30+
* Disable downsampling when plotting since it introduced aliasing effects. Performance is not affected by this change.
31+
32+
### API Libraries
33+
34+
Disp
35+
* Added offline mode functionality to triggerdetectview.
36+
* Added event group selection to offline mode in averagingsettingsview.
37+
38+
RtProcessing
39+
* Remove data copies when filtering in order to speed up filtering.
40+
41+
### Documentation
42+
43+
* Update MNE Analyze docu.
44+
* Update MNE Scan HPI and forward plugin docu.
45+
46+
### Authors
47+
48+
People who contributed to this release (preceded by number of commits):
49+
50+
(34) Gabriel Motta,
51+
(13) Ruben Dörfel,
52+
(11) Lorenz Esch,
53+
(2) Wayne Mead
54+
1055
## Version 0.1.4 - 2020/07/07
1156

1257
### Applications
1358

1459
MNE Analyze
1560
* Add filter support. The user can now select/design a filter. If activated the filter is applied to the data as the user scrolls through the file. When activated the filtered data is also written to file and applied when computing an average.
16-
* Add dark mode support to WASM version
17-
* Corrected saving/loading views inbetween sessions
18-
* Adjusted minimum allowed window size
19-
* Add support for computing averages/evoked responses
20-
* Closing main window now calls destructors for views in dockwidgets
21-
* Add support to delete loaded files from the data manager
22-
* Speed up data browsing by decreasing the pre loading buffer size to two blocks
23-
* Fix vertically overlapping signal plotting
24-
* Move AnalyzeDataModel to anshared/model folder
25-
* Annotations have been renamed to Events
26-
* Added Event Group functionality and struct
27-
* Event Groups can be renamed or have their color changed through right click context menu
28-
* Events can now be deleted from selecting any of the columns, double click to edit columns
29-
* Fixed bug where check boxes changing annotation model state were not updating the view
61+
* Add dark mode support to WASM version.
62+
* Corrected saving/loading views inbetween sessions.
63+
* Adjusted minimum allowed window size.
64+
* Add support for computing averages/evoked responses.
65+
* Closing main window now calls destructors for views in dockwidgets.
66+
* Add support to delete loaded files from the data manager.
67+
* Speed up data browsing by decreasing the pre loading buffer size to two blocks.
68+
* Fix vertically overlapping signal plotting.
69+
* Move AnalyzeDataModel to anshared/model folder.
70+
* Annotations have been renamed to Events.
71+
* Added Event Group functionality and struct.
72+
* Event Groups can be renamed or have their color changed through right click context menu.
73+
* Events can now be deleted from selecting any of the columns, double click to edit columns.
74+
* Fixed bug where check boxes changing annotation model state were not updating the view.
3075

3176
MNE Scan
32-
* Update inverse operator if new forward solution was calculated
33-
* Update brainflow submodule for the brainflowboard plugin
77+
* Update inverse operator if new forward solution was calculated.
78+
* Update brainflow submodule for the brainflowboard plugin.
3479

3580
Examples
36-
* Add a new example for averaging
37-
* Change ex_read_epochs to only read epochs without averaging afterwards
81+
* Add a new example for averaging.
82+
* Change ex_read_epochs to only read epochs without averaging afterwards.
3883

3984
MNE Anonymize
40-
* Add GUI mode
41-
* Add WASM version
42-
* Improve internal memory handling
85+
* Add GUI mode.
86+
* Add WASM version.
87+
* Improve internal memory handling.
4388

4489
### API Libraries
4590

4691
Utils
47-
* Move filter methods/classes to the RtProcessing library
48-
* Move DetectTrigger class to the RtProcessing library
49-
* Refactor baseline correction input from QPair<QVariant,QVariant> to QPair<float,float>
92+
* Move filter methods/classes to the RtProcessing library.
93+
* Move DetectTrigger class to the RtProcessing library.
94+
* Refactor baseline correction input from QPair<QVariant,QVariant> to QPair<float,float>.
5095

5196
RtProcessing
52-
* Refactor header guards of all RtProcessing classes
53-
* Add function to set updated forward solution in RtInv
54-
* Rename RtFilter to Filter and FilterData to FilterKernel
55-
* Improve automatic slicing of data when filtering
97+
* Refactor header guards of all RtProcessing classes.
98+
* Add function to set updated forward solution in RtInv.
99+
* Rename RtFilter to Filter and FilterData to FilterKernel.
100+
* Improve automatic slicing of data when filtering.
56101
* Separate continous and one time overlap add filtering methods. Make some functions global RTPROCESSINGLIB namespace functions and was therefore removed.
57102
* Remove processing of multiple filters at once. This feature was never really implemented.
58-
* Rename RtAve to RtAveraging in
59-
* Add new averaging functions in
60-
* Implement convenience function in DetectTrigger to transform between detect trigger QMaps and MNE event matrices
61-
* Move detect trigger functions to global RTPROCESSINGLIB namespace
103+
* Rename RtAve to RtAveraging.
104+
* Add new averaging functions.
105+
* Implement convenience function in DetectTrigger to transform between detect trigger QMaps and MNE event matrices.
106+
* Move detect trigger functions to global RTPROCESSINGLIB namespace.
62107

63108
Disp
64-
* Refactor plotting of the filter's frequency response in the FilterPlotScene class
65-
* Fix saving/loading from FilterDesignView, FilterSettingsView and FiffRawView
66-
* Changed signal view control widget scaling to allow for window sizes
109+
* Refactor plotting of the filter's frequency response in the FilterPlotScene class.
110+
* Fix saving/loading from FilterDesignView, FilterSettingsView and FiffRawView.
111+
* Changed signal view control widget scaling to allow for window sizes.
67112
* Remove filtering from EvokedSetModel in disp library. Filtering on short data lengths such as most epochs is difficult because of the edge effects. Filtering for epochs/evoked responses should happen before with appropriate filter lengths which is now supported by the RTPROCESSINGLIB::computeFilteredAverage() function.
68113
* Improve the ScalingView with new default scaling values and convenience functions to retrieve the scale value for a given scale map and channel kind/unit. Make use of the new functions throughout MNE-CPP libraries and applications.
69114

@@ -92,35 +137,35 @@ People who contributed to this release (preceded by number of commits):
92137
### Applications
93138

94139
MNE Analyze
95-
* Add new AnalyzeDataModel, which allows subject based data organization
96-
* Improve data loading from QByteArray in AnalyzeData
97-
* Log Window now has location preserved between sessions
98-
* Files once again get selected and displayed automatically when first loaded
140+
* Add new AnalyzeDataModel, which allows subject based data organization.
141+
* Improve data loading from QByteArray in AnalyzeData.
142+
* Log Window now has location preserved between sessions.
143+
* Files once again get selected and displayed automatically when first loaded.
99144
* Disconnect everything from old model before loading new one. This solves performance issues when loading multiple files.
100-
* Signal Viewer and Annotation settings scale depending on available size
101-
* Add different GUI modes (scientific and clinical) to appearance menu
102-
* Add dark and light mode to appearance menu
145+
* Signal Viewer and Annotation settings scale depending on available size.
146+
* Add different GUI modes (scientific and clinical) to appearance menu.
147+
* Add dark and light mode to appearance menu.
103148
* Include skeleton of new Filtering plugin in MNE Analyze. Please note that the actual filtering is still WIP and will follow in a future version.
104149

105150
MNE Scan
106-
* Update Brainflow plugin
107-
* Separated real-time source localization and forward calculation into two plugins
108-
* Recalculate forward solution if large head movement occurred
109-
* Fix thread safety in real-time source localization plugin
110-
* Save plugin pipeline in MNE Scan more often and everytime we start the pipeline
111-
* Beautify HPI plugin control settings view
112-
* Add different GUI modes (scientific and clinical) to appearance menu
113-
* Add dark and light mode to appearance menu
151+
* Update Brainflow plugin.
152+
* Separated real-time source localization and forward calculation into two plugins.
153+
* Recalculate forward solution if large head movement occurred.
154+
* Fix thread safety in real-time source localization plugin.
155+
* Save plugin pipeline in MNE Scan more often and everytime we start the pipeline.
156+
* Beautify HPI plugin control settings view.
157+
* Add different GUI modes (scientific and clinical) to appearance menu.
158+
* Add dark and light mode to appearance menu.
114159

115160
### API Libraries
116161

117162
Disp
118-
* Add new view for controlling the forward calculation
119-
* Make plugin tab bar show vertically in the Quick Control View
120-
* Create an abstract interface AbstractView for all Disp library viewers to enforce handling different GUI modes and the saving/loading of GUI settings
121-
* Refactor saving/settings of Disp viewers
163+
* Add new view for controlling the forward calculation.
164+
* Make plugin tab bar show vertically in the Quick Control View.
165+
* Create an abstract interface AbstractView for all Disp library viewers to enforce handling different GUI modes and the saving/loading of GUI settings.
166+
* Refactor saving/settings of Disp viewers.
122167
* Improve FilterSettingsView and add different GUI elements based on the currently set GUI mode. For example, scientific mode will enable advanced filter design tools, whereas in clinical mode only the lower and upper cut off frequencies can be defined.
123-
* Move CovarianceSettingsView from MNE Scan's Covariance plugin to Disp/viewers
168+
* Move CovarianceSettingsView from MNE Scan's Covariance plugin to Disp/viewers.
124169

125170
Disp3D
126171
* Add temporary fix on Windows for the Disp3D library and Qt 5.15.0 where the renderers plugin is deployed manually. This will be reverted once Qt 5.15.1 is released.
@@ -140,34 +185,34 @@ People who contributed to this release (preceded by number of commits):
140185
### Applications
141186

142187
MNE Analyze:
143-
* Fix application icon on Linux
144-
* Add timing labels below the signal viewer
145-
* Fix deployment of internal MNE Analyze libraries on Windows
146-
* Change list data model to child/parent item data model in AnalyzeData
147-
* Rename AnnotationView to AnnotationSettingsView
148-
* Update splashcreen to show full application name
188+
* Fix application icon on Linux.
189+
* Add timing labels below the signal viewer.
190+
* Fix deployment of internal MNE Analyze libraries on Windows.
191+
* Change list data model to child/parent item data model in AnalyzeData.
192+
* Rename AnnotationView to AnnotationSettingsView.
193+
* Update splashcreen to show full application name.
149194
* Refactor RawDataViewer plugin. The controls are no longer destroyed when a different file is selected. This led to some visible glitches when switching between files.
150195
* Do not allow floating or movable dock widgets in the WASM version. The QDockWidget behavior is a bit buggy in the current Qt WASM versions.
151196
* Use QOpenGLWidget instead of QOGLWidget. The latter is marked as deprecated.
152197
* Remember dock states and sizes inbetween MNE Analyze sessions.
153198

154199
MNE Scan:
155-
* Fix application icon on Linux
156-
* Fix deployment of internal MNE Scan libraries on Windows
157-
* Fix bug when receiving evoked data in source localization plugin
158-
* Update splashcreen to show full application name
200+
* Fix application icon on Linux.
201+
* Fix deployment of internal MNE Scan libraries on Windows.
202+
* Fix bug when receiving evoked data in source localization plugin.
203+
* Update splashcreen to show full application name.
159204

160205
### API libraries
161206

162207
Disp:
163-
* Remember dock states and sizes inbetween sessions in the MultiView
208+
* Remember dock states and sizes inbetween sessions in the MultiView.
164209

165210
Inverse:
166-
* Fix versioning bug
211+
* Fix versioning bug.
167212

168213
### Documentation
169214

170-
* Minor improvements and typo fixes
215+
* Minor improvements and typo fixes.
171216

172217
### Authors
173218

@@ -183,43 +228,43 @@ People who contributed to this release (preceded by number of commits):
183228
### Applications
184229

185230
MNE Analyze:
186-
* Fix bug during deployment of dynamically linked MNE Analyze version on macOS
187-
* Renamed MNE Analyze extensions to plugins
188-
* Fix issue with display width, now displays only full seconds as selected
189-
* Jump viewer to selected annotation with 'J' key
190-
* Removed seemingly unused timer debug outputs
191-
* Documentations and variable name changes for readability
192-
* Add plugin control views to menu bar
193-
* Clean up command line output
194-
* Add time information on the y-axis
231+
* Fix bug during deployment of dynamically linked MNE Analyze version on macOS.
232+
* Renamed MNE Analyze extensions to plugins.
233+
* Fix issue with display width, now displays only full seconds as selected.
234+
* Jump viewer to selected annotation with 'J' key.
235+
* Removed seemingly unused timer debug outputs.
236+
* Documentations and variable name changes for readability.
237+
* Add plugin control views to menu bar.
238+
* Clean up command line output.
239+
* Add time information on the y-axis.
195240

196241
MNE Scan:
197-
* Fix problems with Source Localization and Connectivity plugins
198-
* Fix problems where the QuickControlView was not populated with plugin control GUI widgets correctly
242+
* Fix problems with Source Localization and Connectivity plugins.
243+
* Fix problems where the QuickControlView was not populated with plugin control GUI widgets correctly.
199244

200245
MNE Anonymize:
201-
* Overall improvements and bug fixes to MNE Anonymize
246+
* Overall improvements and bug fixes to MNE Anonymize.
202247

203248
### API libraries
204249

205250
All:
206-
* Rename libraries and fix versioning
251+
* Rename libraries and fix versioning.
207252

208253
Fiff:
209-
* Fix bug when reading gantry_angle from Fiff file
254+
* Fix bug when reading gantry_angle from Fiff file.
210255

211256
### Tools
212-
* Fix template class in Qt Creator wizard for MNE-CPP classes
213-
* Update test and example Qt Creator wizards
257+
* Fix template class in Qt Creator wizard for MNE-CPP classes.
258+
* Update test and example Qt Creator wizards.
214259

215260
### Continuous Integration
216-
* Only branch off when a minor or major version bump occurred
217-
* Remove folders which we do not want to ship from dynamic builds
261+
* Only branch off when a minor or major version bump occurred.
262+
* Remove folders which we do not want to ship from dynamic builds.
218263

219264
### Documentation
220-
* Updated information on continuous integration
221-
* Improved build from source guide
222-
* Updated guide on streaming pre-recorded data in MNE Scan
265+
* Updated information on continuous integration.
266+
* Improved build from source guide.
267+
* Updated guide on streaming pre-recorded data in MNE Scan.
223268

224269
### Authors
225270

‎mne-cpp.pri

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ defineReplace(copyResources) {
100100

101101
############################################### GLOBAL DEFINES ################################################
102102

103-
VERSION = 0.1.4
103+
VERSION = 0.1.5
104104

105105
QMAKE_TARGET_PRODUCT = MNE-CPP
106106
QMAKE_TARGET_DESCRIPTION = MNE-CPP Qt and Eigen based C++ library.

0 commit comments

Comments
 (0)
Please sign in to comment.