Skip to content

Commit ad4fc8b

Browse files
committed
Merge branch 'develop' of github.com:sccn/eeglab into develop
2 parents a2c0afe + 280be28 commit ad4fc8b

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

eeglab.prj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ If it is defined, set it to the concatenation of these strings:
100100
<file>${PROJECT_ROOT}\plugins\ANTeepimport1.13</file>
101101
<file>${PROJECT_ROOT}\plugins\bids-matlab-tools6.1</file>
102102
<file>${PROJECT_ROOT}\plugins\bids-matlab-tools6.1\JSONIO</file>
103-
<file>${PROJECT_ROOT}\plugins\bva-io1.7</file>
103+
<file>${PROJECT_ROOT}\plugins\bva-io1.71</file>
104104
<file>${PROJECT_ROOT}\plugins\clean_rawdata</file>
105105
<file>${PROJECT_ROOT}\plugins\dipfit</file>
106106
<file>${PROJECT_ROOT}\plugins\egilegacy1.0</file>
@@ -122,6 +122,7 @@ If it is defined, set it to the concatenation of these strings:
122122
<file>${PROJECT_ROOT}\plugins\scd1.0</file>
123123
<file>${PROJECT_ROOT}\plugins\snapmaster1.0</file>
124124
<file>${PROJECT_ROOT}\plugins\VisEd1.05</file>
125+
<file>${PROJECT_ROOT}\plugins\xdfimport1.18</file>
125126
<file>${PROJECT_ROOT}\plugins\xdfimport1.18\xdf</file>
126127
<file>${PROJECT_ROOT}\plugins\MFFMatlabIO4.0</file>
127128
<file>${PROJECT_ROOT}\plugins\MFFMatlabIO4.0\MFF-1.2.2-jar-with-dependencies.jar</file>

functions/adminfunc/eeg_getversion.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@
4141

4242
function [vers, versnum, releaseDate] = eeg_getversion
4343

44-
vers = '2022.0';
45-
releaseDate = '11-Feb-22 14:55:42'; % unix date -> date +"%d-%b-%y %T"
44+
vers = '2022.1';
45+
releaseDate = '1-Aug-22 14:55:42'; % unix date -> date +"%d-%b-%y %T"
4646

4747
% get numerical version number
4848
tmpvers = vers;

functions/supportfiles/test_compiled_version.m

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,18 @@ function test_compiled_version(varargin)
1212
end
1313

1414
try
15+
% test binary files
16+
if isdeployed
17+
TMP = pop_loadxdf( fullfile('sample_data', 'test_data', 'test.xdf') );
18+
TMP = pop_loadbv( fullfile('sample_data', 'test_data'), 'testbva.vhdr' );
19+
TMP = pop_loadcnt( fullfile('sample_data', 'test_data', 'test.cnt') );
20+
TMP = pop_musemonitor( fullfile('sample_data', 'test_data', 'testmusemonitor.csv') );
21+
TMP = pop_mffimport( fullfile(pwd, 'sample_data', 'test_data', 'testmff.mff'), 'code' );
22+
TMP = pop_biosig( fullfile('sample_data', 'test_data', 'test.edf') );
23+
TMP = pop_biosig( fullfile('sample_data', 'test_data', 'test.bdf') );
24+
[TMP,TMP2] = pop_importbids( fullfile('sample_data', 'test_data', 'BIDS_test'), 'bidsevent', 'off' );
25+
end
26+
1527
% EEGLAB history file generated on the 08-Jul-2020
1628
% ------------------------------------------------
1729
EEG = pop_loadset( 'filename', 'eeglab_data.set', 'filepath', 'sample_data');

0 commit comments

Comments
 (0)