Skip to content

Commit 250e6e8

Browse files
Renaming (#7)
* renames macro functions to .m file extension * renaming more
1 parent fcf45c4 commit 250e6e8

File tree

10 files changed

+12
-7
lines changed

10 files changed

+12
-7
lines changed

.github/workflows/nelson_module.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Download Nelson v0.5.6 (win64)
1414
run: |
1515
$null = mkdir c:/install
16-
(new-object net.webclient).DownloadFile("http://nelson.surge.sh/Nelson-0.5.6.1257-x86-64.exe", "C:\install\Nelson-x86-64.exe")
16+
(new-object net.webclient).DownloadFile("http://nelson.surge.sh/Nelson-0.5.6.3327-x86-64.exe", "C:\install\Nelson-x86-64.exe")
1717
shell: powershell
1818

1919
- name: Install Nelson

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
# module_skeleton
77
#==============================================================================
88
help/en_US/org.nelson.modules.*.help.qch
9-
loader.nls
9+
loader.m
1010
package-lock.json
1111
#==============================================================================

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 3.0.0 (06/24/2021)
2+
3+
- Nelson 0.5.6 required.
4+
- .m used everywhere.
5+
16
# 2.2.0 (06/17/2021)
27

38
- Nelson 0.5.6 used.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ nmm('install', 'https://github.com/Nelson-numerical-software/module_skeleton_bas
1212
## Build module:
1313

1414
```
15-
run('builder.nls')
15+
run('builder.m')
1616
```
1717

1818
## Load module:
1919

2020
```
21-
run('loader.nls')
21+
run('loader.m')
2222
```
2323

2424
Allan CORNET (nelson.numerical.computation@gmail.com)
File renamed without changes.
File renamed without changes.
File renamed without changes.

module.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"module": "module_skeleton_basic",
33
"title": "Module skeleton basic",
44
"summary": "Skeleton of a basic nelson package",
5-
"version": "2.2.0",
5+
"version": "3.0.0",
66
"platforms": "all",
77
"nelson": "<2.0.0",
88
"builtin": false,
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
% This file is released under the 3-clause BSD license. See COPYING-BSD.
55
%=============================================================================
66
if ~ismodule('module_skeleton_basic')
7-
run([fileparts(nfilename('fullpathext')), '/../loader.nls']);
7+
run([fileparts(nfilename('fullpathext')), '/../loader.m']);
88
end
99
%=============================================================================
1010
tic()
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
% This file is released under the 3-clause BSD license. See COPYING-BSD.
55
%=============================================================================
66
if ~ismodule('module_skeleton_basic')
7-
run([fileparts(nfilename('fullpathext')), '/../loader.nls']);
7+
run([fileparts(nfilename('fullpathext')), '/../loader.m']);
88
end
99
%=============================================================================
1010
assert_isequal(nargin('macro_sum'), -1);

0 commit comments

Comments
 (0)