homebridge-eosstb 2.4.0-alpha.44 → 2.4.0-alpha.45

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
@@ -51,6 +51,9 @@ Channel name: overwrite not allowed - can we disable in HomeKit. Yes, but preven
51
51
  CHALLENGE
52
52
  The mostWatchedChannelList is not working
53
53
 
54
+ ## 2.4.0-alpha.45 (2026-05-09)
55
+ - Added some debugging to the volume commands to trace an issue
56
+
54
57
  ## 2.4.0-alpha.44 (2026-05-09)
55
58
  - Fixed some log level issues
56
59
  - Fixed issue with Remove volumeDown causing Unhandled error thrown inside write handler for characteristic
package/index.js CHANGED
@@ -7822,6 +7822,9 @@ class StbDevice {
7822
7822
  }
7823
7823
 
7824
7824
  try {
7825
+ if (this.debugLevel > 0) {
7826
+ this.log.warn("%s: setVolume: Sending command %s", this.name, command);
7827
+ }
7825
7828
  await new Promise((resolve, reject) => {
7826
7829
  exec(command, (error, _stdout, stderr) => {
7827
7830
  if (error) reject(stderr.trim());
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.44",
6
+ "version": "2.4.0-alpha.45",
7
7
  "platformname": "eosstb",
8
8
  "dependencies": {
9
9
  "axios": "^1.16.0",