homebridge-smartthings-oauth 1.0.44-beta.7 → 1.0.44
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 +29 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -22,6 +22,10 @@ All notable changes to this project will be documented in this file.
|
|
|
22
22
|
- **MultiServiceAccessory**: Detects Frame TV devices by matching the SmartThings device name against `frameTvDevices` config entries (case-insensitive). Creates a shared `SamsungWebSocket` instance used by both the TV service and Art Mode switch.
|
|
23
23
|
- **Platform**: Registers Art Mode accessories as separate platform accessories after device discovery, with UUIDs derived from `deviceId + '-artmode'` to ensure uniqueness.
|
|
24
24
|
|
|
25
|
+
### Fixed
|
|
26
|
+
- **Art Mode Accessory Registration**: Fixed incorrect `PLUGIN_NAME` (`homebridge-smartthings-ik` instead of `homebridge-smartthings-oauth`) which prevented the Art Mode switch from appearing in HomeKit.
|
|
27
|
+
- **Art Mode Accessory Persistence**: Fixed a bug where the Art Mode accessory was unregistered and re-registered on every restart because its derived UUID didn't match any SmartThings device ID. Art Mode accessories are now excluded from the cleanup loop.
|
|
28
|
+
|
|
25
29
|
### Security
|
|
26
30
|
- **Dependency audit**: Fixed all 6 npm audit vulnerabilities (axios, form-data, glob, js-yaml, brace-expansion, diff) — 0 vulnerabilities remaining.
|
|
27
31
|
|
package/README.md
CHANGED
|
@@ -347,6 +347,35 @@ If you accidentally denied the connection, the TV remembers this decision and wi
|
|
|
347
347
|
|
|
348
348
|
---
|
|
349
349
|
|
|
350
|
+
## TV App Launcher (Optional)
|
|
351
|
+
|
|
352
|
+
Launch Samsung TV apps directly from the HomeKit TV input picker. Apps appear as additional input sources alongside your HDMI inputs.
|
|
353
|
+
|
|
354
|
+
### Setup
|
|
355
|
+
|
|
356
|
+
1. Open plugin settings in the Homebridge UI
|
|
357
|
+
2. Scroll to the **"TV App Shortcuts"** section
|
|
358
|
+
3. Select which apps to enable (Netflix, YouTube, Disney+, Shahid, and more)
|
|
359
|
+
4. Save and restart Homebridge
|
|
360
|
+
|
|
361
|
+
Selected apps will appear in the input source list of your TV accessory in HomeKit. Selecting an app input will launch it on the TV using the `custom.launchapp` SmartThings capability.
|
|
362
|
+
|
|
363
|
+
No apps are enabled by default.
|
|
364
|
+
|
|
365
|
+
---
|
|
366
|
+
|
|
367
|
+
## Washer Support
|
|
368
|
+
|
|
369
|
+
Samsung washers with the `washerOperatingState` capability are automatically discovered and exposed as a HomeKit **Valve** accessory with:
|
|
370
|
+
|
|
371
|
+
- **Active**: Whether the washer is running
|
|
372
|
+
- **In Use**: Whether a wash cycle is in progress
|
|
373
|
+
- **Remaining Duration**: Countdown timer showing time left in the current cycle
|
|
374
|
+
|
|
375
|
+
No additional configuration is needed — washers are detected and added automatically during device discovery.
|
|
376
|
+
|
|
377
|
+
---
|
|
378
|
+
|
|
350
379
|
## Troubleshooting
|
|
351
380
|
|
|
352
381
|
### Common Issues
|
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.44
|
|
5
|
+
"version": "1.0.44",
|
|
6
6
|
"description": "Connects SmartThings devices to Homebridge. Automatically discovers devices.",
|
|
7
7
|
"license": "Apache-2.0",
|
|
8
8
|
"repository": {
|