@o-lukas/homebridge-smartthings-tv 3.0.0-alpha.5 → 3.0.0-alpha.6
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 +7 -0
- package/homebridge-ui/public/index.html +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [3.0.0-alpha.6](https://github.com/o-lukas/homebridge-smartthings-tv/compare/v3.0.0-alpha.5...v3.0.0-alpha.6) (2025-10-23)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* ensure correct token type when saving refresh token ([1b95411](https://github.com/o-lukas/homebridge-smartthings-tv/commit/1b95411bd8b154c26c8098bf4f3496007f0e3cb0)), closes [#494](https://github.com/o-lukas/homebridge-smartthings-tv/issues/494)
|
|
7
|
+
|
|
1
8
|
# [3.0.0-alpha.5](https://github.com/o-lukas/homebridge-smartthings-tv/compare/v3.0.0-alpha.4...v3.0.0-alpha.5) (2025-10-23)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -337,6 +337,7 @@
|
|
|
337
337
|
const pluginConfig = await homebridge.getPluginConfig();
|
|
338
338
|
_log('validateStep4 - got pluginConfig', pluginConfig);
|
|
339
339
|
pluginConfig[0].oauthRefreshToken = document.getElementById('oauth-refresh-token').value;
|
|
340
|
+
pluginConfig[0].tokenType = "oauth";
|
|
340
341
|
_log('validateStep4 - setting oauthRefreshToken ***');
|
|
341
342
|
|
|
342
343
|
await homebridge.updatePluginConfig(pluginConfig);
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"displayName": "Homebridge SmartThings TV",
|
|
3
3
|
"name": "@o-lukas/homebridge-smartthings-tv",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"version": "3.0.0-alpha.
|
|
5
|
+
"version": "3.0.0-alpha.6",
|
|
6
6
|
"description": "This is a plugin for Homebridge. It offers some basic functions to control Samsung TVs using the SmartThings API.",
|
|
7
7
|
"author": "o-lukas",
|
|
8
8
|
"license": "MIT",
|