From c2982585c5beed40bbbc11363d49698c9ab6beb5 Mon Sep 17 00:00:00 2001 From: Long Zhao Date: Thu, 1 Aug 2024 10:56:21 +1000 Subject: [PATCH] fix: homebridge verification request --- LICENSE | 19 ------------------- README.md | 6 ++++++ config.schema.json | 6 ++++++ package.json | 3 ++- 4 files changed, 14 insertions(+), 20 deletions(-) delete mode 100644 LICENSE diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 9cf1062..0000000 --- a/LICENSE +++ /dev/null @@ -1,19 +0,0 @@ -MIT License - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/README.md b/README.md index 130ba20..ebd511f 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,11 @@ # Homebridge Centurion Garage Doors +[![Publish](https://github.com/KieraDOG/homebridge-cgd-garage-door/actions/workflows/publish.yml/badge.svg)](https://github.com/KieraDOG/homebridge-cgd-garage-door/actions/workflows/publish.yml) +[![npm](https://img.shields.io/npm/v/homebridge-cgd-garage-door/latest?label=latest)](https://www.npmjs.com/package/homebridge-cgd-garage-door) +[![MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT) +[![semantic-release](https://img.shields.io/badge/semantic--release-e10079?logo=semantic-release)](https://github.com/semantic-release/semantic-release) + + This is a Homebridge plugin that allows you to control Centurion Garage Doors. ## Features diff --git a/config.schema.json b/config.schema.json index 6afb127..d35bff6 100644 --- a/config.schema.json +++ b/config.schema.json @@ -5,6 +5,12 @@ "schema": { "type": "object", "properties": { + "name": { + "title": "Name", + "type": "string", + "required": true, + "default": "CGDGarageDoor" + }, "deviceHostname": { "title": "Device Hostname", "type": "string", diff --git a/package.json b/package.json index 800a66b..fbb938d 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,7 @@ "name": "homebridge-cgd-garage-door", "version": "1.1.0", "description": "A Homebridge plugin to control Centurion Garage Doors using the official Centurion Garage Door Smartphone App integration. This plugin allows you to open, close, and monitor the status of your Centurion Garage Door, control the Lock Mode, and turn the lights on and off.", + "homepage": "https://github.com/KieraDOG/homebridge-cgd-garage-door", "license": "MIT", "repository": { "type": "git", @@ -13,7 +14,7 @@ }, "author": "Long Zhao ", "engines": { - "node": "^21.0.0", + "node": "^20.0.0", "homebridge": "^1.6.0" }, "main": "dist/index.js",