Skip to content

Commit

Permalink
Bugfix: "brainstorm arg1 .. argN local" was sorting the arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
ftadel committed Mar 22, 2023
1 parent 1ff8f23 commit 07a5f86
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions brainstorm.m
Expand Up @@ -285,12 +285,12 @@
% Start brainstorm in server mode (local database or not)
% With extra parameters
if (length(varargin) > 1)
params = varargin(2:end);
if any(cellfun(@(c)isequal(c,'local'), varargin(2:end)))
brainstorm server local;
params = setdiff(varargin(2:end), 'local');
params(cellfun(@(c)isequal(c,'local'), params)) = [];
else
brainstorm server;
params = varargin(2:end);
end
% Without extra parameters
else
Expand Down
2 changes: 1 addition & 1 deletion doc/license.html
Expand Up @@ -5,7 +5,7 @@
<body alink="#fff000" link="#fff000" vlink="#fff000">
<h4><span style="font-family: Arial Black; color: #ffffff;"><strong>THERE IS NO UNDO BUTTON!<BR>SET UP A <FONT color=red>BACKUP</FONT> OF YOUR DATABASE</strong></span></h4>
<HR>
<!-- LICENCE_START -->Version: 3.230321 (21-Mar-2023)<br>
<!-- LICENCE_START -->Version: 3.230322 (22-Mar-2023)<br>
<span style="font-style: italic;">COPYRIGHT &copy; 2000-2023
USC &amp; McGill University.<br>
</span>
Expand Down
2 changes: 2 additions & 0 deletions doc/updates.txt
@@ -1,6 +1,8 @@
March 2023
- Parallel computing: Handle temporary files per process, to avoid conflicts
- Recordings: Optional storage of events channels and notes
- Anatomy: New template ICBM152 2023b: New BEM and cortex for OpenMEEG
- Anatomy: Contralateral projection of volume scouts
--------------------------------------------------------------
February 2023
- Stat: Added FieldTrip threshold-free cluster enhancement (TFCE)
Expand Down
2 changes: 1 addition & 1 deletion doc/version.txt
@@ -1,2 +1,2 @@
% Brainstorm
% v. 3.230321 (21-Mar-2023)
% v. 3.230322 (22-Mar-2023)

0 comments on commit 07a5f86

Please sign in to comment.