Skip to content

Commit 87c91ec

Browse files
author
ticaki
committed
chore: release v0.6.3
* (ticaki) Position quality added. 0 is best value
1 parent 223cef5 commit 87c91ec

File tree

6 files changed

+20
-20
lines changed

6 files changed

+20
-20
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ For help use issue or if u understand german https://forum.iobroker.net/topic/71
4040
Placeholder for the next version (at the beginning of the line):
4141
### **WORK IN PROGRESS**
4242
-->
43-
### 0.6.2 (2025-02-06)
43+
### 0.6.3 (2025-02-06)
4444
* (ticaki) Position quality added. 0 is best value
4545

4646
### 0.6.1 (2025-02-06)

build/main.js.map

+1-1
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": "espresense",
4-
"version": "0.6.2",
4+
"version": "0.6.3",
55
"news": {
6+
"0.6.3": {
7+
"en": "Position quality added. 0 is best value",
8+
"de": "Positionsqualität hinzugefügt. 0 ist der beste Wert",
9+
"ru": "Добавлено качество позиции. 0 - лучшая ценность",
10+
"pt": "Qualidade de posição adicionada. 0 é o melhor valor",
11+
"nl": "Positiekwaliteit toegevoegd. 0 is de beste waarde",
12+
"fr": "Qualité de position ajoutée. 0 est la meilleure valeur",
13+
"it": "Qualità di posizione aggiunta. 0 è il miglior valore",
14+
"es": "Calidad de posición añadido. 0 es el mejor valor",
15+
"pl": "Dodano jakość pozycji. 0 to najlepsza wartość",
16+
"uk": "Додана якість позицій. 0 найкраща вартість",
17+
"zh-cn": "位置质量增加。 0为最大值"
18+
},
619
"0.6.2": {
720
"en": "Position quality added. 0 is best value",
821
"de": "Positionsqualität hinzugefügt. 0 ist der beste Wert",
@@ -80,19 +93,6 @@
8093
"pl": "Usuwanie urządzeń teraz działa.",
8194
"uk": "Зняття пристроїв тепер працює.",
8295
"zh-cn": "正在删除设备 ."
83-
},
84-
"0.4.6": {
85-
"en": "repository checker problems fixed",
86-
"de": "repository checker Probleme behoben",
87-
"ru": "проблемы репозитория",
88-
"pt": "problemas do verificador do repositório corrigidos",
89-
"nl": "repository checker problemen opgelost",
90-
"fr": "problèmes de contrôle du dépôt corrigés",
91-
"it": "repository checker problemi risolto",
92-
"es": "problemas de control de depósito fijo",
93-
"pl": "problemy ze sprawdzaniem repozytorium",
94-
"uk": "проблеми репозиторійного чекера виправлені",
95-
"zh-cn": "已修复仓库检查器问题"
9696
}
9797
},
9898
"titleLang": {

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.espresense",
3-
"version": "0.6.2",
3+
"version": "0.6.3",
44
"description": "Connect to ESPresense",
55
"author": {
66
"name": "ticaki",

src/main.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ export class Espresense extends utils.Adapter {
428428
rooms[3].pos,
429429
rooms[3].distance as number,
430430
);
431-
const position = result.position
431+
const position = result.position;
432432
if (position) {
433433
position[0] = Math.round(position[0] * 100) / 100;
434434
position[1] = Math.round(position[1] * 100) / 100;

0 commit comments

Comments
 (0)