@o-lukas/homebridge-smartthings-tv 1.8.0 → 1.8.2
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/README.md +8 -0
- package/package.json +11 -15
package/README.md
CHANGED
|
@@ -47,6 +47,10 @@ The following snippets shows all available properties you can use for the plugin
|
|
|
47
47
|
"registerPictureModes": true,
|
|
48
48
|
"registerSoundModes": true,
|
|
49
49
|
"registerVolumeSlider": true,
|
|
50
|
+
"deviceBlacklist": [
|
|
51
|
+
"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
|
|
52
|
+
"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
|
|
53
|
+
],
|
|
50
54
|
"deviceMappings": [
|
|
51
55
|
{
|
|
52
56
|
"deviceId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
|
|
@@ -100,6 +104,10 @@ Registers all available sound modes as separate switches that can be toggled to
|
|
|
100
104
|
|
|
101
105
|
Registers a separate volume slider accessorry that will be exposed as a light bulb accessory (because there is currently no option to change a speaker volume directly using Home).
|
|
102
106
|
|
|
107
|
+
### deviceBlacklist
|
|
108
|
+
|
|
109
|
+
Devices not to be registered.
|
|
110
|
+
|
|
103
111
|
### deviceMappings
|
|
104
112
|
|
|
105
113
|
Use the device mappings when e.g. turning on the accessory does not work as expected. When a device mapping is available the wake-on-lan functionality is used to turn on the device instead of the SmartThings API. To make use of the functionality you must enter the mapping using the SmartThings device ID and the mac address of the device. If status does not show up properly you can use the ping functionality to determine the device status. To make use of it you must enter the SmartThings device ID and the ip address of the device.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"displayName": "Homebridge SmartThings TV",
|
|
3
3
|
"name": "@o-lukas/homebridge-smartthings-tv",
|
|
4
|
-
"version": "1.8.
|
|
4
|
+
"version": "1.8.2",
|
|
5
5
|
"description": "This is a plugin for Homebridge. It offers some basic functions to control Samsung TVs using the SmartThings API.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -35,31 +35,27 @@
|
|
|
35
35
|
"tizen"
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@smartthings/core-sdk": "^
|
|
38
|
+
"@smartthings/core-sdk": "^8.0.1",
|
|
39
39
|
"ping": "^0.4.4",
|
|
40
40
|
"wol": "^1.0.7"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@types/node": "^20.
|
|
44
|
-
"@types/ping": "^0.4.
|
|
45
|
-
"@types/wol": "^1.0.
|
|
46
|
-
"@typescript-eslint/eslint-plugin": "^6.
|
|
47
|
-
"@typescript-eslint/parser": "^6.
|
|
48
|
-
"eslint": "^8.
|
|
43
|
+
"@types/node": "^20.7.1",
|
|
44
|
+
"@types/ping": "^0.4.2",
|
|
45
|
+
"@types/wol": "^1.0.2",
|
|
46
|
+
"@typescript-eslint/eslint-plugin": "^6.7.3",
|
|
47
|
+
"@typescript-eslint/parser": "^6.7.3",
|
|
48
|
+
"eslint": "^8.50.0",
|
|
49
49
|
"homebridge": "^1.6.1",
|
|
50
50
|
"nodemon": "^3.0.1",
|
|
51
|
-
"rimraf": "^5.0.
|
|
52
|
-
"semantic-release": "^
|
|
51
|
+
"rimraf": "^5.0.5",
|
|
52
|
+
"semantic-release": "^22.0.5",
|
|
53
53
|
"ts-node": "^10.9.1",
|
|
54
54
|
"typescript": "^5.2.2"
|
|
55
55
|
},
|
|
56
56
|
"release": {
|
|
57
57
|
"branches": [
|
|
58
|
-
"main"
|
|
59
|
-
{
|
|
60
|
-
"name": "next",
|
|
61
|
-
"prerelease": true
|
|
62
|
-
}
|
|
58
|
+
"main"
|
|
63
59
|
]
|
|
64
60
|
}
|
|
65
61
|
}
|