Skip to content

Commit 69a65b6

Browse files
committed
MAINT: Prepare for v0.1.6
1 parent 5f9ea80 commit 69a65b6

File tree

7 files changed

+57
-6
lines changed

7 files changed

+57
-6
lines changed

applications/mne_analyze/mne_analyze/info.h

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

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

applications/mne_anonymize/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ int main(int argc, char* argv[])
8888

8989
qtApp->setOrganizationName("MNE-CPP Project");
9090
qtApp->setApplicationName("MNE Anonymize");
91-
qtApp->setApplicationVersion("0.1.5");
91+
qtApp->setApplicationVersion("0.1.6");
9292

9393
QScopedPointer<MNEANONYMIZE::SettingsControllerCl> controller(h->createController(qtApp->arguments()));
9494

applications/mne_scan/mne_scan/info.h

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

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

doc/doxygen/mne-cpp_doxyfile

Lines changed: 1 addition & 1 deletion
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.5
41+
PROJECT_NUMBER = 0.1.6
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

Lines changed: 1 addition & 1 deletion
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.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> |
16+
| [0.1.6](changelog.md#version-016) | 2020-08-21 | <span class="fs-2"> [Windows](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.6/mne-cpp-windows-dynamic-x86_64.zip){: .btn .btn-blue } [Linux](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.6/mne-cpp-linux-dynamic-x86_64.tar.gz){: .btn .btn-blue } [MacOS](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.6/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.6/mne-cpp-windows-static-x86_64.zip){: .btn .btn-blue } [Linux](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.6/mne-cpp-linux-static-x86_64.tar.gz){: .btn .btn-blue } [MacOS](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.6/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

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,57 @@ nav_order: 1
77

88
# Changelog
99

10+
## Version 0.1.6 - 2020/08/21
11+
12+
### Applications
13+
14+
MNE Analyze
15+
* Add cmd line argument support for file loading
16+
* Add channel selection plugin
17+
* Remove channel selection in averaging plugin
18+
* Add scaling plugin
19+
* Add example plugin
20+
21+
MNE Scan
22+
* Remove no longer needed recording icons and move them to the write to file plugin instead
23+
* Remove no longer needed readme.txt in some of the plugins' resources
24+
25+
### API Libraries
26+
27+
Disp
28+
* Move *Apply to View* from channel selection to library layer to be used by both channel selection and scaling
29+
30+
RtProcessing
31+
* Add performIcp() namespace function to register a point cloud with a surface
32+
* Add fitMatchedPoints() namespace function to register two point clouds of same size using ICP and quaternions
33+
* Add discard3DPointOutliers() namespace function to discard outliers from digitizer set compared to a given 3D surface
34+
35+
Utils
36+
* Rename IOBUFFER to UTILSLIB namespace
37+
* Remove circularbuffer.cpp file since it was empty
38+
39+
### Documentation
40+
* Add documentation for MNE Analyze channel selection plugin
41+
* Add documentation for Disp3D library
42+
* Add documentation for connectivity library
43+
* Add documentation for MNE Analyze scaling plugin
44+
* Add documentation for plugin creation in MNE Analyze
45+
* Restructure static and dynamic build guides
46+
* Rename .md page files to better indicate what subject they belong to
47+
* Rename Learn pages for MNE Scan, MNE Analyze and MNE Anonymize
48+
* Rename MNE Lib to library API
49+
* Improve DoxyGen docu by making use of namespaces for MNE-C types
50+
* Improve documentation for MNE Scan eeg amplifiers and fix some typos
51+
* Hide Learn pages for MNE Dipole Fit and MNE Forward Solution for now (until they have been completley refactored)
52+
53+
### Authors
54+
55+
People who contributed to this release (preceded by number of commits):
56+
57+
(47) Gabriel Motta,
58+
(47) Ruben Dörfel,
59+
(16) Lorenz Esch
60+
1061
## Version 0.1.5 - 2020/07/30
1162

1263
### Applications

mne-cpp.pri

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ defineReplace(copyResources) {
100100

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

103-
VERSION = 0.1.5
103+
VERSION = 0.1.6
104104

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

0 commit comments

Comments
 (0)