From 49826b4933ef6c9c5f762f82ee2f8f695e72c109 Mon Sep 17 00:00:00 2001 From: Nicholas Alipaz Date: Tue, 17 Oct 2017 07:32:59 -0700 Subject: [PATCH] New schema to support optional "options" --- inadyn/config.json | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/inadyn/config.json b/inadyn/config.json index bba59b9..5a48b05 100755 --- a/inadyn/config.json +++ b/inadyn/config.json @@ -1,6 +1,6 @@ { "name": "Internet Automated Dynamic DNS Client", - "version": "0.1.8", + "version": "0.1.9", "slug": "inadyn", "description": "Inadyn is a small and simple Dynamic DNS, DDNS, client with HTTPS support. A large number of dynamic dns providers are supported (https://github.com/troglobit/inadyn#supported-providers). For those that are not, you can use a custom provider as per this project's documentation (https://github.com/nalipaz/hassio-addons/blob/master/README.md).", "url": "https://github.com/nalipaz/hassio-addons/tree/master/inadyn", @@ -15,7 +15,8 @@ "username": "username", "password": "password", "hostname": "dynamic-subdomain.example.com" - }] + } + ] }, "schema": { "providers": [ @@ -23,7 +24,16 @@ "provider": "str", "username": "str", "password": "str", - "hostname": "str" + "hostname": "str", + "ssl?": "bool", + "user_agent?": "str", + "checkip_ssl?": "bool", + "checkip_server?": "str", + "checkip_command?": "str", + "checkip_path?": "str", + "custom_provider?": "bool", + "ddns_server?": "str", + "ddns_path?": "str" } ] }