diff --git a/README.md b/README.md index 49ba8796a..c0e13c334 100644 --- a/README.md +++ b/README.md @@ -207,7 +207,7 @@ Notice that these settings are valid only for reconnection and not for the first ### __WORK IN PROGRESS__ --> ## Changelog -### __WORK IN PROGRESS__ +### 1.4.12 (2022-02-12) * (bluefox) Fixed bug with the export of specific widgets ### 1.4.11 (2022-02-12) diff --git a/io-package.json b/io-package.json index 5f6c01b3f..bbd6a8a1f 100644 --- a/io-package.json +++ b/io-package.json @@ -1,8 +1,20 @@ { "common": { "name": "vis", - "version": "1.4.11", + "version": "1.4.12", "news": { + "1.4.12": { + "en": "Fixed bug with the export of specific widgets", + "de": "Fehler beim Export bestimmter Widgets behoben", + "ru": "Исправлена ошибка с экспортом определенных виджетов", + "pt": "Corrigido bug com a exportação de widgets específicos", + "nl": "Bug opgelost met het exporteren van specifieke widgets", + "fr": "Correction d'un bug avec l'export de widgets spécifiques", + "it": "Risolto bug con l'esportazione di widget specifici", + "es": "Error solucionado con la exportación de widgets específicos.", + "pl": "Naprawiono błąd z eksportem określonych widżetów", + "zh-cn": "修复了导出特定小部件的错误" + }, "1.4.11": { "en": "Removed ES6 commands to be supported by older browsers\nFixed problem with update of grouped widgets\nAdded web manifest to be able to handle vis as the web app", "de": "Entfernte ES6-Befehle, die von älteren Browsern unterstützt werden sollen\nProblem mit der Aktualisierung von gruppierten Widgets behoben\nWeb-Manifest hinzugefügt, um vis als Web-App handhaben zu können", @@ -74,18 +86,6 @@ "es": "Se permite tener \":\" en los ID de objeto de vinculación", "pl": "Dozwolone mieć \":\" w powiązanych identyfikatorach obiektów", "zh-cn": "允许在绑定对象 ID 中包含“:”" - }, - "1.4.3": { - "en": "Added possibility to check license offline (only special once)", - "de": "Möglichkeit zur Offline-Lizenzprüfung hinzugefügt (nur einmalig)", - "ru": "Добавлена возможность проверить лицензию в автономном режиме (только один раз)", - "pt": "Adicionada a possibilidade de verificar a licença offline (especial apenas uma vez)", - "nl": "Mogelijkheid toegevoegd om licentie offline te controleren (slechts één keer speciaal)", - "fr": "Ajout de la possibilité de vérifier la licence hors ligne (une seule fois spéciale)", - "it": "Aggiunta la possibilità di controllare la licenza offline (speciale solo una volta)", - "es": "Se agregó la posibilidad de verificar la licencia fuera de línea (solo especial una vez)", - "pl": "Dodano możliwość sprawdzenia licencji offline (tylko raz)", - "zh-cn": "添加了离线检查许可证的可能性(仅特殊一次)" } }, "title": "Visualisation", @@ -134,8 +134,12 @@ }, "license": "CC-BY-NC-4.0", "dependencies": [ - {"web": ">=3.0.12"}, - {"js-controller": ">=2.0.0"} + { + "web": ">=3.0.12" + }, + { + "js-controller": ">=2.0.0" + } ], "restartAdapters": [ "vis" diff --git a/package.json b/package.json index bd23179c4..c1cb2d948 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "iobroker.vis", "description": "Graphical user interface for ioBroker.", - "version": "1.4.11", + "version": "1.4.12", "author": { "name": "bluefox", "email": "dogafox@gmail.com" diff --git a/www/cache.manifest b/www/cache.manifest index dab14eed9..5dac9b048 100644 --- a/www/cache.manifest +++ b/www/cache.manifest @@ -1,6 +1,6 @@ CACHE MANIFEST # -# vis Version 1.4.11 +# vis Version 1.4.12 # dev build 0 diff --git a/www/edit.html b/www/edit.html index 6d3068439..e5f7eb159 100644 --- a/www/edit.html +++ b/www/edit.html @@ -2,7 +2,7 @@
- + - + diff --git a/www/js/vis.js b/www/js/vis.js index 5d078508e..340662eae 100644 --- a/www/js/vis.js +++ b/www/js/vis.js @@ -277,7 +277,7 @@ var FORBIDDEN_CHARS = /[^._\-/ :!#$%&()+=@^{}|~]+/g; // from https://github.com/ // var FORBIDDEN_CHARS = /[^._\-/ :!#$%&()+=@^{}|~\p{Ll}\p{Lu}\p{Nd}]+/gu; // it must be like this, but old browsers does not support Unicode var vis = { - version: '1.4.11', + version: '1.4.12', requiredServerVersion: '0.0.0', storageKeyViews: 'visViews',