Skip to content

Commit

Permalink
***** NPMK Version 5.4.1.0 :September 15, 2020 *****
Browse files Browse the repository at this point in the history
%
% 1.1.0.0: settingsManager: September 16, 2020
%   - Fixed a bug where the response to 1/4 uV warning was not being saved.
%
  • Loading branch information
kianabc committed Sep 16, 2020
1 parent 6672385 commit 5565d1d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
5 changes: 4 additions & 1 deletion NPMK/Other tools/settingsManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@
% 1.0.0.0: August 13, 2020
% - Initial release.
%
% 1.1.0.0: September 16, 2020
% - Fixed a bug where the response to 1/4 uV warning was not being saved.
%

% Finding the correct settings file for this version of MATLAB
fullPath = which('settingsManager.m');
Expand All @@ -42,7 +45,7 @@
checkeddate = varargin{1}.checkeddate;
ShowZeroPadWarning = varargin{1}.ShowZeroPadWarning;
ShowuVWarning = varargin{1}.ShowuVWarning;
save(fullPath, 'checkeddate', 'ShowZeroPadWarning'); % Save the settings file
save(fullPath, 'checkeddate', 'ShowZeroPadWarning', 'ShowuVWarning'); % Save the settings file
end
else % Since it doesn't exist, create and save it.
checkeddate = datetime;
Expand Down
8 changes: 7 additions & 1 deletion NPMK/Versions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -443,5 +443,11 @@ NPMK Version 2.8.2.0: 5 May 2014
% - Updated to use settingsManager instead.
% - Fixed a bug that was still creating a NPMKverChecker.dat.

***** NPMK Version 5.4.1.0 :September 15, 2020 *****
%
% 1.1.0.0: settingsManager: September 16, 2020
% - Fixed a bug where the response to 1/4 uV warning was not being saved.
%


LATEST:5.4.0.0
LATEST:5.4.1.0

0 comments on commit 5565d1d

Please sign in to comment.