Skip to content

Commit

Permalink
chore: release v3.0.19
Browse files Browse the repository at this point in the history
fix for custom webinterface port (addresses #117)
  • Loading branch information
foxriver76 committed Apr 16, 2021
1 parent 316789c commit c4a62d0
Show file tree
Hide file tree
Showing 5 changed files with 12,902 additions and 5,652 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,9 @@ with the ioBroker CLI. You can change the port via `iob set hm-rega.<instance> -
### __WORK IN PROGRESS__
-->

### 3.0.19 (2021-04-16)
* (foxriver76) fix for custom webinterface port (addresses #117)

### 3.0.18 (2021-04-05)
* (foxriver76) local link now respects port and protocol

Expand Down
2 changes: 1 addition & 1 deletion hm-rega.js
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ function main() {

rega = new Rega({
ccuIp: adapter.config.homematicAddress,
webinterfacePort: adapter.config.webinterfacePort || adapter.config.useHttps ? 443 : 80,
webinterfacePort: adapter.config.webinterfacePort || (adapter.config.useHttps ? 443 : 80),
port: adapter.config.homematicPort,
reconnectionInterval: adapter.config.reconnectionInterval,
logger: adapter.log,
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": "hm-rega",
"version": "3.0.18",
"version": "3.0.19",
"news": {
"3.0.19": {
"en": "fix for custom webinterface port (addresses #117)",
"de": "Fix für benutzerdefinierten Webinterface-Port (Adressen # 117)",
"ru": "исправление для настраиваемого порта веб-интерфейса (адреса # 117)",
"pt": "correção para porta de interface da web personalizada (endereços # 117)",
"nl": "reparatie voor aangepaste webinterfacepoort (adressen # 117)",
"fr": "correction pour le port d'interface Web personnalisé (adresses # 117)",
"it": "correzione per la porta dell'interfaccia web personalizzata (indirizzi # 117)",
"es": "corrección para puerto de interfaz web personalizado (direcciones # 117)",
"pl": "poprawka dla niestandardowego portu interfejsu internetowego (adresy # 117)",
"zh-cn": "修复自定义Web界面端口(地址#117)"
},
"3.0.18": {
"en": "local link now respects port and protocol",
"de": "Die lokale Verbindung respektiert jetzt Port und Protokoll",
Expand Down Expand Up @@ -230,18 +242,6 @@
"es": "Error fijo donde los estados de alarma de instancias de hm-rpc con número de instancia> = 10 se crean para la instancia incorrecta",
"pl": "poprawiono błąd, w którym stany alarmowe instancji hm-rpc o numerze instancji> = 10 są tworzone dla niewłaściwej instancji",
"zh-cn": "修复了以下错误:为错误的实例创建了实例号> = 10的hm-rpc实例的警报状态"
},
"2.6.20": {
"en": "we now set explicit object type on extending object",
"de": "Wir setzen jetzt den expliziten Objekttyp für das Erweitern des Objekts",
"ru": "Теперь мы устанавливаем явный тип объекта для расширяемого объекта",
"pt": "agora definimos o tipo de objeto explícito na extensão de objeto",
"nl": "we stellen nu een expliciet objecttype in op het uitbreidende object",
"fr": "nous définissons maintenant le type d'objet explicite sur l'objet d'extension",
"it": "ora impostiamo il tipo di oggetto esplicito sull'estensione dell'oggetto",
"es": "ahora establecemos el tipo de objeto explícito al extender el objeto",
"pl": "teraz ustawiamy jawny typ obiektu na rozszerzanie obiektu",
"zh-cn": "现在,我们在扩展对象上设置显式对象类型"
}
},
"titleLang": {
Expand Down
Loading

0 comments on commit c4a62d0

Please sign in to comment.