diff --git a/README.md b/README.md index f15c717..d9dbfdb 100644 --- a/README.md +++ b/README.md @@ -5,3 +5,10 @@ This repository contains a collection of function to import and export BIDS-form # Use with EEGLAB Simply place the code in the plugin folder of EEGLAB and it will be automatically detected by EEGLAB. + +# Version history + +v1.0 - initial version + +v2.0 - add support for external channel location and fix minor bugs + diff --git a/eegplugin_bids.m b/eegplugin_bids.m index 9327acc..850dbfc 100644 --- a/eegplugin_bids.m +++ b/eegplugin_bids.m @@ -11,7 +11,7 @@ function vers = eegplugin_bids(fig, trystrs, catchstrs) - vers = '1.0'; + vers = '2.0'; if nargin < 3 error('eegplugin_bids requires 3 arguments'); end @@ -38,4 +38,4 @@ % ------------ uimenu( menui1, 'label', 'From BIDS folder structure', 'separator', 'on', 'callback', comcnt1); uimenu( menui2, 'label', 'To BIDS folder structure', 'separator', 'on', 'callback', comcnt2, 'userdata', 'startup:off;study:on'); - set(menui2, 'userdata', 'startup:off;study:on'); \ No newline at end of file + set(menui2, 'userdata', 'startup:off;study:on');