@canboat/canboatjs 2.5.5 → 2.5.7

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.
package/README.md CHANGED
@@ -8,8 +8,7 @@ Canboatjs is a port of the canboat project (https://github.com/canboat/canboat)
8
8
 
9
9
  # Contributors
10
10
 
11
- Canboajs js is built on the backs of a few people whithout whom it would not be possible.
12
-
11
+ - Scott Bender <scott@scottbender.net>
13
12
  - Kees Verruijt <kees@verruijt.net>
14
13
  - Jouni Hartikainen <jouni.hartikainen@iki.fi>
15
14
  - Teppo Kurki <teppo.kurki@iki.fi>
@@ -55,7 +54,7 @@ Example: `candump can0 | candumpanalyzerjs`
55
54
 
56
55
  Read directly from a socketcan device without the need to install can-utils
57
56
 
58
- Example: candumpjs can0
57
+ Example: `candumpjs can0`
59
58
 
60
59
  ## ydvr-file
61
60
 
package/lib/canbus.js CHANGED
@@ -56,12 +56,12 @@ function CanbusStream (options) {
56
56
 
57
57
  this.setProviderStatus = options.app && options.app.setProviderStatus
58
58
  ? (msg) => {
59
- options.app.setPluginStatus(options.providerId, msg)
59
+ options.app.setProviderStatus(options.providerId, msg)
60
60
  }
61
61
  : () => {}
62
62
  this.setProviderError = options.app && options.app.setProviderError
63
63
  ? (msg) => {
64
- options.app.setPluginError(options.providerId, msg)
64
+ options.app.setProviderError(options.providerId, msg)
65
65
  }
66
66
  : () => {}
67
67
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@canboat/canboatjs",
3
- "version": "2.5.5",
3
+ "version": "2.5.7",
4
4
  "description": "Native javascript version of canboat",
5
5
  "main": "index.js",
6
6
  "scripts": {