Skip to content

Commit c0f4167

Browse files
authored
Merge pull request #4504 from esphome/bump-2024.12.0b2
2024.12.0b2
2 parents f6822e7 + 53c97f7 commit c0f4167

File tree

7 files changed

+20
-7
lines changed

7 files changed

+20
-7
lines changed

Doxygen

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "ESPHome"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 2024.12.0b1
41+
PROJECT_NUMBER = 2024.12.0b2
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ESPHOME_PATH = ../esphome
2-
ESPHOME_REF = 2024.12.0b1
2+
ESPHOME_REF = 2024.12.0b2
33
PAGEFIND_VERSION=1.1.1
44
PAGEFIND=pagefind
55
NET_PAGEFIND=../pagefindbin/pagefind

_static/version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024.12.0b1
1+
2024.12.0b2

changelog/2024.12.0.rst

+14-1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,15 @@ Breaking Changes
6464
- MQTT sensors handling of publishing NaN values :esphomepr:`7768` by :ghuser:`kbullet` (breaking-change)
6565
- Synchronise esp32 boards with platform version 51.03.07 :esphomepr:`7945` by :ghuser:`jesserockz` (breaking-change)
6666

67+
Beta Changes
68+
^^^^^^^^^^^^
69+
70+
- [const] Add RMT CONF variables to const.py :esphomepr:`7953` by :ghuser:`swoboda1337`
71+
- [sgp30] Set default update interval to 60s :esphomepr:`7952` by :ghuser:`jesserockz` (breaking-change)
72+
- [dallas_temp] Move delay_microseconds_safe to iram :esphomepr:`7957` by :ghuser:`swoboda1337`
73+
- [i2s_audio] Bugfix: Correctly set ring buffer size :esphomepr:`7959` by :ghuser:`kahrendt`
74+
- [adc] Restore missing LIBRETINY code in a separated file :esphomepr:`7955` by :ghuser:`edwardtfn`
75+
6776
All changes
6877
^^^^^^^^^^^
6978

@@ -168,7 +177,11 @@ All changes
168177
- [lvgl] Add `on_change` event :esphomepr:`7939` by :ghuser:`clydebarrow`
169178
- Synchronise esp32 boards with platform version 51.03.07 :esphomepr:`7945` by :ghuser:`jesserockz` (breaking-change)
170179
- [i2c] Use correct macro to determine number of i2c peripherals for idf :esphomepr:`7947` by :ghuser:`jesserockz`
171-
180+
- [const] Add RMT CONF variables to const.py :esphomepr:`7953` by :ghuser:`swoboda1337`
181+
- [sgp30] Set default update interval to 60s :esphomepr:`7952` by :ghuser:`jesserockz` (breaking-change)
182+
- [dallas_temp] Move delay_microseconds_safe to iram :esphomepr:`7957` by :ghuser:`swoboda1337`
183+
- [i2s_audio] Bugfix: Correctly set ring buffer size :esphomepr:`7959` by :ghuser:`kahrendt`
184+
- [adc] Restore missing LIBRETINY code in a separated file :esphomepr:`7955` by :ghuser:`edwardtfn`
172185

173186
Past Changelogs
174187
---------------

components/lvgl/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ You can adjust the appearance of widgets by changing their foreground, backgroun
325325
- **pad_right** (*Optional*, int16): Set the padding on the right, in pixels.
326326
- **pad_row** (*Optional*, int16): Set the padding between the rows of the children elements, in pixels.
327327
- **pad_column** (*Optional*, int16): Set the padding between the columns of the children elements, in pixels.
328-
- **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).
328+
- **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).
329329
- **shadow_color** (*Optional*, :ref:`color <lvgl-color>`): Color used to create a drop shadow under the widget. Defaults to ``0`` (black).
330330
- **shadow_ofs_x** (*Optional*, int16): Horizontal offset of the shadow, in pixels. Defaults to ``0``.
331331
- **shadow_ofs_y** (*Optional*, int16): Vertical offset of the shadow, in pixels. Defaults to ``0``.

conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
# The short X.Y version.
7474
version = "2024.12"
7575
# The full version, including alpha/beta/rc tags.
76-
release = "2024.12.0b1"
76+
release = "2024.12.0b2"
7777

7878
# The language for content autogenerated by Sphinx. Refer to documentation
7979
# for a list of supported languages.

guides/supporters.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -2037,4 +2037,4 @@ Contributors
20372037
- `Christian Zufferey (@zuzu59) <https://github.com/zuzu59>`__
20382038
- `Zynth-dev (@Zynth-dev) <https://github.com/Zynth-dev>`__
20392039

2040-
*This page was last updated December 11, 2024.*
2040+
*This page was last updated December 16, 2024.*

0 commit comments

Comments
 (0)