iobroker.lovelace 4.1.13 → 4.1.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -4
- package/io-package.json +14 -14
- package/lib/server.js +6 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -473,6 +473,9 @@ After that checkout modified version in `./build` folder. Then.
|
|
|
473
473
|
PLACEHOLDER for the next version:
|
|
474
474
|
### **WORK IN PROGRESS**
|
|
475
475
|
-->
|
|
476
|
+
### 4.1.14 (2025-03-10)
|
|
477
|
+
* (Garfonso) repaired image loading. Fixes #577
|
|
478
|
+
|
|
476
479
|
### 4.1.13 (2025-03-06)
|
|
477
480
|
* (Garfonso) reworked image sending. Now weather icons work for normal users, too. Also weather images are transfered from our server, so no access to admin is needed anymore.
|
|
478
481
|
|
|
@@ -488,10 +491,6 @@ After that checkout modified version in `./build` folder. Then.
|
|
|
488
491
|
* (Garfonso) add support for delivering files from other adapters, for example, local cover images.
|
|
489
492
|
* (Garfonso) cleaned up service descriptions.
|
|
490
493
|
|
|
491
|
-
### 4.1.8 (2024-03-11)
|
|
492
|
-
* (Garfonso) prevent even more possible crashes
|
|
493
|
-
* (smarthomejoey) fixed: tilt level and inversion
|
|
494
|
-
|
|
495
494
|
## License
|
|
496
495
|
|
|
497
496
|
Copyright 2019-2025, bluefox <dogafox@gmail.com>
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "lovelace",
|
|
4
|
-
"version": "4.1.
|
|
4
|
+
"version": "4.1.14",
|
|
5
5
|
"news": {
|
|
6
|
+
"4.1.14": {
|
|
7
|
+
"en": "repaired image loading. Fixes #577",
|
|
8
|
+
"de": "Bilder laden repariert. Fixes #577",
|
|
9
|
+
"ru": "восстановленная загрузка изображения. Исправления #577",
|
|
10
|
+
"pt": "carga de imagem reparada. Correções #577",
|
|
11
|
+
"nl": "hersteld beeld laden. Fixes #577",
|
|
12
|
+
"fr": "chargement d'image réparé. Corrige #577",
|
|
13
|
+
"it": "caricamento dell'immagine riparato. Correzioni #577",
|
|
14
|
+
"es": "carga de imagen reparada. Arreglos #577",
|
|
15
|
+
"pl": "naprawiono ładowanie obrazu. Fixes # 577",
|
|
16
|
+
"uk": "відремонтовано завантаження зображень. Виправлення #577",
|
|
17
|
+
"zh-cn": "修复图像加载。 修复 #577"
|
|
18
|
+
},
|
|
6
19
|
"4.1.13": {
|
|
7
20
|
"en": "reworked image sending. Now weather icons work for normal users, too. Also weather images are transfered from our server, so no access to admin is needed anymore.",
|
|
8
21
|
"de": "reworked image send. Jetzt funktionieren auch Wettersymbole für normale Benutzer. Auch Wetterbilder werden von unserem Server übertragen, so dass kein Zugriff auf Admin mehr erforderlich ist.",
|
|
@@ -71,19 +84,6 @@
|
|
|
71
84
|
"pl": "usunięcie nadmiernego logowania\npoprawić naprawić ponownie awarii.",
|
|
72
85
|
"uk": "видалити есенціальний журнал\nзнову поліпшуйте фіксацію.",
|
|
73
86
|
"zh-cn": "删除 exessive 日志\n改善再次崩溃的修复."
|
|
74
|
-
},
|
|
75
|
-
"4.1.5": {
|
|
76
|
-
"en": "fixed: possible crashes during startup",
|
|
77
|
-
"de": "behoben: mögliche abstürzen beim start",
|
|
78
|
-
"ru": "фиксированный: возможные аварии во время запуска",
|
|
79
|
-
"pt": "corrigido: possíveis falhas durante a inicialização",
|
|
80
|
-
"nl": "vast: mogelijke crashes tijdens opstarten",
|
|
81
|
-
"fr": "corrigé: crashs possibles pendant le démarrage",
|
|
82
|
-
"it": "fisso: possibili crash durante l'avvio",
|
|
83
|
-
"es": "fijo: posibles fallos durante la puesta en marcha",
|
|
84
|
-
"pl": "stałe: możliwe awarie podczas uruchamiania",
|
|
85
|
-
"uk": "виправлено: можливі аварії під час запуску",
|
|
86
|
-
"zh-cn": "固定: 启动时可能发生的崩溃"
|
|
87
87
|
}
|
|
88
88
|
},
|
|
89
89
|
"titleLang": {
|
package/lib/server.js
CHANGED
|
@@ -2516,7 +2516,12 @@ class WebServer {
|
|
|
2516
2516
|
const entity = entityData.entityId2Entity[entity_id];
|
|
2517
2517
|
let id;
|
|
2518
2518
|
let userName; // will be ignored in case of no authentication enabled.
|
|
2519
|
-
if (
|
|
2519
|
+
if (
|
|
2520
|
+
this.config.auth !== false &&
|
|
2521
|
+
(token || access_token) &&
|
|
2522
|
+
!this._requestableFiles.includes(url) &&
|
|
2523
|
+
!entityData.entityIconUrls.includes(url)
|
|
2524
|
+
) {
|
|
2520
2525
|
if (access_token) {
|
|
2521
2526
|
const now = Date.now();
|
|
2522
2527
|
const flowId = Object.keys(this._auth_flows).find(
|