-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
***** NPMK Version 4.5.1.0 :September 13, 2017 *****
% openNSx 6.4.3.0: September 13, 2017 % - Removed a redundant block of code that was accidentally placed in the % script twice. % - Checks to see if there's a newer version of NPMK is available. % openNEV 5.4.0.0: September 13, 2017 % - Checks to see if there's a newer version of NPMK is available. % - Properly reads the comment colors. % NPMKverChecker 1.0.0.0: September 13, 2017 % - Initial Release.
- Loading branch information
Kian Torab
committed
Sep 13, 2017
1 parent
cd66f14
commit fce0338
Showing
5 changed files
with
65 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
/Users/kianabc/Documents/Sample Data/The Most Perfect Data in the WWWorld/sampleData/ | ||
/Users/kianabc/Downloads/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
function NPMKverChecker() | ||
|
||
% NPMKverChecker | ||
% | ||
% Checks to see if there is a newer version of NPMK is available for | ||
% download. | ||
% | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% Use NPMKverChecker | ||
% | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% Kian Torab | ||
% [email protected] | ||
% Blackrock Microsystems | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% Version History | ||
% | ||
% 1.0.0.0: September 13, 2017 | ||
% - Initial release. | ||
% | ||
|
||
%% Check for the latest version fo NPMK | ||
FIDv = fopen('Versions.txt'); | ||
verFile = fscanf(FIDv, '%s'); | ||
fclose(FIDv); | ||
latestVersion = verFile(findstr('LATEST', verFile)+7:findstr('LATEST', verFile)+13); | ||
gitHubPage = urlread('https://github.com/BlackrockMicrosystems/NPMK/releases/latest'); | ||
newVersionAvailable = findstr(latestVersion, gitHubPage); | ||
if isempty(newVersionAvailable) | ||
disp('A new version of NPMK may be available.'); | ||
disp('Please visit https://github.com/BlackrockMicrosystems/NPMK/releases/latest to get the latest version.'); | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters