iobroker.tibberlink 0.1.0 → 0.1.1
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 +10 -1
- package/io-package.json +14 -1
- package/package.json +2 -5
package/README.md
CHANGED
|
@@ -5,7 +5,8 @@
|
|
|
5
5
|

|
|
6
6
|
[](https://www.npmjs.com/package/iobroker.tibberlink)
|
|
7
7
|

|
|
8
|
-
[](https://snyk.io/test/github/hombach/ioBroker.tibberlink)
|
|
9
|
+
|
|
9
10
|
|
|
10
11
|
[](https://nodei.co/npm/iobroker.tibberlink/)
|
|
11
12
|
|
|
@@ -19,12 +20,20 @@ If you're not a Tibber user right now, it's greatly appreciated when you're usin
|
|
|
19
20
|
|
|
20
21
|
[https://invite.tibber.com/2gwuign3.](https://invite.tibber.com/2gwuign3.)
|
|
21
22
|
|
|
23
|
+
## Configuration
|
|
24
|
+
1. Create a new instance of the adapter
|
|
25
|
+
2. Fill in your Tibber API token
|
|
26
|
+
3. Choose to also pull data from your Tibber Pulse - !! Only working if hardware is installed
|
|
27
|
+
4. Save the settings
|
|
28
|
+
|
|
22
29
|
## Notes
|
|
23
30
|
This adapter uses Sentry libraries to automatically report exceptions and code errors to the developers. For more details and for informations on how to disable the error reporting see [Sentry-Plugin Documentation](https://github.com/ioBroker/plugin-sentry#plugin-sentry)! Sentry reporting is used starting with js-controller 3.0.
|
|
24
31
|
|
|
25
32
|
## Changelog
|
|
26
33
|
! Note that missing version entries are typically dependency updates for improved security.
|
|
27
34
|
|
|
35
|
+
### 0.1.1 (2023-07-16)
|
|
36
|
+
remove release script and dev-server
|
|
28
37
|
### 0.1.0 (2023-07-14)
|
|
29
38
|
initial version
|
|
30
39
|
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "tibberlink",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.1",
|
|
5
5
|
"news": {
|
|
6
|
+
"0.1.1": {
|
|
7
|
+
"en": "remove release script and dev-server",
|
|
8
|
+
"de": "release-script und dev-server entfernen",
|
|
9
|
+
"ru": "удалить сценарий выпуска и dev-server",
|
|
10
|
+
"pt": "remover script de versão e dev-server",
|
|
11
|
+
"nl": "verwijder het script en dev-server",
|
|
12
|
+
"fr": "supprimer script de publication et dev-server",
|
|
13
|
+
"it": "rimuovere lo script di rilascio e dev-server",
|
|
14
|
+
"es": "eliminar script de liberación y servidor dev",
|
|
15
|
+
"pl": "usunąć skrypt i dev-serwerver",
|
|
16
|
+
"uk": "видалити скрипт релізу і dev-server",
|
|
17
|
+
"zh-cn": "删除 说明和保留"
|
|
18
|
+
},
|
|
6
19
|
"0.1.0": {
|
|
7
20
|
"en": "initial release",
|
|
8
21
|
"de": "Erstveröffentlichung",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "iobroker.tibberlink",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "links tibber API data to be used in ioBroker",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Hombach",
|
|
@@ -26,9 +26,7 @@
|
|
|
26
26
|
"tibber-api": "~5.1.9"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@alcalzone/release-script": "^3.5.9",
|
|
30
29
|
"@iobroker/testing": "^4.1.0",
|
|
31
|
-
"@iobroker/dev-server": "^0.6.0",
|
|
32
30
|
"@types/chai": "^4.3.5",
|
|
33
31
|
"@types/chai-as-promised": "^7.1.5",
|
|
34
32
|
"@types/mocha": "^10.0.1",
|
|
@@ -75,8 +73,7 @@
|
|
|
75
73
|
"test:integration": "mocha test/integration --exit",
|
|
76
74
|
"test": "npm run test:ts && npm run test:package",
|
|
77
75
|
"check": "tsc --noEmit",
|
|
78
|
-
"lint": "eslint --ext .ts src/"
|
|
79
|
-
"release": "release-script"
|
|
76
|
+
"lint": "eslint --ext .ts src/"
|
|
80
77
|
},
|
|
81
78
|
"bugs": {
|
|
82
79
|
"url": "https://github.com/Hombach/ioBroker.tibberlink/issues"
|