iobroker.yamaha 2.1.1 → 2.3.0

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.
Files changed (62) hide show
  1. package/README.md +19 -8
  2. package/admin/i18n/de.json +334 -246
  3. package/admin/i18n/en.json +334 -246
  4. package/admin/i18n/es.json +334 -246
  5. package/admin/i18n/fr.json +334 -246
  6. package/admin/i18n/it.json +334 -246
  7. package/admin/i18n/nl.json +334 -246
  8. package/admin/i18n/pl.json +334 -246
  9. package/admin/i18n/pt.json +334 -246
  10. package/admin/i18n/ru.json +334 -246
  11. package/admin/i18n/uk.json +334 -246
  12. package/admin/i18n/zh-cn.json +334 -246
  13. package/build/lib/browse/objects.js +16 -16
  14. package/build/lib/browse/objects.js.map +2 -2
  15. package/build/lib/browse/xml-browse-driver.js +16 -3
  16. package/build/lib/browse/xml-browse-driver.js.map +2 -2
  17. package/build/lib/browse/ynca-browse-driver.js +10 -1
  18. package/build/lib/browse/ynca-browse-driver.js.map +2 -2
  19. package/build/lib/catalog/build-objects.js +16 -2
  20. package/build/lib/catalog/build-objects.js.map +2 -2
  21. package/build/lib/catalog/owner-policy.js +2 -23
  22. package/build/lib/catalog/owner-policy.js.map +2 -2
  23. package/build/lib/catalog/play-time.js +72 -0
  24. package/build/lib/catalog/play-time.js.map +7 -0
  25. package/build/lib/catalog/scene-titles.js +2 -11
  26. package/build/lib/catalog/scene-titles.js.map +2 -2
  27. package/build/lib/catalog/types.js +58 -38
  28. package/build/lib/catalog/types.js.map +2 -2
  29. package/build/lib/catalog/value-coerce.js +2 -1
  30. package/build/lib/catalog/value-coerce.js.map +2 -2
  31. package/build/lib/device-controller.js +84 -17
  32. package/build/lib/device-controller.js.map +2 -2
  33. package/build/lib/i18n.js +2 -2
  34. package/build/lib/i18n.js.map +2 -2
  35. package/build/lib/lifecycle/poll-drop-detector.js +13 -2
  36. package/build/lib/lifecycle/poll-drop-detector.js.map +2 -2
  37. package/build/lib/lifecycle/probe-memory.js +11 -1
  38. package/build/lib/lifecycle/probe-memory.js.map +2 -2
  39. package/build/lib/xml/catalog.js +22 -20
  40. package/build/lib/xml/catalog.js.map +2 -2
  41. package/build/lib/xml/device-controller.js +40 -22
  42. package/build/lib/xml/device-controller.js.map +2 -2
  43. package/build/lib/xml/xml-client.js +11 -4
  44. package/build/lib/xml/xml-client.js.map +2 -2
  45. package/build/lib/ynca/catalog.js +250 -121
  46. package/build/lib/ynca/catalog.js.map +2 -2
  47. package/build/lib/ynca/ynca-client.js +1 -0
  48. package/build/lib/ynca/ynca-client.js.map +2 -2
  49. package/build/lib/yxc/catalog.js +41 -40
  50. package/build/lib/yxc/catalog.js.map +2 -2
  51. package/build/lib/yxc/command-mapper.js +19 -14
  52. package/build/lib/yxc/command-mapper.js.map +2 -2
  53. package/build/lib/yxc/device-controller.js +27 -17
  54. package/build/lib/yxc/device-controller.js.map +2 -2
  55. package/build/lib/yxc/http-client.js +5 -2
  56. package/build/lib/yxc/http-client.js.map +2 -2
  57. package/build/lib/yxc/object-mapper.js +111 -83
  58. package/build/lib/yxc/object-mapper.js.map +2 -2
  59. package/build/main.js +37 -50
  60. package/build/main.js.map +2 -2
  61. package/io-package.json +75 -27
  62. package/package.json +2 -2
package/README.md CHANGED
@@ -103,6 +103,25 @@ On the very first contact the adapter asks the receiver which functions it suppo
103
103
  Placeholder for the next version (at the beginning of the line):
104
104
  ### **WORK IN PROGRESS**
105
105
  -->
106
+ ### 2.3.0 (2026-09-03)
107
+
108
+ - (krobipd) New: every datapoint and every folder now carries a short explanation in eleven languages, so the object tree tells you what a value actually means
109
+ - (krobipd) Improved: a text that has no translation yet falls back to readable English instead of showing an internal key
110
+
111
+ ### 2.2.0 (2026-09-03)
112
+
113
+ - (krobipd) Changed: the playback times are now a number in seconds, so the media player, Alexa and Google can show them on every receiver
114
+ - (krobipd) New: the readable playback times ("1:23") moved to their own datapoints, next to the seconds — bind whichever form your visualization needs
115
+ - (krobipd) Fixed: after a restart the adapter asks the receiver again instead of trusting what it remembered, so the menu, the tuner band and each zone's source are the current ones
116
+ - (krobipd) Fixed: setting a tuner frequency on a MusicCast device never reached it — the command was incomplete
117
+ - (krobipd) Fixed: commands to a receiver from before 2010 are now sent the way every comparable program sends them; older models can reject the previous form outright
118
+ - (krobipd) Fixed: a scene you renamed at the receiver now appears while the adapter runs, and recalling a scene by an unknown name says so in the log instead of doing nothing
119
+ - (krobipd) Fixed: after a restart the tuner of an older receiver no longer shows the station of the previous session until the next poll
120
+ - (krobipd) Fixed: an incomplete answer from a MusicCast device is no longer kept as that device's capabilities, and a device that answers nothing is no longer shown as connected
121
+ - (krobipd) Fixed: going one menu level back on an older receiver no longer jumps two levels when the reply gets lost
122
+ - (krobipd) Fixed: a play or pause sent from a script or a visualization now reaches the receiver in every case
123
+ - (krobipd) Improved: each of the 23 input-name datapoints now carries the input it names, instead of all reading the same
124
+
106
125
  ### 2.1.1 (2026-09-02)
107
126
 
108
127
  - (krobipd) Fixed: on an updated instance the info datapoints now get the translated names too, instead of keeping the ones an older version had written
@@ -128,14 +147,6 @@ On the very first contact the adapter asks the receiver which functions it suppo
128
147
  - (krobipd) Fixed: writing one equalizer band before the receiver reported all three no longer sends zeros for the other two — the zone status is fetched first
129
148
  - (krobipd) Improved: a receiver that is off for a while is retried no later than the configured maximum wait, and an oversized answer from a wrong host can no longer eat the adapter's memory
130
149
 
131
- ### 2.0.3 (2026-09-01)
132
-
133
- - (krobipd) Fixed: the update cleanup now removes every never-filled leftover datapoint — a history recording setting no longer shields it, because nothing was ever recorded there and nothing is lost
134
-
135
- ### 2.0.2 (2026-09-01)
136
-
137
- - (krobipd) Fixed: a restart while the receiver stands by no longer forgets abilities the device proved while awake — the remembered capability map only ever grows for the same device and firmware
138
-
139
150
  [Older changelogs can be found there](CHANGELOG_OLD.md)
140
151
 
141
152
  ## History