homebridge-smartthings-oauth 1.0.65-beta.0 → 1.0.65
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 +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
|
|
4
|
-
## [1.0.65
|
|
4
|
+
## [1.0.65] - Frame TV Pairing Fix
|
|
5
5
|
|
|
6
|
-
>
|
|
6
|
+
> Stable release graduating `1.0.65-beta.0`, confirmed resolved by the original reporter. Fixes #45: a Samsung Frame TV could never complete local-WebSocket pairing, so true power-off and the Art Mode switch never worked. Root cause: the only code path that opens the token-gated remote channel (`wss://<tv-ip>:8002`) is the HomeKit power-off, which forced a hard **2-second** connect timeout. The TV's "Allow/Deny" authorization popup needs ~30 seconds to be accepted, so it was dismissed before anyone could press **Allow**, no token was ever saved, and power-off silently fell back to the SmartThings cloud `switch.off` (which only puts a Frame into Art Mode). Thanks to @ProfHill-UCD for the clear, log-complete report and for confirming the fix (#45).
|
|
7
7
|
|
|
8
8
|
### Fixed
|
|
9
9
|
- **Frame TV first-time pairing now works** (#45) — `holdKey()` in `samsungWebSocket.ts` is now token-aware: when no authorization token is saved yet it uses the full ~30s connect window so the TV's Allow popup stays up long enough to press, captures and saves the token, and every later power-off then uses a fast path. Note: this *first* power-off may take long enough that the HomeKit tile briefly shows "No Response" — that's expected; the token is saved and the next press is instant. Restarting Homebridge while the TV is ON remains the smoothest way to pair without any time pressure.
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"private": false,
|
|
3
3
|
"displayName": "Homebridge Smartthings oAuth Plugin",
|
|
4
4
|
"name": "homebridge-smartthings-oauth",
|
|
5
|
-
"version": "1.0.65
|
|
5
|
+
"version": "1.0.65",
|
|
6
6
|
"description": "Connects SmartThings devices to Homebridge. Automatically discovers devices.",
|
|
7
7
|
"license": "Apache-2.0",
|
|
8
8
|
"repository": {
|