From 8f936c3dbb977592424a2f6f450fbb570d57a559 Mon Sep 17 00:00:00 2001 From: Michel van de Wetering Date: Tue, 17 Dec 2024 09:38:50 +0100 Subject: [PATCH 1/4] Update README.md, add RX-V4A (#355) --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e4c9658..dbdb48e 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,8 @@ If your receiver works and is not in the list, please post a message in the [dis || RX-A1000, RX-A1010, RX-A1020, RX-A1030, RX-A1040 | || RX-A2000, RX-A2010, RX-A2020, RX-A2030, RX-A2040, RX-A2070 | || RX-A3000, RX-A3010, RX-A3020, RX-A3030, RX-A3040, RX-A3070, RX-A3080 | -| RX-V | RX-V475, RX-V477, RX-V481D, RX-V483 | +| RX-V | RX-V4A | +|| RX-V475, RX-V477, RX-V481D, RX-V483 | || RX-V500D, RX-V573, RX-V575, RX-V585 | || RX-V671, RX-V673, RX-V675, RX-V677, RX-V679, RX-V681, RX-V685 | || RX-V771, RX-V773, RX-V775, RX-V777 | From 9fdd7bd5d9ee6e0daa5ad29f60dd4923562272c4 Mon Sep 17 00:00:00 2001 From: Trevor North Date: Fri, 20 Dec 2024 10:43:54 +0000 Subject: [PATCH 2/4] Fix volume up/down codes (#356) These are reversed when testing the current release on my RX-A730. The definition updates made here appear to match documentation for other models found online. --- custom_components/yamaha_ynca/remote.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/custom_components/yamaha_ynca/remote.py b/custom_components/yamaha_ynca/remote.py index e77c085..ab904a9 100644 --- a/custom_components/yamaha_ynca/remote.py +++ b/custom_components/yamaha_ynca/remote.py @@ -27,8 +27,8 @@ source_power_toggle, 7F01-50AF, 7F01-708F, 7F01-906F, 7F01-B04F mute, 7A85-1CE3, 7A85-DC23, 7A85-FF00 -volume_up, 7A85-1BE4, 7A85-DB24, 7A85-FE01 -volume_down, 7A85-1AE5, 7A85-DA25, 7A85-FD02 +volume_up, 7A85-1AE5, 7A85-DA25, 7A85-FD02 +volume_down, 7A85-1BE4, 7A85-DB24, 7A85-FE01 info, 7A85-2758 From 4c33aea700ec3e773e3f96012d64ebae806abaa2 Mon Sep 17 00:00:00 2001 From: Michel van de Wetering Date: Fri, 20 Dec 2024 11:55:00 +0100 Subject: [PATCH 3/4] Update README.md, add RX-A730 (#357) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dbdb48e..6f9cd77 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ If your receiver works and is not in the list, please post a message in the [dis | --- | --- | | AVANTAGE | RX-A2A, RX-A4A, RX-A6A | || RX-A660 | -|| RX-A700, RX-A710, RX-A720, RX-A740, RX-A750 | +|| RX-A700, RX-A710, RX-A720, RX-A730, RX-A740, RX-A750 | || RX-A800, RX-A810, RX-A820, RX-A830, RX-A840, RX-A850, RX-A870 | || RX-A1000, RX-A1010, RX-A1020, RX-A1030, RX-A1040 | || RX-A2000, RX-A2010, RX-A2020, RX-A2030, RX-A2040, RX-A2070 | From 0f64e61d5a589ce36b749596da6ff5997727bcae Mon Sep 17 00:00:00 2001 From: Michel van de Wetering Date: Fri, 20 Dec 2024 11:56:21 +0100 Subject: [PATCH 4/4] Update version to 7.13.2 --- custom_components/yamaha_ynca/manifest.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/custom_components/yamaha_ynca/manifest.json b/custom_components/yamaha_ynca/manifest.json index b7d61ff..8a84f91 100644 --- a/custom_components/yamaha_ynca/manifest.json +++ b/custom_components/yamaha_ynca/manifest.json @@ -1,7 +1,6 @@ { "domain": "yamaha_ynca", "name": "Yamaha (YNCA)", - "codeowners": [ "@mvdwetering" ], @@ -10,9 +9,11 @@ "documentation": "https://github.com/mvdwetering/yamaha_ynca", "iot_class": "local_push", "issue_tracker": "https://github.com/mvdwetering/yamaha_ynca/issues", - "loggers": ["ynca"], + "loggers": [ + "ynca" + ], "requirements": [ "ynca==5.18.0" ], - "version": "0.0.0" -} + "version": "7.13.2" +} \ No newline at end of file