You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,18 @@ This file is updated upon each release.
14
14
Changes since the last release can be found at <https://github.com/emilk/egui/compare/latest...HEAD> or by running the `scripts/generate_changelog.py` script.
15
15
16
16
17
+
## 0.32.1 - 2025-08-15 - Misc bug fixes
18
+
### ⭐ Added
19
+
* Add `ComboBox::popup_style`[#7360](https://github.com/emilk/egui/pull/7360) by [@lucasmerlin](https://github.com/lucasmerlin)
20
+
21
+
### 🐛 Fixed
22
+
* Fix glyph rendering: clamp coverage to [0, 1][#7415](https://github.com/emilk/egui/pull/7415) by [@emilk](https://github.com/emilk)
23
+
* Fix manual `Popup` not closing [#7383](https://github.com/emilk/egui/pull/7383) by [@lucasmerlin](https://github.com/lucasmerlin)
24
+
* Fix `WidgetText::Text` ignoring fallback font and overrides [#7361](https://github.com/emilk/egui/pull/7361) by [@lucasmerlin](https://github.com/lucasmerlin)
25
+
* Fix `override_text_color` priority [#7439](https://github.com/emilk/egui/pull/7439) by [@YgorSouza](https://github.com/YgorSouza)
26
+
* Fix debug-panic in ScrollArea if contents fit without scrolling [#7440](https://github.com/emilk/egui/pull/7440) by [@YgorSouza](https://github.com/YgorSouza)
27
+
28
+
17
29
## 0.32.0 - 2025-07-10 - Atoms, popups, and better SVG support
18
30
This is a big egui release, with several exciting new features!
Copy file name to clipboardExpand all lines: crates/ecolor/CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,10 @@ This file is updated upon each release.
6
6
Changes since the last release can be found at <https://github.com/emilk/egui/compare/latest...HEAD> or by running the `scripts/generate_changelog.py` script.
7
7
8
8
9
+
## 0.32.1 - 2025-08-15
10
+
Nothing new
11
+
12
+
9
13
## 0.32.0 - 2025-07-10
10
14
* Fix semi-transparent colors appearing too bright [#5824](https://github.com/emilk/egui/pull/5824) by [@emilk](https://github.com/emilk)
11
15
* Remove things that have been deprecated for over a year [#7099](https://github.com/emilk/egui/pull/7099) by [@emilk](https://github.com/emilk)
Copy file name to clipboardExpand all lines: crates/eframe/CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,11 @@ This file is updated upon each release.
7
7
Changes since the last release can be found at <https://github.com/emilk/egui/compare/latest...HEAD> or by running the `scripts/generate_changelog.py` script.
8
8
9
9
10
+
## 0.32.1 - 2025-08-15
11
+
* Enable wgpu default features in eframe / egui_wgpu default features [#7344](https://github.com/emilk/egui/pull/7344) by [@lucasmerlin](https://github.com/lucasmerlin)
12
+
* Request a redraw when the url change through the `popstate` event listener [#7403](https://github.com/emilk/egui/pull/7403) by [@irevoire](https://github.com/irevoire)
13
+
14
+
10
15
## 0.32.0 - 2025-07-10
11
16
### ⭐ Added
12
17
* Add pointer events and focus handling for apps run in a Shadow DOM [#5627](https://github.com/emilk/egui/pull/5627) by [@xxvvii](https://github.com/xxvvii)
Copy file name to clipboardExpand all lines: crates/egui-wgpu/CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,10 @@ This file is updated upon each release.
6
6
Changes since the last release can be found at <https://github.com/emilk/egui/compare/latest...HEAD> or by running the `scripts/generate_changelog.py` script.
7
7
8
8
9
+
## 0.32.1 - 2025-08-15
10
+
* Enable wgpu default features in eframe / egui_wgpu default features [#7344](https://github.com/emilk/egui/pull/7344) by [@lucasmerlin](https://github.com/lucasmerlin)
11
+
12
+
9
13
## 0.32.0 - 2025-07-10
10
14
* Update to wgpu 25 [#6744](https://github.com/emilk/egui/pull/6744) by [@torokati44](https://github.com/torokati44)
11
15
* Free textures after submitting queue instead of before with wgpu renderer on Web [#7291](https://github.com/emilk/egui/pull/7291) by [@Wumpf](https://github.com/Wumpf)
Copy file name to clipboardExpand all lines: crates/egui-winit/CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,10 @@ This file is updated upon each release.
5
5
Changes since the last release can be found at <https://github.com/emilk/egui/compare/latest...HEAD> or by running the `scripts/generate_changelog.py` script.
6
6
7
7
8
+
## 0.32.1 - 2025-08-15
9
+
* Update to winit 0.30.12 [#7420](https://github.com/emilk/egui/pull/7420) by [@emilk](https://github.com/emilk)
10
+
11
+
8
12
## 0.32.0 - 2025-07-10
9
13
* Mark all keys as released if the app loses focus [#5743](https://github.com/emilk/egui/pull/5743) by [@emilk](https://github.com/emilk)
10
14
* Fix text input on Android [#5759](https://github.com/emilk/egui/pull/5759) by [@StratusFearMe21](https://github.com/StratusFearMe21)
Copy file name to clipboardExpand all lines: crates/egui_extras/CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,10 @@ This file is updated upon each release.
5
5
Changes since the last release can be found at <https://github.com/emilk/egui/compare/latest...HEAD> or by running the `scripts/generate_changelog.py` script.
6
6
7
7
8
+
## 0.32.1 - 2025-08-15
9
+
Nothing new
10
+
11
+
8
12
## 0.32.0 - 2025-07-10 - Improved SVG support
9
13
### ⭐ Added
10
14
* Allow loading multi-MIME formats using the image_loader [#5769](https://github.com/emilk/egui/pull/5769) by [@MYDIH](https://github.com/MYDIH)
Copy file name to clipboardExpand all lines: crates/egui_glow/CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,10 @@ Changes since the last release can be found at <https://github.com/emilk/egui/co
6
6
7
7
8
8
9
+
## 0.32.1 - 2025-08-15
10
+
Nothing new
11
+
12
+
9
13
## 0.32.0 - 2025-07-10
10
14
* Fix text distortion on mobile devices/browsers with `glow` backend [#6893](https://github.com/emilk/egui/pull/6893) by [@wareya](https://github.com/wareya)
11
15
* Improve texture filtering by doing it in gamma space [#7311](https://github.com/emilk/egui/pull/7311) by [@emilk](https://github.com/emilk)
Copy file name to clipboardExpand all lines: crates/egui_kittest/CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,10 @@ This file is updated upon each release.
6
6
Changes since the last release can be found at <https://github.com/emilk/egui/compare/latest...HEAD> or by running the `scripts/generate_changelog.py` script.
7
7
8
8
9
+
## 0.32.1 - 2025-08-15
10
+
* Fix `UPDATE_SNAPSHOTS`: only update if we didn't pass the test [#7455](https://github.com/emilk/egui/pull/7455) by [@emilk](https://github.com/emilk)
11
+
12
+
9
13
## 0.32.0 - 2025-07-10
10
14
### ⭐ Added
11
15
* Add `ImageLoader::has_pending` and `wait_for_pending_images`[#7030](https://github.com/emilk/egui/pull/7030) by [@lucasmerlin](https://github.com/lucasmerlin)
Copy file name to clipboardExpand all lines: crates/epaint/CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,11 @@ This file is updated upon each release.
5
5
Changes since the last release can be found at <https://github.com/emilk/egui/compare/latest...HEAD> or by running the `scripts/generate_changelog.py` script.
6
6
7
7
8
+
## 0.32.1 - 2025-08-15
9
+
* Fix multi-line `TextShape` rotation [#7404](https://github.com/emilk/egui/pull/7404) by [@afishhh](https://github.com/afishhh)
10
+
* Fix glyph rendering: clamp coverage to [0, 1][#7415](https://github.com/emilk/egui/pull/7415) by [@emilk](https://github.com/emilk)
11
+
12
+
8
13
## 0.32.0 - 2025-07-10
9
14
### ⭐ Added
10
15
* Impl AsRef<[u8]> for FontData [#5757](https://github.com/emilk/egui/pull/5757) by [@StratusFearMe21](https://github.com/StratusFearMe21)
Copy file name to clipboardExpand all lines: crates/epaint_default_fonts/CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,10 @@ This file is updated upon each release.
5
5
Changes since the last release can be found at <https://github.com/emilk/egui/compare/latest...HEAD> or by running the `scripts/generate_changelog.py` script.
0 commit comments