iobroker.panasonic-comfort-cloud 2.2.0 → 2.2.2
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 +33 -2
- package/io-package.json +27 -1
- package/package.json +80 -78
package/README.md
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
|
+
# ioBroker.panasonic-comfort-cloud
|
|
2
|
+
|
|
1
3
|
| :warning: WARNING |
|
|
2
4
|
|:---------------------------|
|
|
3
5
|
| New app version in adapter settings is 1.18.0 |
|
|
4
6
|
|
|
5
7
|

|
|
6
|
-
# ioBroker.panasonic-comfort-cloud
|
|
7
8
|
|
|
8
9
|
[](https://www.npmjs.com/package/iobroker.panasonic-comfort-cloud)
|
|
9
10
|
[](https://www.npmjs.com/package/iobroker.panasonic-comfort-cloud)
|
|
@@ -22,31 +23,50 @@ To use the a adpter you need to enter your username and password in the configur
|
|
|
22
23
|
With the method used, only one client can be logged on with the account at a time.
|
|
23
24
|
It is recommended that a second account, for which the devices have been shared, is used.
|
|
24
25
|
|
|
25
|
-
|
|
26
26
|
## Changelog
|
|
27
27
|
|
|
28
|
+
### 2.2.2 (2023-09-16)
|
|
29
|
+
|
|
30
|
+
* Fixed wrong version number.
|
|
31
|
+
|
|
32
|
+
### 2.2.1 (2023-09-16)
|
|
33
|
+
|
|
34
|
+
* panasonic-comfort-cloud-client updated to new version. New headers added.
|
|
35
|
+
|
|
36
|
+
### 2.2.0
|
|
37
|
+
|
|
38
|
+
* Added feature to automatically load the app version from GitHub.
|
|
39
|
+
|
|
28
40
|
### 2.1.0
|
|
41
|
+
|
|
29
42
|
* Added app version to settings.
|
|
30
43
|
|
|
31
44
|
### 2.0.6
|
|
45
|
+
|
|
32
46
|
* panasonic-comfort-cloud-client updated to new version. (appVersion changed again)
|
|
33
47
|
|
|
34
48
|
### 2.0.5
|
|
49
|
+
|
|
35
50
|
* Translation for news added.
|
|
36
51
|
|
|
37
52
|
### 2.0.4
|
|
53
|
+
|
|
38
54
|
* New version of dependencies installed.
|
|
39
55
|
|
|
40
56
|
### 2.0.3
|
|
57
|
+
|
|
41
58
|
* panasonic-comfort-cloud-client updated to new version. (appVersion changed again)
|
|
42
59
|
|
|
43
60
|
### 2.0.2
|
|
61
|
+
|
|
44
62
|
* panasonic-comfort-cloud-client updated to new version.
|
|
45
63
|
|
|
46
64
|
### 2.0.1
|
|
65
|
+
|
|
47
66
|
* Changed the type of some states from string to number.
|
|
48
67
|
|
|
49
68
|
### 2.0.0
|
|
69
|
+
|
|
50
70
|
* Added js-controller 3 dependency.
|
|
51
71
|
* Added username and password to protectedNative and password to encryptedNative.
|
|
52
72
|
* Added connection info.
|
|
@@ -54,36 +74,47 @@ It is recommended that a second account, for which the devices have been shared,
|
|
|
54
74
|
* Fixes for async await pattern.
|
|
55
75
|
|
|
56
76
|
### 1.2.9
|
|
77
|
+
|
|
57
78
|
* Error handling for get device added.
|
|
58
79
|
|
|
59
80
|
### 1.2.8
|
|
81
|
+
|
|
60
82
|
* Fixed bug in Comfort Cloud client.
|
|
61
83
|
|
|
62
84
|
### 1.2.7
|
|
85
|
+
|
|
63
86
|
* Comfort Cloud client updated.
|
|
64
87
|
|
|
65
88
|
### 1.2.6
|
|
89
|
+
|
|
66
90
|
* Fixed bug that guid is null in device creation.
|
|
67
91
|
|
|
68
92
|
### 1.2.5
|
|
93
|
+
|
|
69
94
|
* *Comfort Cloud client updated.
|
|
70
95
|
|
|
71
96
|
### 1.2.4
|
|
97
|
+
|
|
72
98
|
* Fixed bug with undefined guid. Log messages added.
|
|
73
99
|
|
|
74
100
|
### 1.2.3
|
|
101
|
+
|
|
75
102
|
* Set parameters only for writable states.
|
|
76
103
|
|
|
77
104
|
### 1.2.2
|
|
105
|
+
|
|
78
106
|
* *Fixed error handling and added stack info.
|
|
79
107
|
|
|
80
108
|
### 1.2.1
|
|
109
|
+
|
|
81
110
|
* Fixed bug in refesh device method.
|
|
82
111
|
|
|
83
112
|
### 1.2.0
|
|
113
|
+
|
|
84
114
|
* States insideTemperature, outTemperature and Nanoe added.
|
|
85
115
|
|
|
86
116
|
## License
|
|
117
|
+
|
|
87
118
|
MIT License
|
|
88
119
|
|
|
89
120
|
Copyright (c) 2022 marc <marc@lammers.dev>
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,34 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "panasonic-comfort-cloud",
|
|
4
|
-
"version": "2.2.
|
|
4
|
+
"version": "2.2.2",
|
|
5
5
|
"news": {
|
|
6
|
+
"2.2.2": {
|
|
7
|
+
"en": "Fixed wrong versoin number.",
|
|
8
|
+
"de": "Falsche Versionsnummer behoben.",
|
|
9
|
+
"ru": "Исправлен неправильный номер версии.",
|
|
10
|
+
"pt": "Corrigido número de versoin errado.",
|
|
11
|
+
"nl": "Verkeerd versoin-nummer opgelost.",
|
|
12
|
+
"fr": "Correction d'un mauvais numéro de version.",
|
|
13
|
+
"it": "Risolto il numero di versoin errato.",
|
|
14
|
+
"es": "Se corrigió el número de verso incorrecto.",
|
|
15
|
+
"pl": "Naprawiono błędny numer wersji.",
|
|
16
|
+
"uk": "Виправлено неправильний номер versoin.",
|
|
17
|
+
"zh-cn": "修复了错误的版本号。"
|
|
18
|
+
},
|
|
19
|
+
"2.2.1": {
|
|
20
|
+
"en": "panasonic-comfort-cloud-client updated to new version. New headers added.",
|
|
21
|
+
"de": "Panasonic-Comfort-Cloud-Client auf neue Version aktualisiert. Neue Header hinzugefügt.",
|
|
22
|
+
"ru": "Panasonic-comfort-cloud-client обновлен до новой версии. Добавлены новые заголовки.",
|
|
23
|
+
"pt": "panasonic-comfort-cloud-client atualizado para a nova versão. Novos cabeçalhos adicionados.",
|
|
24
|
+
"nl": "panasonic-comfort-cloud-client bijgewerkt naar nieuwe versie. Nieuwe kopteksten toegevoegd.",
|
|
25
|
+
"fr": "panasonic-comfort-cloud-client mis à jour vers la nouvelle version. Nouveaux en-têtes ajoutés.",
|
|
26
|
+
"it": "panasonic-comfort-cloud-client aggiornato alla nuova versione. Aggiunte nuove intestazioni.",
|
|
27
|
+
"es": "panasonic-comfort-cloud-client actualizado a la nueva versión. Se agregaron nuevos encabezados.",
|
|
28
|
+
"pl": "panasonic-comfort-cloud-client zaktualizowany do nowej wersji. Dodano nowe nagłówki.",
|
|
29
|
+
"uk": "panasonic-comfort-cloud-client оновлено до нової версії. Додано нові заголовки.",
|
|
30
|
+
"zh-cn": "panasonic-comfort-cloud-client 更新至新版本。添加了新标题。"
|
|
31
|
+
},
|
|
6
32
|
"2.2.0": {
|
|
7
33
|
"en": "Added feature to automatically load the app version from GitHub.",
|
|
8
34
|
"de": "Funktion hinzugefügt, um die App-Version automatisch von GitHub zu laden.",
|
package/package.json
CHANGED
|
@@ -1,80 +1,82 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
"
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
"
|
|
2
|
+
"name": "iobroker.panasonic-comfort-cloud",
|
|
3
|
+
"version": "2.2.2",
|
|
4
|
+
"description": "Adapter for Panasonic Comfort Cloud",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "marc",
|
|
7
|
+
"email": "marc@lammers.dev"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://github.com/marc2016/ioBroker.panasonic-comfort-cloud",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"keywords": [
|
|
12
|
+
"air condition"
|
|
13
|
+
],
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "https://github.com/marc2016/ioBroker.panasonic-comfort-cloud"
|
|
17
|
+
},
|
|
18
|
+
"dependencies": {
|
|
19
|
+
"@iobroker/adapter-core": "^2.6.8",
|
|
20
|
+
"@types/lodash": "^4.14.192",
|
|
21
|
+
"lodash": "^4.17.21",
|
|
22
|
+
"panasonic-comfort-cloud-client": "1.2.5",
|
|
23
|
+
"ts-enum-util": "^4.0.2"
|
|
24
|
+
},
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"@alcalzone/release-script": "^3.6.0",
|
|
27
|
+
"@iobroker/adapter-dev": "^1.2.0",
|
|
28
|
+
"@iobroker/testing": "^4.1.0",
|
|
29
|
+
"@tsconfig/node14": "^1.0.3",
|
|
30
|
+
"@types/chai": "^4.3.4",
|
|
31
|
+
"@types/chai-as-promised": "^7.1.5",
|
|
32
|
+
"@types/gulp": "^4.0.10",
|
|
33
|
+
"@types/mocha": "^10.0.1",
|
|
34
|
+
"@types/node": "^18.15.11",
|
|
35
|
+
"@types/proxyquire": "^1.3.28",
|
|
36
|
+
"@types/sinon": "^10.0.13",
|
|
37
|
+
"@types/sinon-chai": "^3.2.9",
|
|
38
|
+
"@typescript-eslint/eslint-plugin": "^5.57.1",
|
|
39
|
+
"@typescript-eslint/parser": "^5.57.1",
|
|
40
|
+
"axios": "^1.3.5",
|
|
41
|
+
"chai": "^4.3.7",
|
|
42
|
+
"chai-as-promised": "^7.1.1",
|
|
43
|
+
"eslint": "^8.38.0",
|
|
44
|
+
"gulp": "^4.0.2",
|
|
45
|
+
"mocha": "^10.2.0",
|
|
46
|
+
"proxyquire": "^2.1.3",
|
|
47
|
+
"rimraf": "^4.4.1",
|
|
48
|
+
"sinon": "^15.0.3",
|
|
49
|
+
"sinon-chai": "^3.7.0",
|
|
50
|
+
"source-map-support": "^0.5.21",
|
|
51
|
+
"ts-node": "^10.9.1",
|
|
52
|
+
"typescript": "^5.0.4"
|
|
53
|
+
},
|
|
54
|
+
"main": "build/main.js",
|
|
55
|
+
"files": [
|
|
56
|
+
"admin{,/!(src)/**}/!(tsconfig|tsconfig.*|.eslintrc).json",
|
|
57
|
+
"admin{,/!(src)/**}/*.{html,css,png,svg,jpg,js}",
|
|
58
|
+
"build/",
|
|
59
|
+
"www/",
|
|
60
|
+
"io-package.json",
|
|
61
|
+
"LICENSE"
|
|
62
|
+
],
|
|
63
|
+
"scripts": {
|
|
64
|
+
"translate": "translate-adapter",
|
|
65
|
+
"prebuild": "rimraf ./build",
|
|
66
|
+
"build:ts": "tsc -p tsconfig.build.json",
|
|
67
|
+
"build": "build-adapter ts",
|
|
68
|
+
"watch:ts": "tsc -p tsconfig.build.json --watch",
|
|
69
|
+
"watch": "npm run watch:ts",
|
|
70
|
+
"test": "npm run test:package && npm run test:unit",
|
|
71
|
+
"test:package": "mocha test/package --exit",
|
|
72
|
+
"test:unit": "mocha test/unit --exit",
|
|
73
|
+
"test:integration": "mocha test/integration --exit",
|
|
74
|
+
"test:rule": "mocha test/rule --exit",
|
|
75
|
+
"lint": "eslint --ext .ts src",
|
|
76
|
+
"release": "release-script"
|
|
77
|
+
},
|
|
78
|
+
"bugs": {
|
|
79
|
+
"url": "https://github.com/marc2016/ioBroker.panasonic-comfort-cloud/issues"
|
|
80
|
+
},
|
|
81
|
+
"readmeFilename": "README.md"
|
|
80
82
|
}
|