diff --git a/applications/mne_analyze/mne_analyze/info.h b/applications/mne_analyze/mne_analyze/info.h index 3c922893bbc..633f9c36855 100644 --- a/applications/mne_analyze/mne_analyze/info.h +++ b/applications/mne_analyze/mne_analyze/info.h @@ -141,7 +141,7 @@ class CInfo */ static int RevisionVersion() { - return 1; + return 2; } //========================================================================================================= diff --git a/applications/mne_scan/mne_scan/info.h b/applications/mne_scan/mne_scan/info.h index 59ae904b9f0..b2cc143575a 100644 --- a/applications/mne_scan/mne_scan/info.h +++ b/applications/mne_scan/mne_scan/info.h @@ -137,7 +137,7 @@ class CInfo */ static int RevisionVersion() { - return 1; + return 2; } //========================================================================================================= diff --git a/doc/doxygen/mne-cpp_doxyfile b/doc/doxygen/mne-cpp_doxyfile index 1957d20340b..00cd0dbe6d2 100644 --- a/doc/doxygen/mne-cpp_doxyfile +++ b/doc/doxygen/mne-cpp_doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = MNE-CPP # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 0.1.1 +PROJECT_NUMBER = 0.1.2 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/doc/gh-pages/pages/install/binaries.md b/doc/gh-pages/pages/install/binaries.md index 6941dd70db8..c762ece00de 100644 --- a/doc/gh-pages/pages/install/binaries.md +++ b/doc/gh-pages/pages/install/binaries.md @@ -13,7 +13,7 @@ Stable Releases | Version | Release | Dynamic Build | Static Build | |-------|-------|-------|-------| -| [0.1.1](changelog.md#version-011) | 2020-05-14 | [Windows](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.1/mne-cpp-windows-dynamic-x86_64.zip){: .btn .btn-blue } [Linux](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.1/mne-cpp-linux-dynamic-x86_64.tar.gz){: .btn .btn-blue } [MacOS](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.1/mne-cpp-macos-dynamic-x86_64.tar.gz){: .btn .btn-blue } | [Windows](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.1/mne-cpp-windows-static-x86_64.zip){: .btn .btn-blue } [Linux](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.1/mne-cpp-linux-static-x86_64.tar.gz){: .btn .btn-blue } [MacOS](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.1/mne-cpp-macos-static-x86_64.tar.gz){: .btn .btn-blue } | +| [0.1.2](changelog.md#version-012) | 2020-05-21 | [Windows](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.2/mne-cpp-windows-dynamic-x86_64.zip){: .btn .btn-blue } [Linux](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.2/mne-cpp-linux-dynamic-x86_64.tar.gz){: .btn .btn-blue } [MacOS](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.2/mne-cpp-macos-dynamic-x86_64.tar.gz){: .btn .btn-blue } | [Windows](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.2/mne-cpp-windows-static-x86_64.zip){: .btn .btn-blue } [Linux](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.2/mne-cpp-linux-static-x86_64.tar.gz){: .btn .btn-blue } [MacOS](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.2/mne-cpp-macos-static-x86_64.tar.gz){: .btn .btn-blue } | Development Release {: .label .label-green } diff --git a/doc/gh-pages/pages/install/changelog.md b/doc/gh-pages/pages/install/changelog.md index f7c43ef733f..f7eb00ba0dc 100644 --- a/doc/gh-pages/pages/install/changelog.md +++ b/doc/gh-pages/pages/install/changelog.md @@ -7,7 +7,50 @@ nav_order: 1 # Changelog -## Version 0.1.1 +## Version 0.1.2 - 2020/05/21 + +### Applications + +MNE Analyze: +* Fix application icon on Linux +* Add timing labels below the signal viewer +* Fix deployment of internal MNE Analyze libraries on Windows +* Change list data model to child/parent item data model in AnalyzeData +* Rename AnnotationView to AnnotationSettingsView +* Update splashcreen to show full application name +* 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. +* 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. +* Use QOpenGLWidget instead of QOGLWidget. The latter is marked as deprecated. +* Remember dock states and sizes inbetween MNE Analyze sessions. + +MNE Scan: +* Fix application icon on Linux +* Fix deployment of internal MNE Scan libraries on Windows +* Fix bug when receiving evoked data in source localization plugin +* Update splashcreen to show full application name + +### API libraries + +Disp: +* Remember dock states and sizes inbetween sessions in the MultiView + +Inverse: +* Fix versioning bug + +### Documentation + +* Minor improvements and typo fixes + +### Authors + +People who contributed to this release (preceded by number of commits): + +(42) Lorenz Esch, +(9) Gabriel Motta, +(5) Juan Garcia-Prieto, +(1) Ruben Dörfel + +## Version 0.1.1 - 2020/05/14 ### Applications @@ -59,7 +102,7 @@ People who contributed to this release (preceded by number of commits): (7) Gabriel Motta, (2) Ruben Dörfel, -## Version 0.1.0 +## Version 0.1.0 - 2020/05/04 ### Changes diff --git a/mne-cpp.pri b/mne-cpp.pri index 7245d097984..383bd39f61b 100644 --- a/mne-cpp.pri +++ b/mne-cpp.pri @@ -100,7 +100,7 @@ defineReplace(copyResources) { ############################################### GLOBAL DEFINES ################################################ -VERSION = 0.1.1 +VERSION = 0.1.2 QMAKE_TARGET_PRODUCT = MNE-CPP QMAKE_TARGET_DESCRIPTION = MNE-CPP Qt and Eigen based C++ library.