homebridge-eosstb 2.4.0-alpha.30 → 2.4.0-alpha.34
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 +18 -1
- package/config.schema.json +0 -9
- package/index.js +343 -290
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -36,13 +36,30 @@ Persistance test:
|
|
|
36
36
|
3. Restart the plugin
|
|
37
37
|
4. Observe the current visibility state in the plugin logs - does it get the right value from HomeKit HAP? If so, no persistance required.
|
|
38
38
|
|
|
39
|
-
|
|
40
39
|
Device name: this comes from backend
|
|
41
40
|
Channel name: overwrite not allowed - can we disable in HomeKit. Yes, but prevents setting visibility
|
|
42
41
|
|
|
43
42
|
CHALLENGE
|
|
44
43
|
The mostWatchedChannelList is not working
|
|
45
44
|
|
|
45
|
+
## 2.4.0-alpha.34 (2026-03-07)
|
|
46
|
+
|
|
47
|
+
- changes to settargetmediastate
|
|
48
|
+
|
|
49
|
+
## 2.4.0-alpha.33 (2026-03-07)
|
|
50
|
+
|
|
51
|
+
- optimised getmqtttoken
|
|
52
|
+
- checked function of setTargetMediaState , needs testing, controlled by Eve
|
|
53
|
+
|
|
54
|
+
## 2.4.0-alpha.32 (2026-03-07)
|
|
55
|
+
|
|
56
|
+
- made all urls into proper url objects
|
|
57
|
+
- fixed issue with getMostWatchedChannels
|
|
58
|
+
|
|
59
|
+
## 2.4.0-alpha.31 (2026-03-07)
|
|
60
|
+
|
|
61
|
+
- change the master channel list refresh to once a day at a random time between 0000 and 0600. The user setting has no impact and can be removed
|
|
62
|
+
- cleaned up some more diagnostic logging
|
|
46
63
|
|
|
47
64
|
## 2.4.0-alpha.30 (2026-03-07)
|
|
48
65
|
|
package/config.schema.json
CHANGED
|
@@ -85,14 +85,6 @@
|
|
|
85
85
|
"placeholder": 800
|
|
86
86
|
},
|
|
87
87
|
|
|
88
|
-
"masterChannelListValidFor": {
|
|
89
|
-
"title": "Master Channel List Validity Time",
|
|
90
|
-
"type": "integer",
|
|
91
|
-
"description": "The time in seconds before the master channel list is refreshed. Default: 1800s",
|
|
92
|
-
"default": 1800,
|
|
93
|
-
"placeholder": 1800
|
|
94
|
-
},
|
|
95
|
-
|
|
96
88
|
"debugLevel": {
|
|
97
89
|
"title": "Debug Level",
|
|
98
90
|
"type": "integer",
|
|
@@ -871,7 +863,6 @@
|
|
|
871
863
|
"name",
|
|
872
864
|
"doublePressTime",
|
|
873
865
|
"triplePressTime",
|
|
874
|
-
"masterChannelListValidFor",
|
|
875
866
|
"debugLevel"
|
|
876
867
|
]
|
|
877
868
|
},
|