Merge pull request #4103 from esphome/bump-2024.7.3

2024.7.3
This commit is contained in:
Jesse Hills 2024-08-01 11:14:55 +12:00 committed by GitHub
commit 34d3c4aed5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
8 changed files with 21 additions and 6 deletions

View File

@ -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.7.2 PROJECT_NUMBER = 2024.7.3
# 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

View File

@ -1,5 +1,5 @@
ESPHOME_PATH = ../esphome ESPHOME_PATH = ../esphome
ESPHOME_REF = 2024.7.2 ESPHOME_REF = 2024.7.3
PAGEFIND_VERSION=1.1.0 PAGEFIND_VERSION=1.1.0
PAGEFIND=pagefind PAGEFIND=pagefind
NET_PAGEFIND=../pagefindbin/pagefind NET_PAGEFIND=../pagefindbin/pagefind

View File

@ -1 +1 @@
2024.7.2 2024.7.3

View File

@ -46,6 +46,13 @@ Release 2024.7.2 - July 25
- [http_request] Change default timeout to 4.5s :esphomepr:`7123` by :ghuser:`jesserockz` - [http_request] Change default timeout to 4.5s :esphomepr:`7123` by :ghuser:`jesserockz`
- [http_request] Fix ESP-IDF follow redirect :esphomepr:`7101` by :ghuser:`dentra` - [http_request] Fix ESP-IDF follow redirect :esphomepr:`7101` by :ghuser:`dentra`
Release 2024.7.3 - August 1
---------------------------
- [pmwcs3] Add delay after sending REG_READ_START :esphomepr:`7130` by :ghuser:`thevogoncoder`
- Fix for Mitsubishi units that only support cooling :esphomepr:`7143` by :ghuser:`RubyBailey`
- [micro_wake_word] Fix VAD detection and modify detection computation :esphomepr:`7164` by :ghuser:`kahrendt`
Full list of changes Full list of changes
-------------------- --------------------

View File

@ -200,6 +200,10 @@ These air conditioners support two protocols: Midea and Coolix. Therefore, when
``mitsubishi`` **Climate**: ``mitsubishi`` **Climate**:
.. note::
- When using this component with Mitsubishi units that only support cooling mode, the Off command may not work. Set **supports_heat** to ``false`` to resolve that issue.
- **set_fan_mode** (*Optional*, string): Select the fan modes desired or that are supported on your remote. Defaults to ``3levels`` - **set_fan_mode** (*Optional*, string): Select the fan modes desired or that are supported on your remote. Defaults to ``3levels``
- Options are: ``3levels`` , ``4levels``, ``quiet_4levels``. - Options are: ``3levels`` , ``4levels``, ``quiet_4levels``.

View File

@ -55,7 +55,7 @@ Configuration variables:
- **probability_cutoff** (*Optional*, percentage): The probability cutoff for voice activity detection. - **probability_cutoff** (*Optional*, percentage): The probability cutoff for voice activity detection.
If the probability is below this value, then no wake word will be accepted. If the probability is below this value, then no wake word will be accepted.
A larger value reduces the number of false accepts but increases the number of false rejections. A larger value reduces the number of false accepts but increases the number of false rejections.
- **sliding_window_size** (*Optional*, int): The size of the sliding window for voice activity detection. The maximum of the probabilities in the sliding window is compared to ``probability_cutoff`` to determine if voice activity is detected. - **sliding_window_size** (*Optional*, int): The size of the sliding window average for voice activity detection. The average probability is compared to ``probability_cutoff`` to determine if voice activity is detected.
The ``probability_cutoff`` and ``sliding_window_size`` are provided by the JSON file but can be overridden in YAML. A default VAD model is provided with the ``vad`` configuration variables, but a different model can be overridden in YAML. The ``probability_cutoff`` and ``sliding_window_size`` are provided by the JSON file but can be overridden in YAML. A default VAD model is provided with the ``vad`` configuration variables, but a different model can be overridden in YAML.

View File

@ -69,7 +69,7 @@ author = "ESPHome"
# The short X.Y version. # The short X.Y version.
version = "2024.7" version = "2024.7"
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = "2024.7.2" release = "2024.7.3"
# 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.

View File

@ -307,6 +307,7 @@ Contributors
- `Paweł Dembicki (@CHKDSK88) <https://github.com/CHKDSK88>`__ - `Paweł Dembicki (@CHKDSK88) <https://github.com/CHKDSK88>`__
- `chris-jennings (@chris-jennings) <https://github.com/chris-jennings>`__ - `chris-jennings (@chris-jennings) <https://github.com/chris-jennings>`__
- `Chris (@chrismaki) <https://github.com/chrismaki>`__ - `Chris (@chrismaki) <https://github.com/chrismaki>`__
- `Chris Nesbitt-Smith (@chrisns) <https://github.com/chrisns>`__
- `Christiaan de Ridder (@christiaanderidder) <https://github.com/christiaanderidder>`__ - `Christiaan de Ridder (@christiaanderidder) <https://github.com/christiaanderidder>`__
- `Christoph Wagner (@Christoph-Wagner) <https://github.com/Christoph-Wagner>`__ - `Christoph Wagner (@Christoph-Wagner) <https://github.com/Christoph-Wagner>`__
- `Christian Taedcke (@chrta) <https://github.com/chrta>`__ - `Christian Taedcke (@chrta) <https://github.com/chrta>`__
@ -462,6 +463,7 @@ Contributors
- `Dirk Heinke (@DirkHeinke) <https://github.com/DirkHeinke>`__ - `Dirk Heinke (@DirkHeinke) <https://github.com/DirkHeinke>`__
- `Dirk Jahnke (@dirkj) <https://github.com/dirkj>`__ - `Dirk Jahnke (@dirkj) <https://github.com/dirkj>`__
- `Dennis (@dirrgang) <https://github.com/dirrgang>`__ - `Dennis (@dirrgang) <https://github.com/dirrgang>`__
- `Andrea Casini (@ditadipolvere08) <https://github.com/ditadipolvere08>`__
- `Johann V. (@divinitas) <https://github.com/divinitas>`__ - `Johann V. (@divinitas) <https://github.com/divinitas>`__
- `dj-bauer (@dj-bauer) <https://github.com/dj-bauer>`__ - `dj-bauer (@dj-bauer) <https://github.com/dj-bauer>`__
- `Dominic Pearman (@djpearman) <https://github.com/djpearman>`__ - `Dominic Pearman (@djpearman) <https://github.com/djpearman>`__
@ -720,6 +722,7 @@ Contributors
- `Alex Griffith (@halomademeapc) <https://github.com/halomademeapc>`__ - `Alex Griffith (@halomademeapc) <https://github.com/halomademeapc>`__
- `Aniket (@HandyHat) <https://github.com/HandyHat>`__ - `Aniket (@HandyHat) <https://github.com/HandyHat>`__
- `Harrison Jones (@harrisonhjones) <https://github.com/harrisonhjones>`__ - `Harrison Jones (@harrisonhjones) <https://github.com/harrisonhjones>`__
- `HarvsG (@HarvsG) <https://github.com/HarvsG>`__
- `Charles Thompson (@haryadoon) <https://github.com/haryadoon>`__ - `Charles Thompson (@haryadoon) <https://github.com/haryadoon>`__
- `Ha Thach (@hathach) <https://github.com/hathach>`__ - `Ha Thach (@hathach) <https://github.com/hathach>`__
- `Cong Hoang Nguyen (@HcNguyen111) <https://github.com/HcNguyen111>`__ - `Cong Hoang Nguyen (@HcNguyen111) <https://github.com/HcNguyen111>`__
@ -995,6 +998,7 @@ Contributors
- `Kyle Manna (@kylemanna) <https://github.com/kylemanna>`__ - `Kyle Manna (@kylemanna) <https://github.com/kylemanna>`__
- `Kyle Hill (@kylhill) <https://github.com/kylhill>`__ - `Kyle Hill (@kylhill) <https://github.com/kylhill>`__
- `Kalashnikov Ilya (@l1bbcsg) <https://github.com/l1bbcsg>`__ - `Kalashnikov Ilya (@l1bbcsg) <https://github.com/l1bbcsg>`__
- `l3d00m (@l3d00m) <https://github.com/l3d00m>`__
- `la7dja (@la7dja) <https://github.com/la7dja>`__ - `la7dja (@la7dja) <https://github.com/la7dja>`__
- `Limor "Ladyada" Fried (@ladyada) <https://github.com/ladyada>`__ - `Limor "Ladyada" Fried (@ladyada) <https://github.com/ladyada>`__
- `Stefan Lässer (@Laess3r) <https://github.com/Laess3r>`__ - `Stefan Lässer (@Laess3r) <https://github.com/Laess3r>`__
@ -1920,4 +1924,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 July 25, 2024.* *This page was last updated August 1, 2024.*