Skip to content

Commit

Permalink
chore: release v5.2.6
Browse files Browse the repository at this point in the history
Added fallback for admin4
  • Loading branch information
GermanBluefox committed Jul 16, 2021
1 parent eb4bdc2 commit 67c133d
Show file tree
Hide file tree
Showing 10 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ And then call `npm run build`.
-->

## Changelog
### 5.2.5 (2021-07-16)
### 5.2.6 (2021-07-16)
* (bluefox) Added fallback for admin4

### 5.2.3 (2021-07-08)
Expand Down
6 changes: 3 additions & 3 deletions admin/asset-manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"files": {
"main.css": "/static/css/main.1a464464.chunk.css",
"main.js": "/static/js/main.966939fd.chunk.js",
"main.js.map": "/static/js/main.966939fd.chunk.js.map",
"main.js": "/static/js/main.15436305.chunk.js",
"main.js.map": "/static/js/main.15436305.chunk.js.map",
"runtime-main.js": "/static/js/runtime-main.02a8da94.js",
"runtime-main.js.map": "/static/js/runtime-main.02a8da94.js.map",
"static/css/2.1c4297c9.chunk.css": "/static/css/2.1c4297c9.chunk.css",
Expand All @@ -19,6 +19,6 @@
"static/css/2.1c4297c9.chunk.css",
"static/js/2.67f55b0b.chunk.js",
"static/css/main.1a464464.chunk.css",
"static/js/main.966939fd.chunk.js"
"static/js/main.15436305.chunk.js"
]
}

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions admin/static/js/main.15436305.chunk.js.map

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion admin/static/js/main.966939fd.chunk.js.map

This file was deleted.

2 changes: 1 addition & 1 deletion admin/tab.html

Large diffs are not rendered by default.

26 changes: 13 additions & 13 deletions io-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,20 @@
"Apollon77 <[email protected]>",
"AlCalzone"
],
"version": "5.2.5",
"version": "5.2.6",
"news": {
"5.2.6": {
"en": "Added fallback for admin4",
"de": "Fallback für admin4 hinzugefügt",
"ru": "Добавлен резервный вариант для admin4",
"pt": "Adicionado substituto para admin4",
"nl": "Terugval toegevoegd voor admin4",
"fr": "Ajout de la solution de secours pour admin4",
"it": "Aggiunto fallback per admin4",
"es": "Respaldo agregado para admin4",
"pl": "Dodano rezerwę dla admin4",
"zh-cn": "为 admin4 添加了后备"
},
"5.2.5": {
"en": "Added fallback for admin4",
"de": "Fallback für admin4 hinzugefügt",
Expand Down Expand Up @@ -249,18 +261,6 @@
"es": "Implementó la funcionalidad de alternar",
"pl": "Zaimplementowano funkcję przełączania",
"zh-cn": "实现了切换功能"
},
"5.0.4": {
"en": "Fixed errors in rules",
"de": "Fehler in Regeln behoben",
"ru": "Исправлены ошибки в правилах",
"pt": "Erros corrigidos nas regras",
"nl": "Fouten in regels opgelost",
"fr": "Correction d'erreurs dans les règles",
"it": "Risolti errori nelle regole",
"es": "Errores corregidos en las reglas",
"pl": "Naprawiono błędy w regułach",
"zh-cn": "修正规则错误"
}
},
"desc": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "iobroker.javascript",
"version": "5.2.5",
"version": "5.2.6",
"description": "Rules Engine for ioBroker",
"author": "bluefox <[email protected]>",
"contributors": [
Expand Down
2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "js",
"version": "5.2.5",
"version": "5.2.6",
"private": true,
"dependencies": {
"@iobroker/adapter-react": "^2.0.1",
Expand Down
2 changes: 1 addition & 1 deletion src/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ class App extends GenericApp {
}
})
.catch(e => {
if (timeout) {
if (timeout && e !== 'unknown command') {
clearTimeout(timeout);
timeout = null;
reject(e);
Expand Down

0 comments on commit 67c133d

Please sign in to comment.