Skip to content

Commit 46cce1e

Browse files
author
Daisuke Baba
committed
Merge branch 'hotfix/4.0.2'
2 parents 9569bd8 + 1b0694c commit 46cce1e

File tree

5 files changed

+9
-3
lines changed

5 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Revision History
22

3+
* 4.0.2
4+
- Fix Module Loading Error on macOS
5+
36
* 4.0.1
47
- Fix Module Loading Error
58

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
node-red-contrib-generic-ble
22
===
33

4+
[![GitHub release](https://img.shields.io/github/release/CANDY-LINE/node-red-contrib-generic-ble.svg)](https://github.com/CANDY-LINE/node-red-contrib-generic-ble/releases/latest)
5+
[![master Build Status](https://travis-ci.org/CANDY-LINE/node-red-contrib-generic-ble.svg?branch=master)](https://travis-ci.org/CANDY-LINE/node-red-contrib-generic-ble/)
6+
47
A Node-RED node set for providing access to generic BLE **peripheral** GATT characteristics.
58

69
As of v4.0.0, this node is optmized for Linux with BlueZ 5 D-Bus API (HCI socket is no longer used on Linux).

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-red-contrib-generic-ble",
3-
"version": "4.0.1",
3+
"version": "4.0.2",
44
"description": "Node-RED nodes for generic BLE devices",
55
"license": "Apache-2.0",
66
"repository": {

src/noble/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ if (platform === 'linux') {
3030
}
3131
if (!bindings) {
3232
debug(`Loading the default resolve-bindings module in @abandonware/noble.`);
33-
bindings = require('../../node_modules/@abandonware/noble/lib/resolve-bindings')();
33+
bindings = require('@abandonware/noble/lib/resolve-bindings')();
3434
}
3535

3636
class PeripheralRemovableNoble extends Noble {

0 commit comments

Comments
 (0)