diff --git a/CHANGELOG.md b/CHANGELOG.md index 389f4d1..5ade1d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### NOTE!!! ## After update to 2.x.x the plugin settings (xboxLiveId) need to be updated. -## [2.10.0] - (xx.09.2023) +## [2.10.0] - (26.12.2023) ## After update to this version the plugin properties are changed and console must be authorized and settings need to be corrected. ## Changes - full code refactor diff --git a/index.js b/index.js index 4334b95..3085413 100644 --- a/index.js +++ b/index.js @@ -22,7 +22,7 @@ class XboxPlatform { api.on('didFinishLaunching', () => { for (const device of config.devices) { if (!device.name || !device.host || !device.xboxLiveId) { - log.warn(`Device Name: ${device.name ? device.name : 'Missing'}, Host: ${device.host ? device.host : 'Missing'} or Xbox Live ID: ${device.xboxLiveId ? device.xboxLiveId : 'Missing'}.`); + log.warn(`Name: ${device.name ? 'OK' : device.name}, Host: ${device.host ? 'OK' : device.host}, Xbox Live ID: ${device.xboxLiveId ? 'OK' : device.xboxLiveId}, wromg or missing.`); return; } const debug = device.enableDebugMode ? log(`Device: ${device.host} ${device.name}, did finish launching.`) : false; diff --git a/package.json b/package.json index 71e52a5..d366daa 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "displayName": "Xbox TV", "name": "homebridge-xbox-tv", - "version": "2.10.0-beta.230", + "version": "2.10.0", "description": "Homebridge plugin to control Xbox game consoles.", "license": "MIT", "author": "grzegorz914",