Skip to content

Commit

Permalink
add attributes title, ssid and code
Browse files Browse the repository at this point in the history
* add attributes title, ssid and code
* Improve sentry handling by bumping iobroker-jsonexplorer to v0.1.1
  • Loading branch information
HGlab01 authored Jul 19, 2021
1 parent af1a96f commit 4279ac9
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 19 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ In general vaules are now NULL if API sends NULL or just nothing. In v0.2.x some
### __WORK IN PROGRESS__
-->

### 0.3.3-0 (2021-07-19)
* (HGlab01) Add attributes title, ssid and code
* (HGlab01) Improve sentry handling by bumping iobroker-jsonexplorer to v0.1.1

### 0.3.2 (2021-07-15)
* (HGlab01) Use password handling from JS-Controller framework

Expand Down
26 changes: 13 additions & 13 deletions io-package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,20 @@
{
"common": {
"name": "tado",
"version": "0.3.2",
"version": "0.3.3-0",
"news": {
"0.3.3-0": {
"en": "Add attributes title, ssid and code\nImprove sentry handling by bumping iobroker-jsonexplorer to v0.1.1",
"de": "Attribute title, ssid und code hinzufügen\nVerbessern Sie die Handhabung von Wachen, indem Sie iobroker-jsonexplorer auf v0.1.1 heben",
"ru": "Добавьте атрибуты title, ssid и code\nУлучшение обработки часовых, подняв iobroker-jsonexplorer до версии v0.1.1.",
"pt": "Adicione os atributos title, ssid e code\nMelhore o manuseio do sentinela passando o iobroker-jsonexplorer para a v0.1.1",
"nl": "Voeg attributen titel, ssid en code toe\nVerbeter de afhandeling van de schildwacht door iobroker-jsonexplorer naar v0.1.1 te stoten",
"fr": "Ajouter des attributs titre, ssid et code\nAméliorez la gestion des sentinelles en déplaçant iobroker-jsonexplorer vers la v0.1.1",
"it": "Aggiungi gli attributi titolo, ssid e codice\nMigliora la gestione delle sentinelle spostando iobroker-jsonexplorer su v0.1.1",
"es": "Agregue el título, el ssid y el código de los atributos\nMejore el manejo de centinelas al incorporar iobroker-jsonexplorer a v0.1.1",
"pl": "Dodaj tytuł atrybutów, ssid i kod\nPopraw obsługę wartowników, podskakując iobroker-jsonexplorer do wersji 0.1.1",
"zh-cn": "添加属性title、ssid和code\n通过将 iobroker-jsonexplorer 升级到 v0.1.1 来改进哨兵处理"
},
"0.3.2": {
"en": "Use password handling from JS-Controller framework",
"de": "Verwenden Sie die Passwortverwaltung aus dem JS-Controller-Framework",
Expand Down Expand Up @@ -230,18 +242,6 @@
"es": "Actualizar las dependencias\nActualice las pruebas, elimine el nodo 8 y agregue el nodo 14\nImplementar la implementación automatizada con githubActions\nSoporte de detección de incidentes\nCorrección de error: agregar orientación\nCorrección de error: legacyHeatingInstallationsEnabled\nCorrección de error: agregar legacyHeatingInstallationsEnabled a DoHome\nCorrección de errores: corrige la información no controlada que se encuentra en DoReadDevices",
"pl": "Zaktualizuj zależności\nZaktualizuj testy, usuń węzeł 8 i dodaj węzeł 14\nZaimplementuj automatyczne wdrażanie za pomocą githubActions\nWspieraj wykrywanie incydentów\nPoprawka: Dodaj orientację\nBugfix: legacyHeatingInstallationsEnabled\nPoprawka: Dodaj legacyHeatingInstallationsEnabled do DoHome\nPoprawka: Napraw nieobsłużone informacje znalezione w DoReadDevices",
"zh-cn": "更新依赖项\n更新测试,删除节点8并添加节点14\n使用githubActions实现自动部署\n支持事件检测\n错误修正:添加方向\n错误修正:legacyHeatingInstallationsEnabled\n错误修正:添加legacyHeatingInstallationsEnabled到DoHome\n错误修正:修正在DoReadDevices中发现的未处理信息"
},
"0.1.9": {
"en": "Fix issues for JS-Controller 3.x, Sentry implemented",
"de": "Behebung von Problemen mit JS-Controller 3.x, Sentry implementiert",
"ru": "Исправлены проблемы с JS-Controller 3.x, реализован Sentry",
"pt": "Correção de problemas para o JS-Controller 3.x, Sentry implementado",
"nl": "Problemen oplossen voor JS-Controller 3.x, Sentry geïmplementeerd",
"fr": "Correction de problèmes pour JS-Controller 3.x, Sentry implémenté",
"it": "Risolve i problemi per JS-Controller 3.x, Sentry implementato",
"es": "Solucionar problemas para JS-Controller 3.x, Sentry implementado",
"pl": "Napraw problemy dla JS-Controller 3.x, Sentry zaimplementowane",
"zh-cn": "修复JS-Controller 3.x的问题,Sentry已实现"
}
},
"title": "Tado",
Expand Down
15 changes: 15 additions & 0 deletions lib/state_attr.js
Original file line number Diff line number Diff line change
Expand Up @@ -647,6 +647,21 @@ const state_attrb = {
type: 'number',
role: 'info',
},
'code': {
name: 'Code',
type: 'string',
role: 'info',
},
'ssid': {
name: 'SSID',
type: 'string',
role: 'info',
},
'title': {
name: 'Title',
type: 'string',
role: 'info',
},
};

module.exports = state_attrb;
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "iobroker.tado",
"version": "0.3.2",
"version": "0.3.3-0",
"description": "Tado cloud connector to control Tado devices",
"author": {
"name": "DutchmanNL",
Expand All @@ -22,7 +22,7 @@
"dependencies": {
"@iobroker/adapter-core": "^2.4.0",
"axios": "^0.21.0",
"iobroker-jsonexplorer": "0.1.0",
"iobroker-jsonexplorer": "0.1.1",
"simple-oauth2": "4.2.0"
},
"devDependencies": {
Expand Down

0 comments on commit 4279ac9

Please sign in to comment.