Skip to content

Commit 6df2b5a

Browse files
committed
Update URLs and dependencies.
1 parent b25c934 commit 6df2b5a

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# thing-url-adapter
22

3-
This is an adapter add-on for the [Mozilla WebThings Gateway](https://github.com/mozilla-iot/gateway) that allows a user to discover native web things on their network.
3+
This is an adapter add-on for the [WebThings Gateway](https://github.com/WebThingsIO/gateway) that allows a user to discover native web things on their network.
44

55
## Adding Web Things to Gateway
66
* Usually, your custom web things should be auto-detected on the network via mDNS, so they should appear in the usual "Add Devices" screen.
77
* If they're not auto-detected, you can click "Add by URL..." at the bottom of the page and use the URL of your web thing.
8-
* If you're trying to add a server that contains multiple web things, i.e. the "multiple-things" examples from the [webthing-python](https://github.com/mozilla-iot/webthing-python), [webthing-node](https://github.com/mozilla-iot/webthing-node), or [webthing-java](https://github.com/mozilla-iot/webthing-java) libraries, you'll have to add them individually. You can do so by addressing them numerically, i.e. `http://myserver.local:8888/0` and `http://myserver.local:8888/1`.
8+
* If you're trying to add a server that contains multiple web things, i.e. the "multiple-things" examples from the [webthing-python](https://github.com/WebThingsIO/webthing-python), [webthing-node](https://github.com/WebThingsIO/webthing-node), or [webthing-java](https://github.com/WebThingsIO/webthing-java) libraries, you'll have to add them individually. You can do so by addressing them numerically, i.e. `http://myserver.local:8888/0` and `http://myserver.local:8888/1`.
99

1010
## Secure Web Things
1111
* Web Things that require jwt, basic or digest authentication can be supported by adding configuration options on the adapter page.

manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"author": "Mozilla IoT",
2+
"author": "WebThingsIO",
33
"description": "Native web thing support",
44
"gateway_specific_settings": {
55
"webthings": {
@@ -10,7 +10,7 @@
1010
"enabled": true
1111
}
1212
},
13-
"homepage_url": "https://github.com/mozilla-iot/thing-url-adapter",
13+
"homepage_url": "https://github.com/WebThingsIO/thing-url-adapter",
1414
"id": "thing-url-adapter",
1515
"license": "MPL-2.0",
1616
"manifest_version": 1,

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22
"name": "thing-url-adapter",
33
"version": "0.5.0",
44
"description": "Native web thing support",
5-
"author": "Mozilla IoT",
5+
"author": "WebThingsIO",
66
"main": "index.js",
77
"scripts": {
88
"lint": "eslint ."
99
},
10-
"homepage": "https://github.com/mozilla-iot/thing-url-adapter",
10+
"homepage": "https://github.com/WebThingsIO/thing-url-adapter",
1111
"license": "MPL-2.0",
1212
"repository": {
1313
"type": "git",
14-
"url": "https://github.com/mozilla-iot/thing-url-adapter.git"
14+
"url": "https://github.com/WebThingsIO/thing-url-adapter.git"
1515
},
1616
"bugs": {
17-
"url": "https://github.com/mozilla-iot/thing-url-adapter/issues"
17+
"url": "https://github.com/WebThingsIO/thing-url-adapter/issues"
1818
},
1919
"files": [
2020
"LICENSE",
@@ -26,11 +26,11 @@
2626
],
2727
"dependencies": {
2828
"dnssd": "^0.4.1",
29-
"node-fetch": "^2.6.0",
29+
"node-fetch": "^2.6.1",
3030
"ws": "^7.3.1"
3131
},
3232
"devDependencies": {
3333
"babel-eslint": "^10.1.0",
34-
"eslint": "^7.5.0"
34+
"eslint": "^7.10.0"
3535
}
3636
}

0 commit comments

Comments
 (0)