homebridge-eosstb 2.1.0 → 2.1.1
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 +4 -0
- package/README.md +1 -1
- package/index.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,10 @@ Please restart Homebridge after every plugin update.
|
|
|
10
10
|
* Implement refreshToken capabilities
|
|
11
11
|
|
|
12
12
|
|
|
13
|
+
## 2.1.1 (2023-01-05)
|
|
14
|
+
* Fixed bug where InputSourceType and InputDeviceType values were not correctly read
|
|
15
|
+
|
|
16
|
+
|
|
13
17
|
## 2.1.0 (2023-01-03)
|
|
14
18
|
* Added KeyMacro support
|
|
15
19
|
* Added custom characteristics: Current Channel Id and Current Channel Name, useful in automations
|
package/README.md
CHANGED
|
@@ -261,7 +261,7 @@ Example extended configuration as used on the author with his EOSSTB set-top box
|
|
|
261
261
|
},
|
|
262
262
|
"channels": [
|
|
263
263
|
{
|
|
264
|
-
"channelKeyMacro": "TV MediaTopMenu wait(
|
|
264
|
+
"channelKeyMacro": "TV MediaTopMenu wait(2000) ArrowRight ArrowRight Enter wait(1000) ArrowDown wait(1500) Enter wait(2000) Enter",
|
|
265
265
|
"channelName": "Last Played Radio"
|
|
266
266
|
},
|
|
267
267
|
{
|
package/index.js
CHANGED
|
@@ -4714,7 +4714,7 @@ class stbDevice {
|
|
|
4714
4714
|
if (this.config.debugLevel > 1) {
|
|
4715
4715
|
this.log.warn('%s: getInputSourceType returning %s [%s]', this.name, this.currentInputSourceType, Object.keys(Characteristic.InputSourceType)[this.currentInputSourceType + 1]);
|
|
4716
4716
|
}
|
|
4717
|
-
callback(null,
|
|
4717
|
+
callback(null, this.currentInputSourceType);
|
|
4718
4718
|
}
|
|
4719
4719
|
|
|
4720
4720
|
// get InputDeviceType state
|
|
@@ -4724,7 +4724,7 @@ class stbDevice {
|
|
|
4724
4724
|
if (this.config.debugLevel > 1) {
|
|
4725
4725
|
this.log.warn('%s: getInputDeviceType returning %s [%s]', this.name, this.currentInputDeviceType, Object.keys(Characteristic.InputDeviceType)[this.currentInputDeviceType + 1]);
|
|
4726
4726
|
}
|
|
4727
|
-
callback(null,
|
|
4727
|
+
callback(null, this.currentInputDeviceType);
|
|
4728
4728
|
}
|
|
4729
4729
|
|
|
4730
4730
|
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"displayName": "Homebridge EOSSTB",
|
|
4
4
|
"description": "homebridge-plugin - Add your set-top box to Homekit (for Magenta AT, Telenet BE, Sunrise CH, Virgin Media GB & IE, Ziggo NL)",
|
|
5
5
|
"author": "Jochen Siegenthaler (https://github.com/jsiegenthaler/)",
|
|
6
|
-
"version": "2.1.
|
|
6
|
+
"version": "2.1.1",
|
|
7
7
|
"platformname": "eosstb",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"axios-cookiejar-support": "^4.0.6",
|