Skip to content

Commit 2ed488c

Browse files
committed
Drop Mozilla branding.
1 parent 126d78a commit 2ed488c

File tree

6 files changed

+10
-12
lines changed

6 files changed

+10
-12
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# tide-calendar-adapter
22

3-
Tide calendar adapter for Mozilla WebThings Gateway.
3+
Tide calendar adapter for WebThings Gateway.
44

55
# Configuration
66

@@ -19,7 +19,5 @@ This is the tide level unit you want, either feet (english) or meters (metric).
1919
If you're running this add-on outside of the official gateway image for the Raspberry Pi, i.e. you're running on a development machine, you'll need to do the following (adapt as necessary for non-Ubuntu/Debian):
2020

2121
```
22-
sudo apt install python3-dev libnanomsg-dev
23-
sudo pip3 install nnpy
24-
sudo pip3 install git+https://github.com/mozilla-iot/gateway-addon-python.git
22+
sudo pip3 install git+https://github.com/WebThingsIO/gateway-addon-python.git
2523
```

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Tide calendar adapter for Mozilla WebThings Gateway."""
1+
"""Tide calendar adapter for WebThings Gateway."""
22

33
from os import path
44
import functools

manifest.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"author": "Mozilla IoT",
3-
"description": "Tide calendar for Mozilla WebThings Gateway",
2+
"author": "WebThingsIO",
3+
"description": "Tide calendar for WebThings Gateway",
44
"gateway_specific_settings": {
55
"webthings": {
66
"exec": "python3 {path}/main.py",
@@ -9,7 +9,7 @@
99
"strict_min_version": "0.10.0"
1010
}
1111
},
12-
"homepage_url": "https://github.com/mozilla-iot/tide-calendar-adapter",
12+
"homepage_url": "https://github.com/WebThingsIO/tide-calendar-adapter",
1313
"id": "tide-calendar-adapter",
1414
"license": "MPL-2.0",
1515
"manifest_version": 1,
@@ -45,5 +45,5 @@
4545
}
4646
},
4747
"short_name": "Tide",
48-
"version": "0.4.2"
48+
"version": "0.4.3"
4949
}

pkg/tide_calendar_adapter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Tide calendar adapter for Mozilla WebThings Gateway."""
1+
"""Tide calendar adapter for WebThings Gateway."""
22

33
from gateway_addon import Adapter, Database
44

pkg/tide_calendar_device.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Tide calendar adapter for Mozilla WebThings Gateway."""
1+
"""Tide calendar adapter for WebThings Gateway."""
22

33
from gateway_addon import Device
44
import datetime

pkg/tide_calendar_property.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Tide calendar adapter for Mozilla WebThings Gateway."""
1+
"""Tide calendar adapter for WebThings Gateway."""
22

33
from gateway_addon import Property
44

0 commit comments

Comments
 (0)