Merge pull request #4177 from esphome/bump-2024.8.0b4

2024.8.0b4
This commit is contained in:
Jesse Hills 2024-08-21 13:25:55 +12:00 committed by GitHub
commit a6127866bf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 32 additions and 5 deletions

View File

@ -38,7 +38,7 @@ PROJECT_NAME = "ESPHome"
# could be handy for archiving the generated documentation or if some version
# control system is used.
PROJECT_NUMBER = 2024.8.0b3
PROJECT_NUMBER = 2024.8.0b4
# 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

View File

@ -1,5 +1,5 @@
ESPHOME_PATH = ../esphome
ESPHOME_REF = 2024.8.0b3
ESPHOME_REF = 2024.8.0b4
PAGEFIND_VERSION=1.1.0
PAGEFIND=pagefind
NET_PAGEFIND=../pagefindbin/pagefind

View File

@ -1 +1 @@
2024.8.0b3
2024.8.0b4

View File

@ -93,6 +93,10 @@ Beta Changes
- [lvgl] Bug fixes :esphomepr:`7300` by :ghuser:`clydebarrow`
- [speaker] Fix header includes :esphomepr:`7304` by :ghuser:`nielsnl68`
- [microphone] Fix header includes :esphomepr:`7310` by :ghuser:`jesserockz`
- Fix RP2040 Neopixel flickering issue :esphomepr:`7307` by :ghuser:`deCodeIt`
- add the ability to add more idf components to an existing setup :esphomepr:`7302` by :ghuser:`nielsnl68`
- Fix waveshare 2.13" epaper stride calculation error :esphomepr:`7303` by :ghuser:`serialx`
- [rtttl] fix STOPPED state :esphomepr:`7323` by :ghuser:`NewoPL`
All changes
^^^^^^^^^^^
@ -240,6 +244,10 @@ All changes
- [lvgl] Bug fixes :esphomepr:`7300` by :ghuser:`clydebarrow`
- [speaker] Fix header includes :esphomepr:`7304` by :ghuser:`nielsnl68`
- [microphone] Fix header includes :esphomepr:`7310` by :ghuser:`jesserockz`
- Fix RP2040 Neopixel flickering issue :esphomepr:`7307` by :ghuser:`deCodeIt`
- add the ability to add more idf components to an existing setup :esphomepr:`7302` by :ghuser:`nielsnl68`
- Fix waveshare 2.13" epaper stride calculation error :esphomepr:`7303` by :ghuser:`serialx`
- [rtttl] fix STOPPED state :esphomepr:`7323` by :ghuser:`NewoPL`
Past Changelogs
---------------

View File

@ -69,12 +69,30 @@ Some sensors such as the :doc:`HLW8012 <hlw8012>` expose their power sensor with
- multiply: 0.001
unit_of_measurement: kW
Lifetime instead of Daily
-------------------------
For a more-generic version of this component which does not reset every midnight, see :doc:`integration`, which can provide device-lifetime values instead of daily values with the following example settings:
.. code-block:: yaml
# Example configuration entry
sensor:
- platform: integration
name: 'Total Energy'
sensor: my_power
time_unit: h
restore: true
state_class: total_increasing
device_class: energy
See Also
--------
- :ref:`sensor-filters`
- :doc:`hlw8012`
- :doc:`cse7766`
- :doc:`integration`
- :doc:`/components/sensor/pulse_counter`
- :doc:`/components/sensor/pulse_meter`
- :doc:`/components/time/homeassistant`

View File

@ -69,7 +69,7 @@ author = "ESPHome"
# The short X.Y version.
version = "2024.8"
# The full version, including alpha/beta/rc tags.
release = "2024.8.0b3"
release = "2024.8.0b4"
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@ -429,6 +429,7 @@ Contributors
- `DeadEnd (@DeadEnded) <https://github.com/DeadEnded>`__
- `Debashish Sahu (@debsahu) <https://github.com/debsahu>`__
- `declanshanaghy (@declanshanaghy) <https://github.com/declanshanaghy>`__
- `Ali Jafri (@deCodeIt) <https://github.com/deCodeIt>`__
- `Maximilian (@DeerMaximum) <https://github.com/DeerMaximum>`__
- `definitio (@definitio) <https://github.com/definitio>`__
- `deftdawg (@deftdawg) <https://github.com/deftdawg>`__
@ -1932,4 +1933,4 @@ Contributors
- `Christian Zufferey (@zuzu59) <https://github.com/zuzu59>`__
- `Zynth-dev (@Zynth-dev) <https://github.com/Zynth-dev>`__
*This page was last updated August 19, 2024.*
*This page was last updated August 21, 2024.*