diff --git a/CHANGELOG.md b/CHANGELOG.md index bb97ba84e..4d72d5be4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,17 @@ All notable changes to this project will be documented in this file. This project uses [Semantic Versioning](https://semver.org/). +## 4.0.3 (2019-04-20) + +### Bug Fixes + +* Fixed bug that prevented web service listening on IPv6 interfaces ([#260](https://github.com/oznu/homebridge-config-ui-x/issues/260)) + ## 4.0.2 (2019-04-19) ### Notable Changes -* Added `websocketCompatibilityMode` option for users who are having issues with WebSocket connections ([#238](https://github.com/oznu/homebridge-config-ui-x/pull/238)) +* Added `websocketCompatibilityMode` option for users who are having issues with WebSocket connections ([#238](https://github.com/oznu/homebridge-config-ui-x/issues/238)) ### Other Changes @@ -29,8 +35,8 @@ All notable changes to this project will be documented in this file. This projec ### Notable Changes -* **Plugins:** Before updating a Homebridge plugin the release notes from GitHub will be shown where possible ([#233](https://github.com/oznu/homebridge-config-ui-x/pull/233)) -* **Plugins:** A corrupt plugin will no longer prevent all the installed plugins from being displayed ([#252](https://github.com/oznu/homebridge-config-ui-x/pull/252)) +* **Plugins:** Before updating a Homebridge plugin the release notes from GitHub will be shown where possible ([#233](https://github.com/oznu/homebridge-config-ui-x/issues/233)) +* **Plugins:** A corrupt plugin will no longer prevent all the installed plugins from being displayed ([#252](https://github.com/oznu/homebridge-config-ui-x/issues/252)) * **i18n:** Turkish language translation added by [@btutal](https://github.com/btutal) * **Theme:** The default theme for new installs is now `teal` instead of `red` * **Auth:** Ability to customise the session timeout diff --git a/package-lock.json b/package-lock.json index ed324ece1..5aa705aeb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "homebridge-config-ui-x", - "version": "4.0.2", + "version": "4.0.3", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 6c579c425..2cc4fe172 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "homebridge-config-ui-x", - "version": "4.0.2", + "version": "4.0.3", "description": "Configuration UI plugin for Homebridge", "license": "MIT", "author": "oznu ", diff --git a/src/main.ts b/src/main.ts index 14349fb6d..0b06780c4 100644 --- a/src/main.ts +++ b/src/main.ts @@ -107,6 +107,6 @@ async function bootstrap() { app.useGlobalFilters(new SpaFilter()); logger.warn(`Console v${configService.package.version} is listening on port ${configService.ui.port}`); - await app.listen(configService.ui.port, '0.0.0.0'); + await app.listen(configService.ui.port, '::'); } bootstrap();