Release v2.0.0-alpha

This commit is contained in:
SMKRV
2024-11-26 01:20:08 +03:00
parent 616ff2c3fe
commit 208074d845
7 changed files with 21 additions and 12917 deletions
+1 -1
View File
@@ -89,7 +89,7 @@ async def async_setup(hass: HomeAssistant, config: Dict[str, Any]) -> bool:
source = os.path.join(os.path.dirname(__file__), 'icons', 'icon.svg')
dest_dir = os.path.join(hass.config.path('www'), 'icons')
os.makedirs(dest_dir, exist_ok=True)
dest = os.path.join(dest_dir, 'icon.svg')
dest = os.path.join(dest_dir, 'icon.png')
if not os.path.exists(dest):
shutil.copyfile(source, dest)
except Exception as ex:
Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 678 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

+20 -14
View File
@@ -2,18 +2,24 @@
ha-text-ai/
├── custom_components/
── ha_text_ai/
├── __init__.py
├── config_flow.py
├── coordinator.py
├── manifest.json
├── sensor.py
├── services.yaml
├── const.py
└── api_client.py
└── strings/
├── en.json
├── de.json
└── ru.json
── ha_text_ai/
├── __init__.py
├── config_flow.py
├── coordinator.py
├── manifest.json
├── sensor.py
├── services.yaml
├── const.py
└── api_client.py
├── translations/
├── en.json
├── de.json
└── ru.json
└── icons/
├── icon.png
├── icon@2x.png
├── logo.png
└── logo@2x.png
```