From f39ceef59daa46f8519ed93f9d38250fc9fea4b6 Mon Sep 17 00:00:00 2001 From: BerlinJoker <40592241+BerlinJoker@users.noreply.github.com> Date: Wed, 11 Dec 2024 14:47:35 +0100 Subject: [PATCH 1/4] expanded description for "radius" (#4482) I originally understood the wording around "65535 = pill shaped widget (true circle..." in a way that setting radius to 65535 always gives you a circle, also for widgets that (obviously) have way smaller widths and heights. Working with it a bit I realised it's not that straightforward, and that setting a radius in line with what is set for width/height is the way to go anyway. So I decided to expand the description a bit. --- components/lvgl/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lvgl/index.rst b/components/lvgl/index.rst index eb8f246460..e2fb1fac36 100644 --- a/components/lvgl/index.rst +++ b/components/lvgl/index.rst @@ -325,7 +325,7 @@ You can adjust the appearance of widgets by changing their foreground, backgroun - **pad_right** (*Optional*, int16): Set the padding on the right, in pixels. - **pad_row** (*Optional*, int16): Set the padding between the rows of the children elements, in pixels. - **pad_column** (*Optional*, int16): Set the padding between the columns of the children elements, in pixels. -- **radius** (*Optional*, uint16): The radius to be used to form the widget's rounded corners. 0 = no radius (square corners); 65535 = pill shaped widget (true circle if it has same width and height). +- **radius** (*Optional*, uint16): The radius to be used to form the widget's rounded corners. 0 = no radius (square corners); 65535 (max) = pill shaped widget (true circle if it has same width and height, radius then should be set to half the width/height). - **shadow_color** (*Optional*, :ref:`color `): Color used to create a drop shadow under the widget. Defaults to ``0`` (black). - **shadow_ofs_x** (*Optional*, int16): Horizontal offset of the shadow, in pixels. Defaults to ``0``. - **shadow_ofs_y** (*Optional*, int16): Vertical offset of the shadow, in pixels. Defaults to ``0``. From e04ebdbc9ffff9b1fe8a0e6f71c6d839f426ab9b Mon Sep 17 00:00:00 2001 From: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Date: Mon, 16 Dec 2024 07:57:07 +1300 Subject: [PATCH 2/4] Bump version to 2024.12.0b2 --- Doxygen | 2 +- Makefile | 2 +- _static/version | 2 +- conf.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Doxygen b/Doxygen index 6ad8e2505a..0c8b7bbcff 100644 --- a/Doxygen +++ b/Doxygen @@ -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.12.0b1 +PROJECT_NUMBER = 2024.12.0b2 # 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 diff --git a/Makefile b/Makefile index fea05734f4..7fb2bcf437 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ ESPHOME_PATH = ../esphome -ESPHOME_REF = 2024.12.0b1 +ESPHOME_REF = 2024.12.0b2 PAGEFIND_VERSION=1.1.1 PAGEFIND=pagefind NET_PAGEFIND=../pagefindbin/pagefind diff --git a/_static/version b/_static/version index 0e03ef0e39..0b974b3c45 100644 --- a/_static/version +++ b/_static/version @@ -1 +1 @@ -2024.12.0b1 \ No newline at end of file +2024.12.0b2 \ No newline at end of file diff --git a/conf.py b/conf.py index 1b1dabfe26..ea10b6b46c 100644 --- a/conf.py +++ b/conf.py @@ -73,7 +73,7 @@ # The short X.Y version. version = "2024.12" # The full version, including alpha/beta/rc tags. -release = "2024.12.0b1" +release = "2024.12.0b2" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. From 326ebcb382985c311fbc652df17951966def213d Mon Sep 17 00:00:00 2001 From: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Date: Mon, 16 Dec 2024 08:05:06 +1300 Subject: [PATCH 3/4] Update changelog for 2024.12.0b2 --- changelog/2024.12.0.rst | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/changelog/2024.12.0.rst b/changelog/2024.12.0.rst index 4e98c3fb85..04d711999f 100644 --- a/changelog/2024.12.0.rst +++ b/changelog/2024.12.0.rst @@ -64,6 +64,15 @@ Breaking Changes - MQTT sensors handling of publishing NaN values :esphomepr:`7768` by :ghuser:`kbullet` (breaking-change) - Synchronise esp32 boards with platform version 51.03.07 :esphomepr:`7945` by :ghuser:`jesserockz` (breaking-change) +Beta Changes +^^^^^^^^^^^^ + +- [const] Add RMT CONF variables to const.py :esphomepr:`7953` by :ghuser:`swoboda1337` +- [sgp30] Set default update interval to 60s :esphomepr:`7952` by :ghuser:`jesserockz` (breaking-change) +- [dallas_temp] Move delay_microseconds_safe to iram :esphomepr:`7957` by :ghuser:`swoboda1337` +- [i2s_audio] Bugfix: Correctly set ring buffer size :esphomepr:`7959` by :ghuser:`kahrendt` +- [adc] Restore missing LIBRETINY code in a separated file :esphomepr:`7955` by :ghuser:`edwardtfn` + All changes ^^^^^^^^^^^ @@ -168,7 +177,11 @@ All changes - [lvgl] Add `on_change` event :esphomepr:`7939` by :ghuser:`clydebarrow` - Synchronise esp32 boards with platform version 51.03.07 :esphomepr:`7945` by :ghuser:`jesserockz` (breaking-change) - [i2c] Use correct macro to determine number of i2c peripherals for idf :esphomepr:`7947` by :ghuser:`jesserockz` - +- [const] Add RMT CONF variables to const.py :esphomepr:`7953` by :ghuser:`swoboda1337` +- [sgp30] Set default update interval to 60s :esphomepr:`7952` by :ghuser:`jesserockz` (breaking-change) +- [dallas_temp] Move delay_microseconds_safe to iram :esphomepr:`7957` by :ghuser:`swoboda1337` +- [i2s_audio] Bugfix: Correctly set ring buffer size :esphomepr:`7959` by :ghuser:`kahrendt` +- [adc] Restore missing LIBRETINY code in a separated file :esphomepr:`7955` by :ghuser:`edwardtfn` Past Changelogs --------------- From 53c97f782733c55dc500563719ebc1a7d9c70ac5 Mon Sep 17 00:00:00 2001 From: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Date: Mon, 16 Dec 2024 08:05:49 +1300 Subject: [PATCH 4/4] Update supporters for 2024.12.0b2 --- guides/supporters.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/supporters.rst b/guides/supporters.rst index a45bae94d6..92f9fb4cc1 100644 --- a/guides/supporters.rst +++ b/guides/supporters.rst @@ -2037,4 +2037,4 @@ Contributors - `Christian Zufferey (@zuzu59) `__ - `Zynth-dev (@Zynth-dev) `__ -*This page was last updated December 11, 2024.* +*This page was last updated December 16, 2024.*