From 4e463b28c9034126ac209751269ae1b9d0b5fc04 Mon Sep 17 00:00:00 2001 From: Andrew Grimberg Date: Wed, 23 Feb 2022 14:48:52 -0800 Subject: [PATCH] Fix: Update HACS to do zip releases While doing some looking into analytics it was discovered that all versions of Rental Control were reporting version 0.0.0 which means that all installed versions have been installing directly from the repository. This makes it hard to understand what the install base is! As zip releases were supposed to be on for a long time this actually fixes it to have them on. It also fixes the fact that the calendar domain was not listed Signed-off-by: Andrew Grimberg --- hacs.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hacs.json b/hacs.json index 47da963..78137ba 100644 --- a/hacs.json +++ b/hacs.json @@ -1,7 +1,9 @@ { "name": "Rental Control", "hacs": "1.13.2", - "domains": ["sensor"], + "domains": ["calendar", "sensor"], "iot_class": "Cloud Polling", + "zip_release": true, + "filename": "rental_control.zip", "homeassistant": "2021.7.0" }