Skip to content

Commit 13e22d9

Browse files
author
ticaki
committed
chore: release v0.1.7
- (ticaki) cardGrid Number values -> Show an icon if user has defined one, otherwise number - (ticaki) fixes #143 - (ticaki) fixes #147 - (ticaki) fixes #146 - (ticaki) fixes #144 - (ticaki) fixes #148
1 parent e55be7f commit 13e22d9

9 files changed

+25
-22
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,8 @@ Sind natürlich alles Dataitems
305305
Placeholder for the next version (at the beginning of the line):
306306
### **WORK IN PROGRESS**
307307
-->
308-
### **WORK IN PROGRESS**
308+
### 0.1.7 (2025-03-06)
309+
- (ticaki) cardGrid Number values -> Show an icon if user has defined one, otherwise number
309310
- (ticaki) fixes #143
310311
- (ticaki) fixes #147
311312
- (ticaki) fixes #146

build/lib/classes/config-manager.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/lib/classes/config-manager.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/lib/classes/mqtt.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/lib/classes/mqtt.js.map

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

io-package.json

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,21 @@
11
{
22
"common": {
33
"name": "nspanel-lovelace-ui",
4-
"version": "0.1.6",
4+
"version": "0.1.7",
55
"news": {
6+
"0.1.7": {
7+
"en": "cardGrid Number values -> Show an icon if user has defined one, otherwise number\nfixes #143\nfixes #147\nfixes #146\nfixes #144\nfixes #148",
8+
"de": "karte Grid Zahlenwerte -> Zeigen Sie ein Symbol, wenn der Benutzer eins definiert hat, andernfalls Nummer\nfixes #143\nfixes #147\nfixes #146\nfixes #144\nfixes #148",
9+
"ru": "карточка Номера сетки -> Показать значок, если пользователь определил один, иначе номер\nобсуждение #143\nремонт #147\nремонт #146\nремонт #144\nобсуждение #148",
10+
"pt": "cartão Valores do número de grade -> Mostrar um ícone se o usuário tiver definido um, número de outra forma\ncorreções #143\ncorreções #147\ncorreções #146\ncorreções #144\ncorreções #148",
11+
"nl": "kaart Rasteraantalwaarden -> Een pictogram tonen als de gebruiker er een heeft gedefinieerd, anders nummer\nfixes #143\nfixes #147\nfixes #146\nfixes #144\nfixes #148",
12+
"fr": "carte Valeurs du nombre de grilles -> Afficher une icône si l'utilisateur en a défini un, sinon numéro\ncorrige #143\ncorrige #147\ncorrige #146\ncorrectifs #144\ncorrectifs #148",
13+
"it": "carta Valori numeri -> Mostra un'icona se l'utente ne ha definito uno, altrimenti numero\ncorrezioni #143\ncorrezioni #147\ncorrezioni #146\ncorrezioni #144\ncorrezioni #148",
14+
"es": "tarjeta Valores de números de rejilla - título Mostrar un icono si el usuario ha definido uno, otro número\nfijaciones #143\nfijaciones #147\nfijaciones #146\nfijaciones #144\nfijaciones #148",
15+
"pl": "karta Liczba siatki - > Pokaż ikonę, jeśli użytkownik zdefiniował jedną, w przeciwnym razie numer\npoprawki # 143\npoprawki # 147\npoprawki # 146\npoprawki # 144\npoprawki # 148",
16+
"uk": "кошик Значення чисел Grid -> Показати іконку, якщо користувач визначився один, інший номер\nфіксатори #143\nзастібки #147\nфіксатори #146\nфіксатори #144\nфіксатори #148",
17+
"zh-cn": "纸牌 网格数字值 - > 如果用户定义了图标, 显示图标, 否则数字\n修正 # 143\n修正 # 147\n修正 # 146\n修正 # 144\n修正 # 148"
18+
},
619
"0.1.6": {
720
"en": "fixes #140\nfixes #141",
821
"de": "fixes #140\nfixes #141",
@@ -80,19 +93,6 @@
8093
"pl": "fixed color fading\npoprawiony skrypt konfiguracyjny\ndodana wiadomość dla brakujących stanów",
8194
"uk": "фіксована кольорова завіса\nвиправлений скрипт налаштування\nдодано повідомлення про відсутні стани",
8295
"zh-cn": "固定颜色淡出\n固定配置脚本\n为缺失状态添加消息"
83-
},
84-
"0.1.0": {
85-
"en": "alot changes",
86-
"de": "alot änderungen",
87-
"ru": "много изменений",
88-
"pt": "mudanças no lote",
89-
"nl": "veel veranderingen",
90-
"fr": "changements importants",
91-
"it": "alot modifiche",
92-
"es": "cambios de alot",
93-
"pl": "znaczne zmiany",
94-
"uk": "змін",
95-
"zh-cn": "很多变化"
9696
}
9797
},
9898
"title": "NSPanel-Lovelace-UI Next Level",

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "iobroker.nspanel-lovelace-ui",
3-
"version": "0.1.6",
3+
"version": "0.1.7",
44
"description": "NsPanel Lovelace UI is a Firmware for the nextion screen inside of NSPanel in the Design of Lovelace UI Design.",
55
"author": {
66
"name": "ticaki",

src/lib/classes/mqtt.ts

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ export class MQTTClientClass extends BaseClass {
4242
this.ready = true;
4343
});
4444
this.client.on('disconnect', () => {
45+
this.log.info(`Disconnected.`);
4546
this.ready = false;
4647
void this.adapter.setState('info.connection', false, true);
4748
this.log.debug(`disconnected`);

0 commit comments

Comments
 (0)