From 32290197a82298ceac47ea9ecf10f44240ecab94 Mon Sep 17 00:00:00 2001 From: Chris Browet Date: Thu, 13 May 2021 09:36:03 +0200 Subject: [PATCH] hacs style --- __init__.py => custom_components/jellyfin/__init__.py | 0 config_flow.py => custom_components/jellyfin/config_flow.py | 0 const.py => custom_components/jellyfin/const.py | 0 manifest.json => custom_components/jellyfin/manifest.json | 0 .../jellyfin/media_player.py | 0 .../jellyfin/media_source.py | 0 sensor.py => custom_components/jellyfin/sensor.py | 0 services.yaml => custom_components/jellyfin/services.yaml | 0 strings.json => custom_components/jellyfin/strings.json | 0 .../jellyfin/translations}/en.json | 0 .../jellyfin/translations}/fr.json | 0 hacs.json | 6 ++++++ 12 files changed, 6 insertions(+) rename __init__.py => custom_components/jellyfin/__init__.py (100%) rename config_flow.py => custom_components/jellyfin/config_flow.py (100%) rename const.py => custom_components/jellyfin/const.py (100%) rename manifest.json => custom_components/jellyfin/manifest.json (100%) rename media_player.py => custom_components/jellyfin/media_player.py (100%) rename media_source.py => custom_components/jellyfin/media_source.py (100%) rename sensor.py => custom_components/jellyfin/sensor.py (100%) rename services.yaml => custom_components/jellyfin/services.yaml (100%) rename strings.json => custom_components/jellyfin/strings.json (100%) rename {translations => custom_components/jellyfin/translations}/en.json (100%) rename {translations => custom_components/jellyfin/translations}/fr.json (100%) create mode 100644 hacs.json diff --git a/__init__.py b/custom_components/jellyfin/__init__.py similarity index 100% rename from __init__.py rename to custom_components/jellyfin/__init__.py diff --git a/config_flow.py b/custom_components/jellyfin/config_flow.py similarity index 100% rename from config_flow.py rename to custom_components/jellyfin/config_flow.py diff --git a/const.py b/custom_components/jellyfin/const.py similarity index 100% rename from const.py rename to custom_components/jellyfin/const.py diff --git a/manifest.json b/custom_components/jellyfin/manifest.json similarity index 100% rename from manifest.json rename to custom_components/jellyfin/manifest.json diff --git a/media_player.py b/custom_components/jellyfin/media_player.py similarity index 100% rename from media_player.py rename to custom_components/jellyfin/media_player.py diff --git a/media_source.py b/custom_components/jellyfin/media_source.py similarity index 100% rename from media_source.py rename to custom_components/jellyfin/media_source.py diff --git a/sensor.py b/custom_components/jellyfin/sensor.py similarity index 100% rename from sensor.py rename to custom_components/jellyfin/sensor.py diff --git a/services.yaml b/custom_components/jellyfin/services.yaml similarity index 100% rename from services.yaml rename to custom_components/jellyfin/services.yaml diff --git a/strings.json b/custom_components/jellyfin/strings.json similarity index 100% rename from strings.json rename to custom_components/jellyfin/strings.json diff --git a/translations/en.json b/custom_components/jellyfin/translations/en.json similarity index 100% rename from translations/en.json rename to custom_components/jellyfin/translations/en.json diff --git a/translations/fr.json b/custom_components/jellyfin/translations/fr.json similarity index 100% rename from translations/fr.json rename to custom_components/jellyfin/translations/fr.json diff --git a/hacs.json b/hacs.json new file mode 100644 index 0000000..375fb91 --- /dev/null +++ b/hacs.json @@ -0,0 +1,6 @@ +{ + "name": "Jellyfin", + "domains": ["sensor", "media_player"], + "iot_class": ["Cloud Polling"], + "render_readme": true + } \ No newline at end of file