🎉 Release of add-on AppDaemon v0.4.0

This commit is contained in:
Franck Nijhof 2018-01-07 14:04:20 +01:00
parent 1ff0ce7178
commit a3f6f35c63
No known key found for this signature in database
GPG key ID: D62583BA8AB11CA3

View file

@ -1,6 +1,6 @@
{
"name": "AppDaemon",
"version": "0.3.0",
"version": "0.4.0",
"slug": "appdaemon",
"description": "Python Apps and HADashboard for Home Assistant",
"url": "https://community.home-assistant.io/t/community-hass-io-add-on-appdaemon/33823?u=frenck",
@ -20,14 +20,19 @@
],
"options": {
"log_level": "info",
"commtype": "websockets"
"commtype": "websockets",
"system_packages": [],
"python_packages": []
},
"schema": {
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)",
"commtype": "match(^(websockets|sse)$)"
"commtype": "match(^(websockets|sse)$)",
"system_packages": ["str"],
"python_packages": ["str"]
},
"environment": {
"LOG_FORMAT": "{LEVEL}: {MESSAGE}"
"LOG_FORMAT": "{LEVEL}: {MESSAGE}",
"SUPERVISOR_VERSION": ">=0.77.0"
},
"image": "hassioaddons/appdaemon-{arch}"
}