diff --git a/applications/mne_analyze/mne_analyze/info.h b/applications/mne_analyze/mne_analyze/info.h index 48e71a07b12..3c922893bbc 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 0; + return 1; } //========================================================================================================= diff --git a/applications/mne_scan/mne_scan/info.h b/applications/mne_scan/mne_scan/info.h index 134dd05b813..59ae904b9f0 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 0; + return 1; } //========================================================================================================= diff --git a/doc/doxygen/mne-cpp_doxyfile b/doc/doxygen/mne-cpp_doxyfile index afcbe3f0af7..1957d20340b 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.0 +PROJECT_NUMBER = 0.1.1 # 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 48dba0e4f13..6941dd70db8 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.0](changelog.md#version-010) | 2020-05-04 | [Windows](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.0/mne-cpp-windows-dynamic-x86_64.zip){: .btn .btn-blue } [Linux](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.0/mne-cpp-linux-dynamic-x86_64.tar.gz){: .btn .btn-blue } [MacOS](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.0/mne-cpp-macos-dynamic-x86_64.tar.gz){: .btn .btn-blue } | [Windows](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.0/mne-cpp-windows-static-x86_64.zip){: .btn .btn-blue } [Linux](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.0/mne-cpp-linux-static-x86_64.tar.gz){: .btn .btn-blue } [MacOS](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.0/mne-cpp-macos-static-x86_64.tar.gz){: .btn .btn-blue } | +| [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 } | Development Release {: .label .label-green } diff --git a/doc/gh-pages/pages/install/changelog.md b/doc/gh-pages/pages/install/changelog.md index 8274c55b4c2..5be375acc14 100644 --- a/doc/gh-pages/pages/install/changelog.md +++ b/doc/gh-pages/pages/install/changelog.md @@ -7,6 +7,59 @@ nav_order: 1 # Changelog +## Version 0.1.1 + +### Applications + +MNE Analyze: +* Fix bug during deployment of dynamically linked MNE Analyze version on macOS +* Renamed MNE Analyze extensions to plugins +* Fix issue with display width, now displays only full seconds as selected +* Jump viewer to selected annotation with 'J' key +* Removed seemingly unused timer debug outputs +* Documentations and variable name changes for readability +* Add plugin control views to menu bar +* Clean up command line output +* Add time information on the y-axis + +MNE Scan: +* Fix problems with Source Localization and Connectivity plugins +* Fix problems where the QuickControlView was not populated with plugin control GUI widgets correctly + +MNE Anonymize: +* Overall improvements and bug fixes to MNE Anonymize + +### API libraries + +All: +* Rename libraries and fix versioning +* Don't let libraries deploy themselves for windows builds. Instead include library copying to the mne-cpp.pri windeployqt function + +Fiff: +* Fix bug when reading gantry_angle from Fiff file + +### Tools +* Fix template class in Qt Creator wizard for MNE-CPP classes +* Update test and example Qt Creator wizards + +### Continuous Integration +* Only branch off when a minor or major version bump occurred +* Remove folders which we do not want to ship from dynamic builds + +### Documentation +* Updated information on continuous integration +* Improved build from source guide +* Updated guide on streaming pre-recorded data in MNE Scan + +### Authors + +People who contributed to this release (preceded by number of commits): + +(115) Juan Garcia-Prieto +(43) Lorenz Esch +(2) Ruben Dörfel +(7) Gabriel Motta + ## Version 0.1.0 ### Changes diff --git a/examples/ex_cancel_noise/ex_cancel_noise.pro b/examples/ex_cancel_noise/ex_cancel_noise.pro index 5bacdbbc75b..92993714b4c 100644 --- a/examples/ex_cancel_noise/ex_cancel_noise.pro +++ b/examples/ex_cancel_noise/ex_cancel_noise.pro @@ -42,6 +42,7 @@ QT += network QT -= gui CONFIG += console +CONFIG -= app_bundle TARGET = ex_cancel_noise diff --git a/mne-cpp.pri b/mne-cpp.pri index 7ad298a2503..7245d097984 100644 --- a/mne-cpp.pri +++ b/mne-cpp.pri @@ -100,7 +100,7 @@ defineReplace(copyResources) { ############################################### GLOBAL DEFINES ################################################ -VERSION = 0.1.0 +VERSION = 0.1.1 QMAKE_TARGET_PRODUCT = MNE-CPP QMAKE_TARGET_DESCRIPTION = MNE-CPP Qt and Eigen based C++ library.