From 9274bffc99855c48c21236f16c2940d7efede346 Mon Sep 17 00:00:00 2001 From: Tyler Britten <1933680+tybritten@users.noreply.github.com> Date: Sun, 17 Jan 2021 15:32:33 -0500 Subject: [PATCH] original domain --- custom_components/{ics => ical}/__init__.py | 0 custom_components/{ics => ical}/calendar.py | 0 custom_components/{ics => ical}/config_flow.py | 0 custom_components/{ics => ical}/const.py | 2 +- custom_components/{ics => ical}/manifest.json | 2 +- custom_components/{ics => ical}/sensor.py | 0 custom_components/{ics => ical}/strings.json | 0 custom_components/{ics => ical}/translations/de.json | 0 custom_components/{ics => ical}/translations/en.json | 0 9 files changed, 2 insertions(+), 2 deletions(-) rename custom_components/{ics => ical}/__init__.py (100%) rename custom_components/{ics => ical}/calendar.py (100%) rename custom_components/{ics => ical}/config_flow.py (100%) rename custom_components/{ics => ical}/const.py (92%) rename custom_components/{ics => ical}/manifest.json (94%) rename custom_components/{ics => ical}/sensor.py (100%) rename custom_components/{ics => ical}/strings.json (100%) rename custom_components/{ics => ical}/translations/de.json (100%) rename custom_components/{ics => ical}/translations/en.json (100%) diff --git a/custom_components/ics/__init__.py b/custom_components/ical/__init__.py similarity index 100% rename from custom_components/ics/__init__.py rename to custom_components/ical/__init__.py diff --git a/custom_components/ics/calendar.py b/custom_components/ical/calendar.py similarity index 100% rename from custom_components/ics/calendar.py rename to custom_components/ical/calendar.py diff --git a/custom_components/ics/config_flow.py b/custom_components/ical/config_flow.py similarity index 100% rename from custom_components/ics/config_flow.py rename to custom_components/ical/config_flow.py diff --git a/custom_components/ics/const.py b/custom_components/ical/const.py similarity index 92% rename from custom_components/ics/const.py rename to custom_components/ical/const.py index cf3c5de..7d53f7b 100644 --- a/custom_components/ics/const.py +++ b/custom_components/ical/const.py @@ -1,7 +1,7 @@ """Constants for the ical integration.""" VERSION = "0.9" -DOMAIN = "ics" +DOMAIN = "ical" CONF_MAX_EVENTS = "max_events" CONF_DAYS = "days" diff --git a/custom_components/ics/manifest.json b/custom_components/ical/manifest.json similarity index 94% rename from custom_components/ics/manifest.json rename to custom_components/ical/manifest.json index 13d1ff2..e92c134 100644 --- a/custom_components/ics/manifest.json +++ b/custom_components/ical/manifest.json @@ -1,5 +1,5 @@ { - "domain": "ics", + "domain": "ical", "name": "ical Sensor", "config_flow": true, "issue_tracker": "https://github.com/tybritten/ical-sensor-homeassistant/issues", diff --git a/custom_components/ics/sensor.py b/custom_components/ical/sensor.py similarity index 100% rename from custom_components/ics/sensor.py rename to custom_components/ical/sensor.py diff --git a/custom_components/ics/strings.json b/custom_components/ical/strings.json similarity index 100% rename from custom_components/ics/strings.json rename to custom_components/ical/strings.json diff --git a/custom_components/ics/translations/de.json b/custom_components/ical/translations/de.json similarity index 100% rename from custom_components/ics/translations/de.json rename to custom_components/ical/translations/de.json diff --git a/custom_components/ics/translations/en.json b/custom_components/ical/translations/en.json similarity index 100% rename from custom_components/ics/translations/en.json rename to custom_components/ical/translations/en.json