From 445c0870e013b236c4a49834f063337d258fb061 Mon Sep 17 00:00:00 2001 From: oznu Date: Fri, 13 May 2022 00:41:33 +1000 Subject: [PATCH] change log, remove default credential references --- CHANGELOG.md | 6 +++++- README.md | 2 -- package-lock.json | 4 ++-- package.json | 2 +- src/bin/hb-service.ts | 3 +-- 5 files changed, 9 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 450ebb49a..ba0853303 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,11 @@ All notable changes to this project will be documented in this file. This projec ### Notable Changes * **Auth:** Users are prompted to create a new user account the first time the Homebridge UI is launched -* **Auth:** The default credentials of **admin** and **admin** are no longer used for new installs +* **Auth:** The default credentials of **admin** / **admin** are no longer set for new installs + +### Other changes + +* **i18n:** Improvements to Italian language translations ([#1333](https://github.com/oznu/homebridge-config-ui-x/pull/1333)) ## 4.43.3 (2022-05-07) diff --git a/README.md b/README.md index 3020ee35d..7c10009ca 100755 --- a/README.md +++ b/README.md @@ -37,8 +37,6 @@ For detailed instructions on how to setup Node.js and Homebridge with Homebridge If your platform is not listed above, or you want to use your own service manager, see the [Manual Configuration](https://github.com/oznu/homebridge-config-ui-x/wiki/Manual-Configuration) wiki article for instructions on setting up the Homebridge UI to run as a Homebridge plugin instead of a service. -The default username is `admin` and the default password is `admin`. - # Usage ### Status Screen diff --git a/package-lock.json b/package-lock.json index 03bf5829e..f06d9592a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "homebridge-config-ui-x", - "version": "4.44.0-test.2", + "version": "4.44.0-test.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "homebridge-config-ui-x", - "version": "4.44.0-test.2", + "version": "4.44.0-test.4", "funding": [ { "type": "github", diff --git a/package.json b/package.json index d03fcf081..90bca6c61 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "homebridge-config-ui-x", "displayName": "Homebridge UI", - "version": "4.44.0-test.2", + "version": "4.44.0-test.4", "description": "A web based management, configuration and control platform for Homebridge", "license": "MIT", "author": "oznu ", diff --git a/src/bin/hb-service.ts b/src/bin/hb-service.ts index f3995a083..4ed0fa180 100644 --- a/src/bin/hb-service.ts +++ b/src/bin/hb-service.ts @@ -652,8 +652,7 @@ export class HomebridgeServiceHelper { console.log(`* http://[${defaultInterface.ip6}]:${this.uiPort}`); } - console.log('\nDefault Username: admin'); - console.log('Default Password: admin\n'); + console.log(''); this.logger('Homebridge Setup Complete', 'succeed'); }