signalk-vessels-to-ais 1.6.0 → 2.0.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
File without changes
package/.mocharc.json ADDED
@@ -0,0 +1,5 @@
1
+ {
2
+ "spec": "test/**/*.test.js",
3
+ "timeout": 5000,
4
+ "reporter": "spec"
5
+ }
package/README.md CHANGED
@@ -1,32 +1,34 @@
1
- # signalk-vessels-to-ais
2
- [![npm version](https://badge.fury.io/js/signalk-vessels-to-ais.svg)](https://badge.fury.io/js/signalk-vessels-to-ais)
3
- [![Known Vulnerabilities](https://snyk.io/test/github/KEGustafsson/signalk-vessels-to-ais/badge.svg)](https://snyk.io/test/github/KEGustafsson/signalk-vessels-to-ais)
4
-
5
- SignalK server plugin to convert other vessel data to NMEA0183 AIS format and forward it out to 3rd party applications.
6
-
7
- User can configure:
8
- - How often data is sent out
9
- - Own data can be added to AIS sending
10
-
11
- New:
12
- - v1.6.0, fix: enhance error handling for AIS timestamp retrieval
13
- - v1.5.1, fix: fix: improve shipName type checking
14
- - v1.5.0, fix: callSign reading
15
- - v1.4.0, add: Event output name to user configurable
16
- - v1.3.0, add: Navigational Status variations
17
- - v1.2.2, fix: if own position is not available
18
- - v1.2.1, fix: own vessel sending
19
- - v1.2.0, updated fetch method, no need for NODE_TLS_REJECT_UNAUTHORIZED=0 anymore
20
- - v1.1.5, updated vessels within selected timeframe are sent out, radius filtering around own vessel and tag-block option added
21
- - v1.1.4, small fix
22
- - v1.1.3, add: own vessel data and sending interval modified
23
- - v1.1.2, fix: http/https url selection and better error info
24
- - v1.1.1, fix: current status of the plugin updated
25
- - v1.1.0, fix: numeric value test for text strings of AIS
26
- - v1.0.0, v1 release
27
- - v0.0.6, fix: node-fetch issue with self signed cert
28
- - v0.0.5, fix: callSign default value
29
- - v0.0.4, fix: beam calc
30
- - v0.0.3, fix: ais path
31
- - v0.0.2, fix: data parsing
32
- - v0.0.1, 1st version
1
+ # signalk-vessels-to-ais
2
+ [![npm version](https://badge.fury.io/js/signalk-vessels-to-ais.svg)](https://badge.fury.io/js/signalk-vessels-to-ais)
3
+ [![Known Vulnerabilities](https://snyk.io/test/github/KEGustafsson/signalk-vessels-to-ais/badge.svg)](https://snyk.io/test/github/KEGustafsson/signalk-vessels-to-ais)
4
+
5
+ SignalK server plugin to convert other vessel data to NMEA0183 AIS format and forward it out to 3rd party applications.
6
+
7
+ User can configure:
8
+ - How often data is sent out
9
+ - Own data can be added to AIS sending
10
+
11
+ New:
12
+ - v2.0.0, refactor: use direct data access (app.getPath) instead of REST API, removed node-fetch and moment dependencies, added unit tests
13
+ - v1.6.1, fix: ggencoder ^1.0.9 is use
14
+ - v1.6.0, fix: enhance error handling for AIS timestamp retrieval
15
+ - v1.5.1, fix: fix: improve shipName type checking
16
+ - v1.5.0, fix: callSign reading
17
+ - v1.4.0, add: Event output name to user configurable
18
+ - v1.3.0, add: Navigational Status variations
19
+ - v1.2.2, fix: if own position is not available
20
+ - v1.2.1, fix: own vessel sending
21
+ - v1.2.0, updated fetch method, no need for NODE_TLS_REJECT_UNAUTHORIZED=0 anymore
22
+ - v1.1.5, updated vessels within selected timeframe are sent out, radius filtering around own vessel and tag-block option added
23
+ - v1.1.4, small fix
24
+ - v1.1.3, add: own vessel data and sending interval modified
25
+ - v1.1.2, fix: http/https url selection and better error info
26
+ - v1.1.1, fix: current status of the plugin updated
27
+ - v1.1.0, fix: numeric value test for text strings of AIS
28
+ - v1.0.0, v1 release
29
+ - v0.0.6, fix: node-fetch issue with self signed cert
30
+ - v0.0.5, fix: callSign default value
31
+ - v0.0.4, fix: beam calc
32
+ - v0.0.3, fix: ais path
33
+ - v0.0.2, fix: data parsing
34
+ - v0.0.1, 1st version