Skip to content

Commit

Permalink
### 1.1.30: Maintenance Release
Browse files Browse the repository at this point in the history
**Fixes**
- Improvement for check ads netID
  • Loading branch information
PLCHome committed Sep 18, 2022
1 parent 9e7c975 commit fc9a7cd
Show file tree
Hide file tree
Showing 4 changed files with 73 additions and 10 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### 1.1.30: Maintenance Release

**Fixes**
- Improvement for check ads netID

### 1.1.29: Maintenance Release

**Fixes**
Expand Down
8 changes: 6 additions & 2 deletions ads-connection.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,16 @@
amsNetIdTarget: {
value: '',
required: true,
validate: checkIP
validate: function(val){ var ok = checkIP(val,6);
return ok;
}
},
amsNetIdSource: {
value: '',
required: true,
validate: checkIP
validate: function(val){ var ok = checkIP(val,6);
return ok;
}
},
port: {
value: 48898,
Expand Down
68 changes: 61 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Provides nodes to talk to Beckhoff TwinCAT PLC variables over ADS",
"license": "MIT",
"dependencies": {
"node-ads-api": "^1.4.16"
"node-ads-api": "^1.4.17"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit fc9a7cd

Please sign in to comment.