@o-lukas/homebridge-smartthings-tv 1.10.1 → 1.10.3

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.
Files changed (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +11 -11
package/README.md CHANGED
@@ -243,6 +243,10 @@ Some TVs always report the same picture & sound mode. This will cause the expose
243
243
 
244
244
  Sometimes the SmartThings API seems to loose the contact to the device and does not update it's state so every request will end up with an error message like `invalid device state`. To fix this try to remove the device from your SmartThings account and add it again. This seems to fix the problem.
245
245
 
246
+ ## DisplayPort input sources do not show up
247
+
248
+ For some TVs display port sources do not show up. When having the same problem you might try to use [inputSources](#inputsources). `Id` might be something like `Display Port` but you will have to experiment a bit trying different ids until you find the the right one.
249
+
246
250
  ***
247
251
 
248
252
  Since this is my first plugin it may contain some problems. Feel free to create an issue or pull request and I will try to help and fix the problems.
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.10.1",
4
+ "version": "1.10.3",
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": {
@@ -12,8 +12,8 @@
12
12
  "url": "https://github.com/o-lukas/homebridge-smartthings-tv/issues"
13
13
  },
14
14
  "engines": {
15
- "node": ">=14.18.1",
16
- "homebridge": ">=1.3.5"
15
+ "node": "^18 || ^20",
16
+ "homebridge": "^1.6.0"
17
17
  },
18
18
  "main": "dist/index.js",
19
19
  "scripts": {
@@ -35,23 +35,23 @@
35
35
  "tizen"
36
36
  ],
37
37
  "dependencies": {
38
- "@smartthings/core-sdk": "^8.1.1",
38
+ "@smartthings/core-sdk": "^8.1.2",
39
39
  "ping": "^0.4.4",
40
40
  "wol": "^1.0.7"
41
41
  },
42
42
  "devDependencies": {
43
- "@types/node": "^20.10.2",
43
+ "@types/node": "^20.11.0",
44
44
  "@types/ping": "^0.4.4",
45
45
  "@types/wol": "^1.0.4",
46
- "@typescript-eslint/eslint-plugin": "^6.13.1",
47
- "@typescript-eslint/parser": "^6.13.1",
48
- "eslint": "^8.55.0",
46
+ "@typescript-eslint/eslint-plugin": "^6.18.1",
47
+ "@typescript-eslint/parser": "^6.18.1",
48
+ "eslint": "^8.56.0",
49
49
  "homebridge": "^1.7.0",
50
50
  "nodemon": "^3.0.2",
51
51
  "rimraf": "^5.0.5",
52
- "semantic-release": "^22.0.8",
53
- "ts-node": "^10.9.1",
54
- "typescript": "^5.3.2"
52
+ "semantic-release": "^22.0.12",
53
+ "ts-node": "^10.9.2",
54
+ "typescript": "^5.3.3"
55
55
  },
56
56
  "overrides": {
57
57
  "@smartthings/core-sdk": {