Skip to content

Commit 159ccb2

Browse files
committedMar 5, 2025
Release 0.31.1 - text_edit and kittest fixes
1 parent e1f5d68 commit 159ccb2

File tree

12 files changed

+72
-28
lines changed

12 files changed

+72
-28
lines changed
 

‎CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ This file is updated upon each release.
1414
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.
1515

1616

17+
## 0.31.1 - 2025-03-05
18+
* Fix sizing bug in `TextEdit::singleline` [#5640](https://github.com/emilk/egui/pull/5640) by [@IaVashik](https://github.com/IaVashik)
19+
* Fix panic when rendering thin textured rectangles [#5692](https://github.com/emilk/egui/pull/5692) by [@PPakalns](https://github.com/PPakalns)
20+
21+
1722
## 0.31.0 - 2025-02-04 - Scene container, improved rendering quality
1823

1924
### Highlights ✨

‎Cargo.lock

+15-15
Original file line numberDiff line numberDiff line change
@@ -1197,7 +1197,7 @@ checksum = "f25c0e292a7ca6d6498557ff1df68f32c99850012b6ea401cf8daf771f22ff53"
11971197

11981198
[[package]]
11991199
name = "ecolor"
1200-
version = "0.31.0"
1200+
version = "0.31.1"
12011201
dependencies = [
12021202
"bytemuck",
12031203
"cint",
@@ -1209,7 +1209,7 @@ dependencies = [
12091209

12101210
[[package]]
12111211
name = "eframe"
1212-
version = "0.31.0"
1212+
version = "0.31.1"
12131213
dependencies = [
12141214
"ahash",
12151215
"bytemuck",
@@ -1249,7 +1249,7 @@ dependencies = [
12491249

12501250
[[package]]
12511251
name = "egui"
1252-
version = "0.31.0"
1252+
version = "0.31.1"
12531253
dependencies = [
12541254
"accesskit",
12551255
"ahash",
@@ -1267,7 +1267,7 @@ dependencies = [
12671267

12681268
[[package]]
12691269
name = "egui-wgpu"
1270-
version = "0.31.0"
1270+
version = "0.31.1"
12711271
dependencies = [
12721272
"ahash",
12731273
"bytemuck",
@@ -1285,7 +1285,7 @@ dependencies = [
12851285

12861286
[[package]]
12871287
name = "egui-winit"
1288-
version = "0.31.0"
1288+
version = "0.31.1"
12891289
dependencies = [
12901290
"accesskit_winit",
12911291
"ahash",
@@ -1306,7 +1306,7 @@ dependencies = [
13061306

13071307
[[package]]
13081308
name = "egui_demo_app"
1309-
version = "0.31.0"
1309+
version = "0.31.1"
13101310
dependencies = [
13111311
"bytemuck",
13121312
"chrono",
@@ -1333,7 +1333,7 @@ dependencies = [
13331333

13341334
[[package]]
13351335
name = "egui_demo_lib"
1336-
version = "0.31.0"
1336+
version = "0.31.1"
13371337
dependencies = [
13381338
"chrono",
13391339
"criterion",
@@ -1347,7 +1347,7 @@ dependencies = [
13471347

13481348
[[package]]
13491349
name = "egui_extras"
1350-
version = "0.31.0"
1350+
version = "0.31.1"
13511351
dependencies = [
13521352
"ahash",
13531353
"chrono",
@@ -1366,7 +1366,7 @@ dependencies = [
13661366

13671367
[[package]]
13681368
name = "egui_glow"
1369-
version = "0.31.0"
1369+
version = "0.31.1"
13701370
dependencies = [
13711371
"ahash",
13721372
"bytemuck",
@@ -1386,7 +1386,7 @@ dependencies = [
13861386

13871387
[[package]]
13881388
name = "egui_kittest"
1389-
version = "0.31.0"
1389+
version = "0.31.1"
13901390
dependencies = [
13911391
"dify",
13921392
"document-features",
@@ -1422,7 +1422,7 @@ checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
14221422

14231423
[[package]]
14241424
name = "emath"
1425-
version = "0.31.0"
1425+
version = "0.31.1"
14261426
dependencies = [
14271427
"bytemuck",
14281428
"document-features",
@@ -1513,7 +1513,7 @@ dependencies = [
15131513

15141514
[[package]]
15151515
name = "epaint"
1516-
version = "0.31.0"
1516+
version = "0.31.1"
15171517
dependencies = [
15181518
"ab_glyph",
15191519
"ahash",
@@ -1534,7 +1534,7 @@ dependencies = [
15341534

15351535
[[package]]
15361536
name = "epaint_default_fonts"
1537-
version = "0.31.0"
1537+
version = "0.31.1"
15381538

15391539
[[package]]
15401540
name = "equivalent"
@@ -3100,7 +3100,7 @@ checksum = "2f3a9f18d041e6d0e102a0a46750538147e5e8992d3b4873aaafee2520b00ce3"
31003100

31013101
[[package]]
31023102
name = "popups"
3103-
version = "0.31.0"
3103+
version = "0.31.1"
31043104
dependencies = [
31053105
"eframe",
31063106
"env_logger",
@@ -5106,7 +5106,7 @@ checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9"
51065106

51075107
[[package]]
51085108
name = "xtask"
5109-
version = "0.31.0"
5109+
version = "0.31.1"
51105110

51115111
[[package]]
51125112
name = "yaml-rust"

‎Cargo.toml

+13-13
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ members = [
2424
edition = "2021"
2525
license = "MIT OR Apache-2.0"
2626
rust-version = "1.81"
27-
version = "0.31.0"
27+
version = "0.31.1"
2828

2929

3030
[profile.release]
@@ -55,18 +55,18 @@ opt-level = 2
5555

5656

5757
[workspace.dependencies]
58-
emath = { version = "0.31.0", path = "crates/emath", default-features = false }
59-
ecolor = { version = "0.31.0", path = "crates/ecolor", default-features = false }
60-
epaint = { version = "0.31.0", path = "crates/epaint", default-features = false }
61-
epaint_default_fonts = { version = "0.31.0", path = "crates/epaint_default_fonts" }
62-
egui = { version = "0.31.0", path = "crates/egui", default-features = false }
63-
egui-winit = { version = "0.31.0", path = "crates/egui-winit", default-features = false }
64-
egui_extras = { version = "0.31.0", path = "crates/egui_extras", default-features = false }
65-
egui-wgpu = { version = "0.31.0", path = "crates/egui-wgpu", default-features = false }
66-
egui_demo_lib = { version = "0.31.0", path = "crates/egui_demo_lib", default-features = false }
67-
egui_glow = { version = "0.31.0", path = "crates/egui_glow", default-features = false }
68-
egui_kittest = { version = "0.31.0", path = "crates/egui_kittest", default-features = false }
69-
eframe = { version = "0.31.0", path = "crates/eframe", default-features = false }
58+
emath = { version = "0.31.1", path = "crates/emath", default-features = false }
59+
ecolor = { version = "0.31.1", path = "crates/ecolor", default-features = false }
60+
epaint = { version = "0.31.1", path = "crates/epaint", default-features = false }
61+
epaint_default_fonts = { version = "0.31.1", path = "crates/epaint_default_fonts" }
62+
egui = { version = "0.31.1", path = "crates/egui", default-features = false }
63+
egui-winit = { version = "0.31.1", path = "crates/egui-winit", default-features = false }
64+
egui_extras = { version = "0.31.1", path = "crates/egui_extras", default-features = false }
65+
egui-wgpu = { version = "0.31.1", path = "crates/egui-wgpu", default-features = false }
66+
egui_demo_lib = { version = "0.31.1", path = "crates/egui_demo_lib", default-features = false }
67+
egui_glow = { version = "0.31.1", path = "crates/egui_glow", default-features = false }
68+
egui_kittest = { version = "0.31.1", path = "crates/egui_kittest", default-features = false }
69+
eframe = { version = "0.31.1", path = "crates/eframe", default-features = false }
7070

7171
ahash = { version = "0.8.11", default-features = false, features = [
7272
"no-rng", # we don't need DOS-protection, so we let users opt-in to it instead

‎crates/ecolor/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ This file is updated upon each release.
66
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.
77

88

9+
## 0.31.1 - 2025-03-05
10+
Nothing new
11+
12+
913
## 0.31.0 - 2025-02-04
1014
* Add `Color32::CYAN` and `Color32::MAGENTA` [#5663](https://github.com/emilk/egui/pull/5663) by [@juancampa](https://github.com/juancampa)
1115

‎crates/eframe/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ This file is updated upon each release.
77
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.
88

99

10+
## 0.31.1 - 2025-03-05
11+
Nothing new
12+
13+
1014
## 0.31.0 - 2025-02-04
1115
* Web: Fix incorrect scale when moving to screen with new DPI [#5631](https://github.com/emilk/egui/pull/5631) by [@emilk](https://github.com/emilk)
1216
* Re-enable IME support on Linux [#5198](https://github.com/emilk/egui/pull/5198) by [@YgorSouza](https://github.com/YgorSouza)

‎crates/egui-wgpu/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ This file is updated upon each release.
66
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.
77

88

9+
## 0.31.1 - 2025-03-05
10+
Nothing new
11+
12+
913
## 0.31.0 - 2025-02-04
1014
* Upgrade to wgpu 24 [#5610](https://github.com/emilk/egui/pull/5610) by [@torokati44](https://github.com/torokati44)
1115
* Extend `WgpuSetup`, `egui_kittest` now prefers software rasterizers for testing [#5506](https://github.com/emilk/egui/pull/5506) by [@Wumpf](https://github.com/Wumpf)

‎crates/egui-winit/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ This file is updated upon each release.
55
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.
66

77

8+
## 0.31.1 - 2025-03-05
9+
Nothing new
10+
11+
812
## 0.31.0 - 2025-02-04
913
* Re-enable IME support on Linux [#5198](https://github.com/emilk/egui/pull/5198) by [@YgorSouza](https://github.com/YgorSouza)
1014
* Update to winit 0.30.7 [#5516](https://github.com/emilk/egui/pull/5516) by [@emilk](https://github.com/emilk)

‎crates/egui_extras/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ This file is updated upon each release.
55
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.
66

77

8+
## 0.31.1 - 2025-03-05
9+
* Fix image_loader for animated image types [#5688](https://github.com/emilk/egui/pull/5688) by [@BSteffaniak](https://github.com/BSteffaniak)
10+
11+
812
## 0.31.0 - 2025-02-04
913
* Animated WebP support [#5470](https://github.com/emilk/egui/pull/5470), [#5586](https://github.com/emilk/egui/pull/5586) by [@Aely0](https://github.com/Aely0)
1014
* Make image extension check case-insensitive [#5501](https://github.com/emilk/egui/pull/5501) by [@RyanBluth](https://github.com/RyanBluth)

‎crates/egui_glow/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ Changes since the last release can be found at <https://github.com/emilk/egui/co
66

77

88

9+
## 0.31.1 - 2025-03-05
10+
Nothing new
11+
12+
913
## 0.31.0 - 2025-02-04
1014
Nothing new
1115

‎crates/egui_kittest/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ This file is updated upon each release.
66
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.
77

88

9+
## 0.31.1 - 2025-03-05
10+
* Fix modifiers not working in kittest [#5693](https://github.com/emilk/egui/pull/5693) by [@lucasmerlin](https://github.com/lucasmerlin)
11+
* Enable all features for egui_kittest docs [#5711](https://github.com/emilk/egui/pull/5711) by [@YgorSouza](https://github.com/YgorSouza)
12+
* Run a frame per queued event in egui_kittest [#5704](https://github.com/emilk/egui/pull/5704) by [@lucasmerlin](https://github.com/lucasmerlin)
13+
* Add guidelines for image comparison tests [#5714](https://github.com/emilk/egui/pull/5714) by [@Wumpf](https://github.com/Wumpf)
14+
15+
916
## 0.31.0 - 2025-02-04
1017
### ⭐ Added
1118
* Add `Harness::new_eframe` and `TestRenderer` trait [#5539](https://github.com/emilk/egui/pull/5539) by [@lucasmerlin](https://github.com/lucasmerlin)

‎crates/epaint/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ This file is updated upon each release.
55
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.
66

77

8+
## 0.31.1 - 2025-03-05
9+
* Fix panic when rendering thin textured rectangles [#5692](https://github.com/emilk/egui/pull/5692) by [@PPakalns](https://github.com/PPakalns)
10+
11+
812
## 0.31.0 - 2025-02-04
913
### ⭐ Added
1014
* Improve tessellation quality [#5669](https://github.com/emilk/egui/pull/5669) by [@emilk](https://github.com/emilk)

‎crates/epaint_default_fonts/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ This file is updated upon each release.
55
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.
66

77

8+
## 0.31.1 - 2025-03-05
9+
Nothing new
10+
11+
812
## 0.31.0 - 2025-02-04
913
* Update `egui_default_fonts` license [#5361](https://github.com/emilk/egui/pull/5361) by [@pombredanne](https://github.com/pombredanne)
1014

0 commit comments

Comments
 (0)
Please sign in to comment.