@homebridge/dbus-native
Advanced tools
Comparing version 0.4.0 to 0.4.1
@@ -1,2 +0,2 @@ | ||
const Long = require('long'); | ||
const Long = require('@homebridge/long'); | ||
const parseSignature = require('./signature'); | ||
@@ -3,0 +3,0 @@ |
const Buffer = require('safe-buffer').Buffer; | ||
const align = require('./align').align; | ||
const parseSignature = require('../lib/signature'); | ||
const Long = require('long'); | ||
const Long = require('@homebridge/long'); | ||
/** | ||
@@ -66,4 +66,3 @@ * MakeSimpleMarshaller | ||
const buff = Buffer.from(data, 'utf8'); | ||
ps | ||
.word32le(buff.length) | ||
ps.word32le(buff.length) | ||
.put(buff) | ||
@@ -84,4 +83,3 @@ .word8(0); | ||
const buff = Buffer.from(data, 'ascii'); | ||
ps | ||
.word8(data.length) | ||
ps.word8(data.length) | ||
.put(buff) | ||
@@ -88,0 +86,0 @@ .word8(0); |
{ | ||
"name": "@homebridge/dbus-native", | ||
"author": "Andrey Sidorov <sidorares@yandex.com>", | ||
"version": "0.4.0", | ||
"version": "0.4.1", | ||
"keywords": [ | ||
@@ -43,3 +43,3 @@ "dbus", | ||
"hexy": "^0.2.10", | ||
"long": "^4.0.0", | ||
"@homebridge/long": "^5.2.1", | ||
"optimist": "^0.6.1", | ||
@@ -50,3 +50,3 @@ "put": "0.0.6", | ||
}, | ||
"uncomment": { | ||
"comment": { | ||
"optionalDependencies": { | ||
@@ -53,0 +53,0 @@ "abstract-socket": "^2.0.0" |
@@ -9,2 +9,9 @@ node-dbus | ||
Fork Status | ||
------------ | ||
This fork is maintained with the following two changes: | ||
* Removed the optional `abstract-socket` dependency for faster installs | ||
* Moved to our `long.js` fork to work around a crash on `ARMv6` platforms running node 16.1+ | ||
Installation | ||
@@ -11,0 +18,0 @@ ------------ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
76990
132
2096
+ Added@homebridge/long@^5.2.1
+ Added@homebridge/long@5.2.1(transitive)
- Removedlong@^4.0.0
- Removedlong@4.0.0(transitive)