mirror of
https://github.com/esphome/esphome-docs.git
synced 2024-12-27 17:37:45 +01:00
commit
c75a354273
2
Doxygen
2
Doxygen
@ -38,7 +38,7 @@ PROJECT_NAME = "ESPHome"
|
|||||||
# could be handy for archiving the generated documentation or if some version
|
# could be handy for archiving the generated documentation or if some version
|
||||||
# control system is used.
|
# control system is used.
|
||||||
|
|
||||||
PROJECT_NUMBER = 2024.4.0b1
|
PROJECT_NUMBER = 2024.4.0b2
|
||||||
|
|
||||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
||||||
# for a project that appears at the top of each page and should give viewer a
|
# for a project that appears at the top of each page and should give viewer a
|
||||||
|
2
Makefile
2
Makefile
@ -1,5 +1,5 @@
|
|||||||
ESPHOME_PATH = ../esphome
|
ESPHOME_PATH = ../esphome
|
||||||
ESPHOME_REF = 2024.4.0b1
|
ESPHOME_REF = 2024.4.0b2
|
||||||
|
|
||||||
.PHONY: html html-strict cleanhtml deploy help live-html Makefile netlify netlify-api api netlify-dependencies svg2png copy-svg2png minify
|
.PHONY: html html-strict cleanhtml deploy help live-html Makefile netlify netlify-api api netlify-dependencies svg2png copy-svg2png minify
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
2024.4.0b1
|
2024.4.0b2
|
@ -20,6 +20,24 @@ ESPHome 2024.4.0 - 17th April 2024
|
|||||||
TLC5971, components/output/tlc5971, tlc5971.jpg
|
TLC5971, components/output/tlc5971, tlc5971.jpg
|
||||||
Dooya, components/remote_transmitter, remote.svg
|
Dooya, components/remote_transmitter, remote.svg
|
||||||
|
|
||||||
|
|
||||||
|
Time Entities
|
||||||
|
-------------
|
||||||
|
|
||||||
|
ESPHome now has support for ``time`` entities that can be set from the frontend (like Home Assistant). THis allows you to set a timer to execute future automations on device.
|
||||||
|
|
||||||
|
ESPHome Dates require Home Assistant 2024.4 or later.
|
||||||
|
|
||||||
|
|
||||||
|
Voice Assistant Audio
|
||||||
|
---------------------
|
||||||
|
|
||||||
|
This release adds support for sending and receiving audio to/from voice assistants via the API. Currently ESPHome sends and receives the Voice Assistant audio bytes
|
||||||
|
via a UDP socket which can be unreliable and insecure. Beginning with Home Assistant 2024.5, both sides will automatically recognise that they both support API Audio and will
|
||||||
|
use that route instead. This is more reliable because the ESPHome API uses a TCP socket, so packet order and delivery is guaranteed, and if you use API Encryption,
|
||||||
|
your audio will also be encrypted in transit.
|
||||||
|
|
||||||
|
|
||||||
Full list of changes
|
Full list of changes
|
||||||
--------------------
|
--------------------
|
||||||
|
|
||||||
@ -39,6 +57,13 @@ Breaking Changes
|
|||||||
- Add support for new modes in Tuya Climate :esphomepr:`5159` by :ghuser:`moriahmorgan` (breaking-change)
|
- Add support for new modes in Tuya Climate :esphomepr:`5159` by :ghuser:`moriahmorgan` (breaking-change)
|
||||||
- IPv6 string representation follows RFC5952 :esphomepr:`6449` by :ghuser:`HeMan` (breaking-change)
|
- IPv6 string representation follows RFC5952 :esphomepr:`6449` by :ghuser:`HeMan` (breaking-change)
|
||||||
|
|
||||||
|
Beta Changes
|
||||||
|
^^^^^^^^^^^^
|
||||||
|
|
||||||
|
- Add dooya remote transmitter test :esphomepr:`6508` by :ghuser:`jesserockz`
|
||||||
|
- ads1115: remove auto-load and split sensor into platform folder :esphomepr:`5981` by :ghuser:`jesserockz` (new-platform)
|
||||||
|
- Bump esphome-dashboard to 20240412.0 :esphomepr:`6517` by :ghuser:`jesserockz`
|
||||||
|
|
||||||
All changes
|
All changes
|
||||||
^^^^^^^^^^^
|
^^^^^^^^^^^
|
||||||
|
|
||||||
@ -127,6 +152,9 @@ All changes
|
|||||||
- Add Dooya protocol to remote_base :esphomepr:`6488` by :ghuser:`bukureckid`
|
- Add Dooya protocol to remote_base :esphomepr:`6488` by :ghuser:`bukureckid`
|
||||||
- Only give error for connected sensors at startup :esphomepr:`6474` by :ghuser:`leejoow`
|
- Only give error for connected sensors at startup :esphomepr:`6474` by :ghuser:`leejoow`
|
||||||
- Webserver float to string fix :esphomepr:`6507` by :ghuser:`RFDarter`
|
- Webserver float to string fix :esphomepr:`6507` by :ghuser:`RFDarter`
|
||||||
|
- Add dooya remote transmitter test :esphomepr:`6508` by :ghuser:`jesserockz`
|
||||||
|
- ads1115: remove auto-load and split sensor into platform folder :esphomepr:`5981` by :ghuser:`jesserockz` (new-platform)
|
||||||
|
- Bump esphome-dashboard to 20240412.0 :esphomepr:`6517` by :ghuser:`jesserockz`
|
||||||
|
|
||||||
Past Changelogs
|
Past Changelogs
|
||||||
---------------
|
---------------
|
||||||
|
@ -2,7 +2,7 @@ Changelog
|
|||||||
=========
|
=========
|
||||||
|
|
||||||
.. redirect::
|
.. redirect::
|
||||||
:url: /changelog/2024.3.0.html
|
:url: /changelog/2024.4.0.html
|
||||||
|
|
||||||
.. toctree::
|
.. toctree::
|
||||||
:glob:
|
:glob:
|
||||||
|
2
conf.py
2
conf.py
@ -69,7 +69,7 @@ author = "ESPHome"
|
|||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = "2024.4"
|
version = "2024.4"
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = "2024.4.0b1"
|
release = "2024.4.0b2"
|
||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
@ -433,6 +433,7 @@ Contributors
|
|||||||
- `Ettore Beltrame (@E440QF) <https://github.com/E440QF>`__
|
- `Ettore Beltrame (@E440QF) <https://github.com/E440QF>`__
|
||||||
- `Earle F. Philhower, III (@earlephilhower) <https://github.com/earlephilhower>`__
|
- `Earle F. Philhower, III (@earlephilhower) <https://github.com/earlephilhower>`__
|
||||||
- `Ermanno Baschiera (@ebaschiera) <https://github.com/ebaschiera>`__
|
- `Ermanno Baschiera (@ebaschiera) <https://github.com/ebaschiera>`__
|
||||||
|
- `ebw44 (@ebw44) <https://github.com/ebw44>`__
|
||||||
- `Robert Resch (@edenhaus) <https://github.com/edenhaus>`__
|
- `Robert Resch (@edenhaus) <https://github.com/edenhaus>`__
|
||||||
- `Niclas Larsson (@edge90) <https://github.com/edge90>`__
|
- `Niclas Larsson (@edge90) <https://github.com/edge90>`__
|
||||||
- `EdJoPaTo (@EdJoPaTo) <https://github.com/EdJoPaTo>`__
|
- `EdJoPaTo (@EdJoPaTo) <https://github.com/EdJoPaTo>`__
|
||||||
@ -531,6 +532,7 @@ Contributors
|
|||||||
- `Aljaž Srebrnič (@g5pw) <https://github.com/g5pw>`__
|
- `Aljaž Srebrnič (@g5pw) <https://github.com/g5pw>`__
|
||||||
- `Alex Hermann (@gaaf) <https://github.com/gaaf>`__
|
- `Alex Hermann (@gaaf) <https://github.com/gaaf>`__
|
||||||
- `Gabe Cook (@gabe565) <https://github.com/gabe565>`__
|
- `Gabe Cook (@gabe565) <https://github.com/gabe565>`__
|
||||||
|
- `Gábor Poczkodi (@gabest11) <https://github.com/gabest11>`__
|
||||||
- `gazoodle (@gazoodle) <https://github.com/gazoodle>`__
|
- `gazoodle (@gazoodle) <https://github.com/gazoodle>`__
|
||||||
- `gcopeland (@gcopeland) <https://github.com/gcopeland>`__
|
- `gcopeland (@gcopeland) <https://github.com/gcopeland>`__
|
||||||
- `Greg Cormier (@gcormier) <https://github.com/gcormier>`__
|
- `Greg Cormier (@gcormier) <https://github.com/gcormier>`__
|
||||||
@ -1344,4 +1346,4 @@ Contributors
|
|||||||
- `Christian Zufferey (@zuzu59) <https://github.com/zuzu59>`__
|
- `Christian Zufferey (@zuzu59) <https://github.com/zuzu59>`__
|
||||||
- `Zynth-dev (@Zynth-dev) <https://github.com/Zynth-dev>`__
|
- `Zynth-dev (@Zynth-dev) <https://github.com/Zynth-dev>`__
|
||||||
|
|
||||||
*This page was last updated April 10, 2024.*
|
*This page was last updated April 12, 2024.*
|
||||||
|
Loading…
Reference in New Issue
Block a user