Skip to content

Commit

Permalink
Merge remote-tracking branch 'remotes/origin/development'
Browse files Browse the repository at this point in the history
  • Loading branch information
jayd1860 committed May 25, 2023
2 parents 571410e + e5a5a8a commit 666ab6d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
4 changes: 3 additions & 1 deletion DataTree/DataTreeClass.m
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,9 @@ function FindAndLoadGroups(obj, groupDirs, fmt, procStreamCfgFile, options)
while dataInit.GetError() < 0
dataInit = FindFiles(obj.dirnameGroups{kk}, fmt, options);
if isempty(dataInit) || dataInit.IsEmpty()
obj.filesErr = dataInit.filesErr;
if ~isempty(dataInit)
obj.filesErr = dataInit.filesErr;
end
ErrorCheckLoadedFiles(obj);
return;
end
Expand Down
2 changes: 1 addition & 1 deletion DataTree/Version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.15.1
1.15.2
8 changes: 4 additions & 4 deletions Install/setup.m
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function setup()

% ------------------------------------------------------------
function main()
global h %#ok<*GVMIS>
global h
global nSteps
global iStep
global platform
Expand All @@ -61,7 +61,7 @@ function main()

[~, exename] = getAppname();

v = getVernum();
v = getVernum(exename);
logger.Write('==========================================\n');
logger.Write('Setup script for %s v%s:\n', exename, v);
logger.Write('==========================================\n\n');
Expand Down Expand Up @@ -136,7 +136,7 @@ function main()
msg{1} = sprintf('Error: Could not remove old installation folder %s. It might be in use by other applications.\n', dirnameDst);
msg{2} = sprintf('Try closing and reopening file browsers or any other applications that might be using the\n');
msg{3} = sprintf('installation folder and then retry installation.');
menu([msg{:}], 'OK');
MenuBox(msg, 'OK');
pause(5);
rethrow(ME)
end
Expand Down Expand Up @@ -281,7 +281,7 @@ function createDesktopShortcuts(dirnameSrc, dirnameDst)
end
catch ME
msg{1} = sprintf('Error: Could not create %s shortcuts on Desktop. Exiting installation.', exename);
menu([msg{:}], 'OK');
MenuBox(msg, 'OK');
printStack(ME)
return;
end
Expand Down
2 changes: 1 addition & 1 deletion Version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.80.1
1.80.2

0 comments on commit 666ab6d

Please sign in to comment.