Commit b3022193 authored by Jay Dubb's avatar Jay Dubb
Browse files

v1.25.11

-- Fix issue found by Christian Arthur where StimEditGUI.fig does not look right on some screens because some of the objects units are not normalized.

-- Fix issue found by Christian Arthur where selecting stims right-to-left (as opposed to left-to-right) the wrong region is selected gives and a message box pops up saying that stims weren't selected.

-- Fix bug in binary search binaraysearchnearest.m used in StimEditGUI to determine time points selected, which generates error when user selects out of range of time course using edit box.

-- Minor edits to installation files
parent 8794ddb6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ SNIRF
On

% Last Checked For Update
28-Sep-2020 16:49:33
07-Oct-2020 16:49:33

% Check For Updates
on
+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ if ~exist('flags','var')
    flags = {};
end

% Matlab compiler generates a readme file that overwrites the homer3 one
% Matlab compiler generates a readme file that overwrites the app readme
% that already xists. Before we start build , move readme to temp file and 
% at end of build delete the newly generated readme and move the temp one 
% back. 
+2 −2
Original line number Diff line number Diff line
@@ -10,8 +10,8 @@ if dirnameApp(end)~='/' & dirnameApp(end)~='\'
end

if ~exist('dirnameInstall','var') | isempty(dirnameInstall)
    if exist('./INSTALL','dir')
        dirnameInstall = [pwd, '/INSTALL'];        
    if exist('./Install','dir')
        dirnameInstall = [pwd, '/Install'];        
    else
        dirnameInstall = pwd;
    end
+14.9 KiB (59.5 KiB)

File changed.

No diff preview for this file type.

+7 −7
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@ if sval<=x(1)
end

from = 1;
to=n;
to = n-1;
while from <= to
    mid = round((from + to)/2);    
    diff = x(mid)-sval;
Loading