Skip to content

Commit

Permalink
update version number in eegplugin_hedtools. Update wording to make m…
Browse files Browse the repository at this point in the history
…ore intuitive
  • Loading branch information
dungscout96 committed Jan 22, 2020
1 parent e5ebf4e commit 6b80e0d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
Binary file modified EEGLABPlugin/HEDTools2.6.0.zip
Binary file not shown.
4 changes: 2 additions & 2 deletions matlab/eegplugin_hedtools.m
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1.07 USA

function vers = eegplugin_hedtools(fig, trystrs, catchstrs)
vers = 'HEDTools2.5.0';
vers = 'HEDTools2.6.0';
% Check the number of input argumentsedit
if nargin < 3
error('eegplugin_hedtools requires 3 arguments');
Expand Down Expand Up @@ -106,5 +106,5 @@

% Add 'Extract epochs by tags' to 'Tools'
uimenu(parentMenu, 'Label', 'Extract epochs by tags', ...
'Position', position, 'Callback', finalcmd);
'Position', position, 'userdata', 'startup:off;study:off', 'Callback', finalcmd);
end
4 changes: 2 additions & 2 deletions matlab/helpers/interface/pop_savefmap_input.m
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
enablefMapFile = 'on';
end
canceled = true;
checkText1 = 'Save the tags as a field map';
checkText1 = 'Save the event field-HED tags mapping (field map) to reuse in future';
fMapSaveFile = '';
fMapDescription = '';
writeFMapToFile = false;
Expand All @@ -74,7 +74,7 @@
{ 'Style' 'checkbox' 'string' checkText1 'value' p.WriteFMapToFile ...
'callback' @savefMapCallback} ...
{ } ...
{ 'Style' 'text' 'string' 'field map file name:'} ...
{ 'Style' 'text' 'string' 'Field map file name:'} ...
{ 'Style' 'edit' 'string' p.FMapSaveFile 'tag' 'fMapPath' 'enable' ...
enablefMapFile} ...
{ 'Style' 'edit' 'string' p.FMapDescription 'Max' 2 'tag' ...
Expand Down
6 changes: 3 additions & 3 deletions matlab/helpers/interface/pop_tageeg_input.m
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@
{'Style', 'text', 'string', 'HED Schema'} ...
{'Style', 'edit', 'string', hedXml, 'tag', 'HEDpath', 'TooltipString', 'The HED XML file', 'Callback', {@hedEditBoxCallback}} ...
{'Style', 'pushbutton', 'string', '...', 'callback', @browseHEDFileCallBack} ...
{'Style', 'text', 'string', 'Import tagfile'} ...
{'Style', 'edit', 'string', baseMap, 'tag', 'fMapPath', 'TooltipString', 'FieldMap file (.mat) containing events and their associated HED tags', 'Callback', {@baseMapEditboxCallback}} ...
{'Style', 'text', 'string', 'Import tags from file'} ...
{'Style', 'edit', 'string', baseMap, 'tag', 'fMapPath', 'TooltipString', '.mat file containing events and their associated HED tags', 'Callback', {@baseMapEditboxCallback}} ...
{'Style', 'pushbutton', 'string', '...', 'callback', @browseBaseMapCallBack} ...
{'Style', 'text', 'string', ''},...
{'Style', 'checkbox', 'value', 1,...
Expand All @@ -95,7 +95,7 @@
'TooltipString', 'If checked, use menu to select fields to tag', 'tag', 'SelectField' } ...
{'Style', 'text', 'string', ''},...
{'Style', 'checkbox', 'value', 0,...
'string', 'Allow new HED tags (if compatible with the HED schema)',...
'string', 'Allow extension to the HED schema where compatible',...
'TooltipString', 'If checked, allow extension of HED schema where compatible with the schema definition', 'tag', 'ExtensionAllowed' } ...
};
%% Waiting for user input
Expand Down
6 changes: 3 additions & 3 deletions matlab/helpers/interface/pop_tagstudy_input.m
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@
{'Style', 'text', 'string', 'HED Schema'} ...
{'Style', 'edit', 'string', hedXml, 'tag', 'HEDpath', 'TooltipString', 'The HED XML file', 'Callback', {@hedEditBoxCallback}} ...
{'Style', 'pushbutton', 'string', '...', 'callback', @browseHEDFileCallBack} ...
{'Style', 'text', 'string', 'Import tagfile'} ...
{'Style', 'edit', 'string', baseMap, 'tag', 'fMapPath', 'TooltipString', 'FieldMap file (.mat) containing events and their associated HED tags', 'Callback', {@baseMapEditboxCallback}} ...
{'Style', 'text', 'string', 'Import tags from file'} ...
{'Style', 'edit', 'string', baseMap, 'tag', 'fMapPath', 'TooltipString', '.mat file containing events and their associated HED tags', 'Callback', {@baseMapEditboxCallback}} ...
{'Style', 'pushbutton', 'string', '...', 'callback', @browseBaseMapCallBack} ...
{'Style', 'text', 'string', ''},...
{'Style', 'checkbox', 'value', 1,...
Expand All @@ -103,7 +103,7 @@
'TooltipString', 'If checked, use menu to select fields to tag', 'tag', 'SelectField' } ...
{'Style', 'text', 'string', ''},...
{'Style', 'checkbox', 'value', 0,...
'string', 'Allow new HED tags (if compatible with the HED schema)',...
'string', 'Allow extension to the HED schema where compatible',...
'TooltipString', 'If checked, allow extension of HED schema where compatible with the schema definition', 'tag', 'ExtensionAllowed' } ...
};

Expand Down

0 comments on commit 6b80e0d

Please sign in to comment.