Skip to content

Commit

Permalink
chore: release v4.10.1
Browse files Browse the repository at this point in the history
In global TypeScripts, `import` can now be used
Iteration of `$(...)` query results in TypeScript no longer causes compilation to fail
Already-compiled TypeScripts are now recompiled after an update of the adapter to benefit of potential fixes
Corrected schedule on date object
Corrected the moving of scripts
Corrected search tab
Corrected the calculation of isDayTime variable
Corrected `trim()` issue by CRON builder
Corrected functions call in blockly
Corrected CRON name in blockly
  • Loading branch information
GermanBluefox committed Nov 4, 2020
1 parent 9bfb0e7 commit 77f1735
Show file tree
Hide file tree
Showing 11 changed files with 32 additions and 20 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -38,7 +38,7 @@ And then call "npm run build".
-->

## Changelog
### __WORK IN PROGRESS__
### 4.10.1 (2020-11-04)
* (AlCalzone) In global TypeScripts, `import` can now be used
* (AlCalzone) Iteration of `$(...)` query results in TypeScript no longer causes compilation to fail
* (AlCalzone) Already-compiled TypeScripts are now recompiled after an update of the adapter to benefit of potential fixes
Expand Down
10 changes: 5 additions & 5 deletions admin/asset-manifest.json
@@ -1,26 +1,26 @@
{
"files": {
"main.css": "/static/css/main.ec63fb86.chunk.css",
"main.js": "/static/js/main.b8fa5d20.chunk.js",
"main.js.map": "/static/js/main.b8fa5d20.chunk.js.map",
"main.js": "/static/js/main.99126ea3.chunk.js",
"main.js.map": "/static/js/main.99126ea3.chunk.js.map",
"runtime-main.js": "/static/js/runtime-main.36ac425a.js",
"runtime-main.js.map": "/static/js/runtime-main.36ac425a.js.map",
"static/css/2.16653d25.chunk.css": "/static/css/2.16653d25.chunk.css",
"static/js/2.c4aaa48f.chunk.js": "/static/js/2.c4aaa48f.chunk.js",
"static/js/2.c4aaa48f.chunk.js.map": "/static/js/2.c4aaa48f.chunk.js.map",
"index.html": "/index.html",
"precache-manifest.f7437ca41864dfb62c50e84716f1d121.js": "/precache-manifest.f7437ca41864dfb62c50e84716f1d121.js",
"precache-manifest.71b9c44ca15ff222d992cc64981acb33.js": "/precache-manifest.71b9c44ca15ff222d992cc64981acb33.js",
"service-worker.js": "/service-worker.js",
"static/css/2.16653d25.chunk.css.map": "/static/css/2.16653d25.chunk.css.map",
"static/css/main.ec63fb86.chunk.css.map": "/static/css/main.ec63fb86.chunk.css.map",
"static/js/2.c4aaa48f.chunk.js.LICENSE.txt": "/static/js/2.c4aaa48f.chunk.js.LICENSE.txt",
"static/js/main.b8fa5d20.chunk.js.LICENSE.txt": "/static/js/main.b8fa5d20.chunk.js.LICENSE.txt"
"static/js/main.99126ea3.chunk.js.LICENSE.txt": "/static/js/main.99126ea3.chunk.js.LICENSE.txt"
},
"entrypoints": [
"static/js/runtime-main.36ac425a.js",
"static/css/2.16653d25.chunk.css",
"static/js/2.c4aaa48f.chunk.js",
"static/css/main.ec63fb86.chunk.css",
"static/js/main.b8fa5d20.chunk.js"
"static/js/main.99126ea3.chunk.js"
]
}
@@ -1,14 +1,14 @@
self.__precacheManifest = (self.__precacheManifest || []).concat([
{
"revision": "8e10418e36249bc7caa94ba92e45d597",
"revision": "56c0dd9e152b852362e9ab611320eff0",
"url": "/index.html"
},
{
"revision": "9ad8ae164aaf8b691c8d",
"url": "/static/css/2.16653d25.chunk.css"
},
{
"revision": "b221a90093656c101129",
"revision": "b27d8e2270daa460fb7a",
"url": "/static/css/main.ec63fb86.chunk.css"
},
{
Expand All @@ -20,12 +20,12 @@ self.__precacheManifest = (self.__precacheManifest || []).concat([
"url": "/static/js/2.c4aaa48f.chunk.js.LICENSE.txt"
},
{
"revision": "b221a90093656c101129",
"url": "/static/js/main.b8fa5d20.chunk.js"
"revision": "b27d8e2270daa460fb7a",
"url": "/static/js/main.99126ea3.chunk.js"
},
{
"revision": "578fa69920ac4a551e6d340a37256bed",
"url": "/static/js/main.b8fa5d20.chunk.js.LICENSE.txt"
"url": "/static/js/main.99126ea3.chunk.js.LICENSE.txt"
},
{
"revision": "0bb40a41b8abfdf8d583",
Expand Down
2 changes: 1 addition & 1 deletion admin/service-worker.js
Expand Up @@ -14,7 +14,7 @@
importScripts("https://storage.googleapis.com/workbox-cdn/releases/4.3.1/workbox-sw.js");

importScripts(
"/precache-manifest.f7437ca41864dfb62c50e84716f1d121.js"
"/precache-manifest.71b9c44ca15ff222d992cc64981acb33.js"
);

self.addEventListener('message', (event) => {
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

14 changes: 13 additions & 1 deletion io-package.json
Expand Up @@ -20,8 +20,20 @@
"Apollon77 <iobroker@fischer-ka.de>",
"AlCalzone"
],
"version": "4.10.0",
"version": "4.10.1",
"news": {
"4.10.1": {
"en": "In global TypeScripts, `import` can now be used\nIteration of `$(...)` query results in TypeScript no longer causes compilation to fail\nAlready-compiled TypeScripts are now recompiled after an update of the adapter to benefit of potential fixes\nCorrected schedule on date object\nCorrected the moving of scripts\nCorrected search tab\nCorrected the calculation of isDayTime variable\nCorrected `trim()` issue by CRON builder \nCorrected functions call in blockly\nCorrected CRON name in blockly",
"de": "In globalen TypeScripts kann jetzt \"Import\" verwendet werden\nDie Iteration der Abfrageergebnisse \"$ (...)\" in TypeScript führt nicht mehr zum Fehlschlagen der Kompilierung\nBereits kompilierte TypeScripts werden jetzt nach einer Aktualisierung des Adapters neu kompiliert, um mögliche Korrekturen zu nutzen\nDer Zeitplan für das Datumsobjekt wurde korrigiert\nDas Verschieben von Skripten wurde korrigiert\nRegisterkarte \"Suche\" korrigiert\nDie Berechnung der Variablen isDayTime wurde korrigiert\nDas Problem \"trim ()\" wurde vom CRON-Builder behoben\nKorrigierte Funktionen werden blockweise aufgerufen\nDer CRON-Name wurde blockweise korrigiert",
"ru": "В глобальных скриптах TypeScripts теперь можно использовать ʻimport`\nИтерация результатов запроса `$ (...)` в TypeScript больше не приводит к сбою компиляции\nУже скомпилированные скрипты TypeScripts теперь перекомпилируются после обновления адаптера, чтобы получить возможные исправления.\nСкорректированное расписание по дате объекта\nИсправлено перемещение скриптов.\nИсправленная вкладка поиска\nИсправлен расчет переменной isDayTime.\nИсправлена проблема с `trim ()` построителем CRON.\nИсправлен вызов функций блочно\nИсправлено имя CRON в блоке",
"pt": "Em TypeScripts globais, ʻimport` agora pode ser usado\nA iteração dos resultados da consulta `$ (...)` no TypeScript não causa mais a falha de compilação\nTypeScripts já compilados agora são recompilados após uma atualização do adaptador para se beneficiar de possíveis correções\nCronograma corrigido no objeto de data\nCorrigida a movimentação de scripts\nGuia de pesquisa corrigida\nCorrigido o cálculo da variável isDayTime\nProblema de `trim ()` corrigido pelo construtor CRON\nAs funções corrigidas chamam em bloco\nNome CRON corrigido em bloco",
"nl": "In globale TypeScripts kan ʻimport` nu worden gebruikt\nHerhaling van '$ (...)' - queryresultaten in TypeScript zorgt er niet langer voor dat de compilatie mislukt\nReeds gecompileerde TypeScripts worden nu opnieuw gecompileerd na een update van de adapter om te profiteren van mogelijke fixes\nSchema op datumobject gecorrigeerd\nHet verplaatsen van scripts gecorrigeerd\nGecorrigeerd zoektabblad\nDe berekening van de isDayTime-variabele is gecorrigeerd\nProbleem met `trim ()` door CRON-builder gecorrigeerd\nGecorrigeerde functies bellen blockly\nCRON-naam in blockly gecorrigeerd",
"fr": "Dans les TypeScripts globaux, ʻimport` peut maintenant être utilisé\nL'itération des résultats de la requête `$ (...)` dans TypeScript ne provoque plus l'échec de la compilation\nLes TypeScripts déjà compilés sont maintenant recompilés après une mise à jour de l'adaptateur pour bénéficier de correctifs potentiels\nCalendrier corrigé sur l'objet de date\nCorrection du déplacement des scripts\nOnglet de recherche corrigé\nCorrection du calcul de la variable isDayTime\nCorrection du problème `trim ()` par CRON builder\nLes fonctions corrigées appellent en bloc\nNom CRON corrigé en bloc",
"it": "Negli script di tipo globale, è ora possibile utilizzare ʻimport`\nL'iterazione dei risultati della query \"$ (...)\" in TypeScript non causa più il fallimento della compilazione\nGli script TypeScript già compilati vengono ora ricompilati dopo un aggiornamento dell'adattatore per beneficiare di potenziali correzioni\nPianificazione corretta sull'oggetto data\nCorretto lo spostamento degli script\nScheda di ricerca corretta\nCorretto il calcolo della variabile isDayTime\nCorretto il problema di \"trim ()\" del costruttore di CRON\nLe funzioni corrette chiamano in blocco\nNome CRON corretto in blocco",
"es": "En TypeScripts globales, ahora se puede usar ʻimport`\nLa iteración de los resultados de la consulta `$ (...)` en TypeScript ya no hace que la compilación falle\nLos TypeScripts ya compilados ahora se vuelven a compilar después de una actualización del adaptador para beneficiarse de posibles correcciones\nHorario corregido en objeto de fecha\nCorregido el movimiento de guiones.\nPestaña de búsqueda corregida\nSe corrigió el cálculo de la variable isDayTime.\nProblema de `trim ()` corregido por el constructor CRON\nLlamada de funciones corregidas en bloque\nNombre CRON corregido en blockly",
"pl": "W globalnych skryptach TypeScripts można teraz używać ʻimport`\nIteracja wyników zapytania `$ (...) 'w języku TypeScript nie powoduje już niepowodzenia kompilacji\nSkompilowane już skrypty TypeScriptu są teraz ponownie kompilowane po zaktualizowaniu adaptera w celu skorzystania z potencjalnych poprawek\nPoprawiony harmonogram na obiekcie daty\nPoprawiono przenoszenie skryptów\nPoprawiona zakładka wyszukiwania\nPoprawiono obliczanie zmiennej isDayTime\nNaprawiono problem z trymowaniem () przez kreatora CRON\nPoprawione funkcje wywołują blokowo\nPoprawiona nazwa CRON w blokach",
"zh-cn": "在全局TypeScript中,现在可以使用“导入”\n$ {...)查询结果在TypeScript中的迭代不再导致编译失败\n适配器更新后,现已重新编译已经编译的TypeScript,以利用潜在的修复程序\n更正了日期对象的时间表\n纠正了脚本的移动\n更正的搜索选项卡\n更正了isDayTime变量的计算\n更正了CRON生成器的`trim()`问题\n更正后的函数会块状调用\n更正了CRON名称"
},
"4.10.0": {
"en": "In global TypeScripts, `import` can now be used\nIteration of `$(...)` query results in TypeScript no longer causes compilation to fail\nAlready-compiled TypeScripts are now recompiled after an update of the adapter to benefit of potential fixes\nCorrected schedule on date object\nCorrected the moving of scripts\nCorrected search tab\nCorrected the calculation of isDayTime variable\nCorrected `trim()` issue by CRON builder \nCorrected functions call in blockly\nCorrected CRON name in blockly",
"de": "In globalen TypeScripts kann jetzt \"Import\" verwendet werden\nDie Iteration der Abfrageergebnisse \"$ (...)\" in TypeScript führt nicht mehr zum Fehlschlagen der Kompilierung\nBereits kompilierte TypeScripts werden jetzt nach einer Aktualisierung des Adapters neu kompiliert, um mögliche Korrekturen zu nutzen\nDer Zeitplan für das Datumsobjekt wurde korrigiert\nDas Verschieben von Skripten wurde korrigiert\nRegisterkarte \"Suche\" korrigiert\nDie Berechnung der Variablen isDayTime wurde korrigiert\nDas Problem \"trim ()\" wurde vom CRON-Builder behoben\nKorrigierte Funktionen werden blockweise aufgerufen\nDer CRON-Name wurde blockweise korrigiert",
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "iobroker.javascript",
"version": "4.10.0",
"version": "4.10.1",
"description": "Javascript/Coffescript Script Engine for ioBroker",
"author": "bluefox <dogafox@gmail.com>",
"contributors": [
Expand Down
2 changes: 1 addition & 1 deletion src/package.json
@@ -1,6 +1,6 @@
{
"name": "js",
"version": "4.10.0",
"version": "4.10.1",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.0",
Expand Down

0 comments on commit 77f1735

Please sign in to comment.