Skip to content

Commit

Permalink
⬆ bump edge-tts to v6.1.12
Browse files Browse the repository at this point in the history
- Fixes rany2/edge-tts#190
- Fixes aiohttp timeout issue
- Improves performance on larger inputs

Signed-off-by: rany <ranygh@riseup.net>
  • Loading branch information
rany2 committed May 22, 2024
1 parent 7d129a5 commit f88a8d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion custom_components/edge_tts/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"documentation": "https://github.com/hasscc/hass-edge-tts",
"iot_class": "cloud_polling",
"issue_tracker": "https://github.com/hasscc/hass-edge-tts/issues",
"requirements": ["edge-tts==6.1.9"],
"requirements": ["edge-tts==6.1.12"],
"version": "0.0.1"
}
2 changes: 1 addition & 1 deletion custom_components/edge_tts/tts.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import voluptuous as vol
from homeassistant.components.tts import CONF_LANG, PLATFORM_SCHEMA, Provider

EDGE_TTS_VERSION = '6.1.9'
EDGE_TTS_VERSION = '6.1.12'
try:
import edge_tts
if '__version__' not in dir(edge_tts) or edge_tts.__version__ != EDGE_TTS_VERSION:
Expand Down

0 comments on commit f88a8d0

Please sign in to comment.