homebridge-eosstb 2.4.0-alpha.33 → 2.4.0-alpha.35

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.
package/CHANGELOG.md CHANGED
@@ -42,6 +42,14 @@ Channel name: overwrite not allowed - can we disable in HomeKit. Yes, but preven
42
42
  CHALLENGE
43
43
  The mostWatchedChannelList is not working
44
44
 
45
+ ## 2.4.0-alpha.35 (2026-03-07)
46
+
47
+ - changes to settargetmediastate
48
+
49
+ ## 2.4.0-alpha.34 (2026-03-07)
50
+
51
+ - changes to settargetmediastate
52
+
45
53
  ## 2.4.0-alpha.33 (2026-03-07)
46
54
 
47
55
  - optimised getmqtttoken
package/index.js CHANGED
@@ -8190,8 +8190,10 @@ class StbDevice {
8190
8190
  "%s: setTargetMediaState to %s [%s]",
8191
8191
  this.name,
8192
8192
  targetMediaState,
8193
- CHAR_NAMES.TargetMediaState[targetMediaState + 1],
8193
+ CHAR_NAMES.TargetMediaState[targetMediaState],
8194
8194
  );
8195
+
8196
+ this.log(CHAR_NAMES)
8195
8197
  // }
8196
8198
 
8197
8199
  if (!logChangeOnly) {
@@ -8205,9 +8207,10 @@ class StbDevice {
8205
8207
 
8206
8208
  //if (this.debugLevel >= 0) {
8207
8209
  this.log(
8208
- "%s: setTargetMediaState: Set media to %s for",
8210
+ "%s: setTargetMediaState: Calling setMediaState with newBoxMediaState %s [%s]",
8209
8211
  this.name,
8210
- CHAR_NAMES.TargetMediaState[targetMediaState + 1],
8212
+ newBoxMediaState,
8213
+ CHAR_NAMES.TargetMediaState[targetMediaState],
8211
8214
  );
8212
8215
  //}
8213
8216
  /*
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "displayName": "Homebridge EOSSTB",
4
4
  "description": "Add your set-top box to Homekit (for Telenet BE, Sunrise CH, UPC SK, Virgin Media GB & IE, Ziggo NL)",
5
5
  "author": "Jochen Siegenthaler (https://github.com/jsiegenthaler/)",
6
- "version": "2.4.0-alpha.33",
6
+ "version": "2.4.0-alpha.35",
7
7
  "platformname": "eosstb",
8
8
  "dependencies": {
9
9
  "axios": "^1.13.6",