homebridge-eosstb 1.4.6 → 1.4.9
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 +13 -0
- package/README.md +2 -2
- package/config.schema.json +2 -2
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,19 @@ Please restart Homebridge after every plugin update.
|
|
|
10
10
|
* In work: improve handling of channel names: characters not allowed in HomeKit are now replaced with whitespace
|
|
11
11
|
|
|
12
12
|
|
|
13
|
+
## 1.4.9 (2022-08-23)
|
|
14
|
+
* Bumped dependencies (node, tough-cookie, axios-cookiejar-support)
|
|
15
|
+
* Updated default software version in config.schema.json
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
## 1.4.8 (2022-07-24)
|
|
19
|
+
* Updated iOS version references in README.md
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## 1.4.7 (2022-07-19)
|
|
23
|
+
* Bumped dependencies (node)
|
|
24
|
+
|
|
25
|
+
|
|
13
26
|
## 1.4.6 (2022-07-08)
|
|
14
27
|
* Bumped dependencies (qs)
|
|
15
28
|
|
package/README.md
CHANGED
|
@@ -70,7 +70,7 @@ In March 2022, a newer version of the set-top box has started to appear in Telen
|
|
|
70
70
|
This plugin is not provided by Magenta or Telenet or Sunrise or Virgin Media or Ziggo any other affiliate of UPC. It is neither endorsed nor supported nor developed by UPC or any affiliates. UPC can change their systems at any time and that might break this plugin. But I hope not.
|
|
71
71
|
|
|
72
72
|
## Requirements
|
|
73
|
-
* An Apple iPhone or iPad with iOS 14.0 (or later). Developed on iOS 14.1...15.
|
|
73
|
+
* An Apple iPhone or iPad with iOS 14.0 (or later). Developed on iOS 14.1...15.6, earlier versions not tested.
|
|
74
74
|
* [Homebridge](https://homebridge.io/) v1.5.0 (or later). Developed on Homebridge 1.1.116....1.5.0, earlier versions not tested.
|
|
75
75
|
* A TV subscription from one of the supported countries and TV providers.
|
|
76
76
|
* An online account for viewing TV in the web app (often part of your TV package), see the table above.
|
|
@@ -109,7 +109,7 @@ This plugin is not provided by Magenta or Telenet or Sunrise or Virgin Media or
|
|
|
109
109
|
|
|
110
110
|
* **Fully Configurable**: A large amount of configuration items exist to allow you to configure your plugin the way you want.
|
|
111
111
|
|
|
112
|
-
* **Future Feature Support**: The plugin also supports current and target media state as well as closed captions, even though the Home app accessory cannot currently display or control this data in the home app (as at iOS 15.
|
|
112
|
+
* **Future Feature Support**: The plugin also supports current and target media state as well as closed captions, even though the Home app accessory cannot currently display or control this data in the home app (as at iOS 15.6). Hopefully, Apple will add support for these features in the future. You can however use this data in the Shortcuts app.
|
|
113
113
|
|
|
114
114
|
|
|
115
115
|
|
package/config.schema.json
CHANGED
|
@@ -158,8 +158,8 @@
|
|
|
158
158
|
"firmwareRevision": {
|
|
159
159
|
"title": "Firmware",
|
|
160
160
|
"type": "string",
|
|
161
|
-
"description": "The firmware version to display in the Home app. Numbers only eg 4.
|
|
162
|
-
"placeholder": "4.
|
|
161
|
+
"description": "The firmware version to display in the Home app. Numbers only eg 4.41. Default: plugin version.",
|
|
162
|
+
"placeholder": "4.41",
|
|
163
163
|
"pattern": "^(\\d+)((\\.{1}\\d+)*)(\\.{0})$"
|
|
164
164
|
},
|
|
165
165
|
|
package/package.json
CHANGED
|
@@ -3,19 +3,19 @@
|
|
|
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": "1.4.
|
|
6
|
+
"version": "1.4.9",
|
|
7
7
|
"platformname": "eosstb",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"axios-cookiejar-support": "^4.0.
|
|
9
|
+
"axios-cookiejar-support": "^4.0.3",
|
|
10
10
|
"axios": "^0.27.2",
|
|
11
11
|
"mqtt": "^4.3.7",
|
|
12
12
|
"qs": "^6.11.0",
|
|
13
|
-
"tough-cookie": "^4.
|
|
13
|
+
"tough-cookie": "^4.1.0"
|
|
14
14
|
},
|
|
15
15
|
"deprecated": false,
|
|
16
16
|
"engines": {
|
|
17
17
|
"homebridge": ">=1.5.0",
|
|
18
|
-
"node": ">=16.
|
|
18
|
+
"node": ">=16.17.0"
|
|
19
19
|
},
|
|
20
20
|
"homepage": "https://github.com/jsiegenthaler/homebridge-eosstb#readme",
|
|
21
21
|
"keywords": [
|