Skip to content

Commit 0f59453

Browse files
authored
Merge pull request #4772 from esphome/bump-2025.3.2
2025.3.2
2 parents a51314d + 9468ddc commit 0f59453

File tree

7 files changed

+21
-8
lines changed

7 files changed

+21
-8
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 = 2025.3.1
41+
PROJECT_NUMBER = 2025.3.2
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 = 2025.3.1
2+
ESPHOME_REF = 2025.3.2
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-
2025.3.1
1+
2025.3.2

changelog/2025.3.0.rst

+10
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,16 @@ Release 2025.3.1 - March 22
2929
- [lvgl] Set correct buffer size :esphomepr:`8442` by :ghuser:`clydebarrow`
3030
- [lvgl] Ensure non-zero screen dimensions during init :esphomepr:`8444` by :ghuser:`clydebarrow`
3131

32+
Release 2025.3.2 - March 25
33+
---------------------------
34+
35+
- [gt911][cst226][ektf2232] Swap x and y calibration values :esphomepr:`8450` by :ghuser:`clydebarrow`
36+
- [font] More robust handling of fixed font sizes. :esphomepr:`8443` by :ghuser:`clydebarrow`
37+
- fix 1bpp rendering :esphomepr:`8463` by :ghuser:`ssieb`
38+
- [media_player] Don't reset enqueue command :esphomepr:`8465` by :ghuser:`kahrendt`
39+
- [speaker] Bugfix: Fix rapidly adding items to playlist :esphomepr:`8466` by :ghuser:`kahrendt`
40+
- [ld2450] Fix bluetooth state not reported correctly :esphomepr:`8458` by :ghuser:`kbx81`
41+
3242
Full list of changes
3343
--------------------
3444

components/font.rst

+4-3
Original file line numberDiff line numberDiff line change
@@ -131,10 +131,11 @@ Configuration variables:
131131

132132
- **id** (**Required**, :ref:`config-id`): The ID with which you will be able to reference the font later
133133
in your display code.
134-
- **size** (*Optional*, int): The size of the font in pt (not pixel!).
135-
If you want to use the same font in different sizes, create two font objects. Note: *size* is ignored
136-
by bitmap fonts. Defaults to ``20``.
134+
- **size** (*Optional*, int): The desired size of the font. This will be the size (height) of the font in pixels
135+
when rendered. If you want to use the same font in different sizes, create two font objects.
136+
Defaults to ``20`` for scalable fonts and the first available size for bitmap fonts. Requesting a size that is not available in a bitmap-only font will result in an error.
137137
- **bpp** (*Optional*, int): The bit depth of the rendered font from OpenType/TrueType, for anti-aliasing. Can be ``1``, ``2``, ``4``, ``8``. Defaults to ``1``.
138+
If set to 1 and the font has a bitmap version available at the requested size, that will be used. Otherwise the font will be rendered from the vector representation.
138139
- **glyphsets** (*Optional*, list): A list of glyphsets you plan to use. Defaults to
139140
``GF_Latin_Kernel``, which contains the basic characters and necessary punctuation and symbols for
140141
the English language. ``GF_Latin_Core`` is a more extended set that includes glyphs for the

conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
# The short X.Y version.
7575
version = "2025.3"
7676
# The full version, including alpha/beta/rc tags.
77-
release = "2025.3.1"
77+
release = "2025.3.2"
7878

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

guides/supporters.rst

+3-1
Original file line numberDiff line numberDiff line change
@@ -991,6 +991,7 @@ Contributors
991991
- `joseph douce (@josephdouce) <https://github.com/josephdouce>`__
992992
- `JosephTang (@JosephTang) <https://github.com/JosephTang>`__
993993
- `Joshua Baran (@joshbaran) <https://github.com/joshbaran>`__
994+
- `Joshua M. Boniface (@joshuaboniface) <https://github.com/joshuaboniface>`__
994995
- `Joshua Spence (@joshuaspence) <https://github.com/joshuaspence>`__
995996
- `joskfg (@joskfg) <https://github.com/joskfg>`__
996997
- `Joscha Wagner (@jowgn) <https://github.com/jowgn>`__
@@ -1265,6 +1266,7 @@ Contributors
12651266
- `megabitdragon (@megabitdragon) <https://github.com/megabitdragon>`__
12661267
- `MeIchthys (@meichthys) <https://github.com/meichthys>`__
12671268
- `meijerwynand (@meijerwynand) <https://github.com/meijerwynand>`__
1269+
- `Meilily (@meilily) <https://github.com/meilily>`__
12681270
- `Marco (@Melkor82) <https://github.com/Melkor82>`__
12691271
- `Melopero (@melopero) <https://github.com/melopero>`__
12701272
- `melyux (@melyux) <https://github.com/melyux>`__
@@ -2104,4 +2106,4 @@ Contributors
21042106
- `Christian Zufferey (@zuzu59) <https://github.com/zuzu59>`__
21052107
- `Zynth-dev (@Zynth-dev) <https://github.com/Zynth-dev>`__
21062108

2107-
*This page was last updated March 22, 2025.*
2109+
*This page was last updated March 25, 2025.*

0 commit comments

Comments
 (0)