From 95f2ab1e0337d29620d741e0004975496226259f Mon Sep 17 00:00:00 2001 From: Donavan Becker Date: Tue, 31 Oct 2023 17:07:04 -0500 Subject: [PATCH] Update Changlog and Add SSL to Confug UI --- CHANGELOG.md | 3 ++- config.schema.json | 24 ++++++++++++++++++++++++ 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e68b4c4f..cb3b1b996 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,13 +2,14 @@ All notable changes to homebridge-config-ui-x will be documented in this file. -## BETA 4.52.0 (2023-XX-XX) +## BETA 4.52.0 (2023-11-XX) ### Notable Changes - Show UI and plugin updates for newer beta versions when already running a beta version of the plugin - Note: this only works when a plugin uses a `beta` NPM tag for beta releases - Show 'Restart Homebridge Now' modal (with additional messaging for child bridges) after any plugin update, not just the UI +- Update HomeKit Setup Code Format: 1234-5678, make it consistant with the Home App [#1612](https://github.com/homebridge/homebridge-config-ui-x/issues/1612) ### i18n Changes diff --git a/config.schema.json b/config.schema.json index 3b2d41a5e..997182386 100644 --- a/config.schema.json +++ b/config.schema.json @@ -672,6 +672,30 @@ "key": "loginWallpaper", "notitle": true, "placeholder": "eg. /home/pi/mywallpaper.jpg" + }, + { + "ref": "ssl", + "type": "fieldset", + "expandable": true, + "title": "SSL Setup", + "items": [ + { + "key": "ssl.key", + "placeholder": "eg. /Users/homebridge/.homebridge/certs/server.key" + }, + { + "key": "ssl.cert", + "placeholder": "eg. /Users/homebridge/.homebridge/certs/server.crt" + }, + { + "key": "ssl.pfx", + "placeholder": "eg. /Users/homebridge/.homebridge/certs/server.pfx" + }, + { + "key": "ssl.passphrase", + "placeholder": "eg. mypassphrase" + } + ] } ] }