Skip to content

Commit

Permalink
chore: release v1.4.12
Browse files Browse the repository at this point in the history
* (bluefox) Fixed bug with the export of specific widgets
  • Loading branch information
GermanBluefox committed Feb 12, 2022
1 parent c6565d1 commit b8a3985
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 21 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
34 changes: 19 additions & 15 deletions io-package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": "[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion www/cache.manifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CACHE MANIFEST
#
# vis Version 1.4.11
# vis Version 1.4.12
# dev build 0


Expand Down
2 changes: 1 addition & 1 deletion www/edit.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!--html manifest="cache.manifest" xmlns="http://www.w3.org/1999/html"--><html>
<head>

<!-- vis Version 1.4.11 -->
<!-- vis Version 1.4.12 -->

<!--
Use FireFox or Chrome with --allow-file-access-from-files flag to test DashUI local.
Expand Down
2 changes: 1 addition & 1 deletion www/index.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<!--html manifest="cache.manifest" xmlns="http://www.w3.org/1999/html"--><html>
<head>
<!-- vis Version 1.4.11 -->
<!-- vis Version 1.4.12 -->

<meta charset="utf-8">
<meta name="apple-mobile-web-app-capable" content="yes" />
Expand Down
2 changes: 1 addition & 1 deletion www/js/vis.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit b8a3985

Please sign in to comment.