Skip to content

Commit 4ded62b

Browse files
committed
chore: release v1.11.2
we fixed missing conversion to db on equalizer treble state for additional zones (fixes #162)
1 parent 46b9925 commit 4ded62b

File tree

6 files changed

+304
-133
lines changed

6 files changed

+304
-133
lines changed

.github/workflows/test-and-release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ jobs:
7676
if: |
7777
contains(github.event.head_commit.message, '[skip ci]') == false &&
7878
github.event_name == 'push' &&
79-
github.event.base_ref == 'refs/heads/master' &&
8079
startsWith(github.ref, 'refs/tags/v')
8180
needs: [adapter-tests]
8281

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -867,8 +867,11 @@ The adapter is tested with an DENON AVR-X1200W and a Marantz SR5009.
867867
### __WORK IN PROGRESS__
868868
-->
869869
870+
### 1.11.2 (2021-08-08)
871+
* (foxriver76) we fixed missing conversion to db on equalizer treble state for additional zones (fixes #162)
872+
870873
### 1.11.1 (2021-06-29)
871-
* (foxriver76) fixes for silent reconnection - if ETIMEDOUT occurs repeately switch to debug, like for other errors (closes #149)
874+
* (foxriver76) fixes for silent reconnection - if ETIMEDOUT occurs repeatedly switch to debug, like for other errors (closes #149)
872875
873876
### 1.11.0 (2021-06-06)
874877
* (foxriver76) implemented dialog level adjustment for DTS content (closes #143)

io-package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,20 @@
11
{
22
"common": {
33
"name": "denon",
4-
"version": "1.11.1",
4+
"version": "1.11.2",
55
"news": {
6+
"1.11.2": {
7+
"en": "we fixed missing conversion to db on equalizer treble state for additional zones (fixes #162)",
8+
"de": "wir haben die fehlende Konvertierung in db im Equalizer-Höhenzustand für zusätzliche Zonen behoben (Fixes Nr. 162)",
9+
"ru": "мы исправили отсутствующее преобразование в db на высоких частотах эквалайзера для дополнительных зон (исправления # 162)",
10+
"pt": "corrigimos a falta de conversão para db no estado de agudos do equalizador para zonas adicionais (correções # 162)",
11+
"nl": "we hebben de ontbrekende conversie naar db opgelost in de treble-status van de equalizer voor extra zones (fixes #162)",
12+
"fr": "nous avons corrigé la conversion manquante en db sur l'état des aigus de l'égaliseur pour les zones supplémentaires (corrections #162)",
13+
"it": "abbiamo corretto la conversione mancante in db sullo stato degli alti dell'equalizzatore per zone aggiuntive (correzioni #162)",
14+
"es": "arreglamos la conversión faltante a db en el estado de agudos del ecualizador para zonas adicionales (arreglos # 162)",
15+
"pl": "naprawiliśmy brakującą konwersję do db na stanie sopranów korektora dla dodatkowych stref (poprawki #162)",
16+
"zh-cn": "我们修复了额外区域的均衡器高音状态上缺少的 db 转换(修复 #162)"
17+
},
618
"1.11.1": {
719
"en": "fixes for silent reconnection - if ETIMEDOUT occurs repeately switch to debug, like for other errors (closes #149)",
820
"de": "Korrekturen für stille Wiederverbindung - wenn ETIMEDOUT wiederholt auftritt, wechseln Sie zum Debug, wie bei anderen Fehlern (schließt #149)",
@@ -230,18 +242,6 @@
230242
"es": "otra solución para 'DENON Picool'",
231243
"pl": "kolejna poprawka dla „DENON Picool”",
232244
"zh-cn": "'DENON Picool'的另一个修复"
233-
},
234-
"1.7.1": {
235-
"en": "added ability to read desired data by 'expertReading' states",
236-
"de": "Möglichkeit hinzugefügt, gewünschte Daten durch 'expertReading'-Zustände zu lesen",
237-
"ru": "добавлена ​​возможность читать нужные данные по состояниям expertReading",
238-
"pt": "capacidade adicional de ler os dados desejados pelos estados 'expertReading'",
239-
"nl": "toegevoegd vermogen om gewenste gegevens te lezen door 'expertReading' staten",
240-
"fr": "possibilité supplémentaire de lire les données souhaitées par les états 'expertReading'",
241-
"it": "aggiunta capacità di leggere i dati desiderati dagli stati \"expertReading\"",
242-
"es": "capacidad adicional para leer los datos deseados por los estados 'expertReading'",
243-
"pl": "dodano możliwość odczytu pożądanych danych przez stany „expertReading”",
244-
"zh-cn": "通过“ expertReading”状态增加了读取所需数据的能力"
245245
}
246246
},
247247
"title": "DENON AVR",

main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1452,7 +1452,7 @@ async function handleResponse(data) {
14521452
break;
14531453
}
14541454
case 'ZPSTRE': {
1455-
const state = parseFloat(data.split(' ')[1]);
1455+
const state = helper.volToDb(data.split(' ')[1]);
14561456
adapter.setState(`zone${zoneNumber}.equalizerTreble`, state, true);
14571457
break;
14581458
}

0 commit comments

Comments
 (0)