Release 0.31.1 - text_edit and kittest fixes

This commit is contained in:
Lucas Meurer 2025-03-05 08:28:25 +01:00
parent e1f5d68995
commit 159ccb2fef
12 changed files with 72 additions and 28 deletions

View File

@ -14,6 +14,11 @@ This file is updated upon each release.
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.31.1 - 2025-03-05
* Fix sizing bug in `TextEdit::singleline` [#5640](https://github.com/emilk/egui/pull/5640) by [@IaVashik](https://github.com/IaVashik)
* Fix panic when rendering thin textured rectangles [#5692](https://github.com/emilk/egui/pull/5692) by [@PPakalns](https://github.com/PPakalns)
## 0.31.0 - 2025-02-04 - Scene container, improved rendering quality
### Highlights ✨

View File

@ -1197,7 +1197,7 @@ checksum = "f25c0e292a7ca6d6498557ff1df68f32c99850012b6ea401cf8daf771f22ff53"
[[package]]
name = "ecolor"
version = "0.31.0"
version = "0.31.1"
dependencies = [
"bytemuck",
"cint",
@ -1209,7 +1209,7 @@ dependencies = [
[[package]]
name = "eframe"
version = "0.31.0"
version = "0.31.1"
dependencies = [
"ahash",
"bytemuck",
@ -1249,7 +1249,7 @@ dependencies = [
[[package]]
name = "egui"
version = "0.31.0"
version = "0.31.1"
dependencies = [
"accesskit",
"ahash",
@ -1267,7 +1267,7 @@ dependencies = [
[[package]]
name = "egui-wgpu"
version = "0.31.0"
version = "0.31.1"
dependencies = [
"ahash",
"bytemuck",
@ -1285,7 +1285,7 @@ dependencies = [
[[package]]
name = "egui-winit"
version = "0.31.0"
version = "0.31.1"
dependencies = [
"accesskit_winit",
"ahash",
@ -1306,7 +1306,7 @@ dependencies = [
[[package]]
name = "egui_demo_app"
version = "0.31.0"
version = "0.31.1"
dependencies = [
"bytemuck",
"chrono",
@ -1333,7 +1333,7 @@ dependencies = [
[[package]]
name = "egui_demo_lib"
version = "0.31.0"
version = "0.31.1"
dependencies = [
"chrono",
"criterion",
@ -1347,7 +1347,7 @@ dependencies = [
[[package]]
name = "egui_extras"
version = "0.31.0"
version = "0.31.1"
dependencies = [
"ahash",
"chrono",
@ -1366,7 +1366,7 @@ dependencies = [
[[package]]
name = "egui_glow"
version = "0.31.0"
version = "0.31.1"
dependencies = [
"ahash",
"bytemuck",
@ -1386,7 +1386,7 @@ dependencies = [
[[package]]
name = "egui_kittest"
version = "0.31.0"
version = "0.31.1"
dependencies = [
"dify",
"document-features",
@ -1422,7 +1422,7 @@ checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
[[package]]
name = "emath"
version = "0.31.0"
version = "0.31.1"
dependencies = [
"bytemuck",
"document-features",
@ -1513,7 +1513,7 @@ dependencies = [
[[package]]
name = "epaint"
version = "0.31.0"
version = "0.31.1"
dependencies = [
"ab_glyph",
"ahash",
@ -1534,7 +1534,7 @@ dependencies = [
[[package]]
name = "epaint_default_fonts"
version = "0.31.0"
version = "0.31.1"
[[package]]
name = "equivalent"
@ -3100,7 +3100,7 @@ checksum = "2f3a9f18d041e6d0e102a0a46750538147e5e8992d3b4873aaafee2520b00ce3"
[[package]]
name = "popups"
version = "0.31.0"
version = "0.31.1"
dependencies = [
"eframe",
"env_logger",
@ -5106,7 +5106,7 @@ checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9"
[[package]]
name = "xtask"
version = "0.31.0"
version = "0.31.1"
[[package]]
name = "yaml-rust"

View File

@ -24,7 +24,7 @@ members = [
edition = "2021"
license = "MIT OR Apache-2.0"
rust-version = "1.81"
version = "0.31.0"
version = "0.31.1"
[profile.release]
@ -55,18 +55,18 @@ opt-level = 2
[workspace.dependencies]
emath = { version = "0.31.0", path = "crates/emath", default-features = false }
ecolor = { version = "0.31.0", path = "crates/ecolor", default-features = false }
epaint = { version = "0.31.0", path = "crates/epaint", default-features = false }
epaint_default_fonts = { version = "0.31.0", path = "crates/epaint_default_fonts" }
egui = { version = "0.31.0", path = "crates/egui", default-features = false }
egui-winit = { version = "0.31.0", path = "crates/egui-winit", default-features = false }
egui_extras = { version = "0.31.0", path = "crates/egui_extras", default-features = false }
egui-wgpu = { version = "0.31.0", path = "crates/egui-wgpu", default-features = false }
egui_demo_lib = { version = "0.31.0", path = "crates/egui_demo_lib", default-features = false }
egui_glow = { version = "0.31.0", path = "crates/egui_glow", default-features = false }
egui_kittest = { version = "0.31.0", path = "crates/egui_kittest", default-features = false }
eframe = { version = "0.31.0", path = "crates/eframe", default-features = false }
emath = { version = "0.31.1", path = "crates/emath", default-features = false }
ecolor = { version = "0.31.1", path = "crates/ecolor", default-features = false }
epaint = { version = "0.31.1", path = "crates/epaint", default-features = false }
epaint_default_fonts = { version = "0.31.1", path = "crates/epaint_default_fonts" }
egui = { version = "0.31.1", path = "crates/egui", default-features = false }
egui-winit = { version = "0.31.1", path = "crates/egui-winit", default-features = false }
egui_extras = { version = "0.31.1", path = "crates/egui_extras", default-features = false }
egui-wgpu = { version = "0.31.1", path = "crates/egui-wgpu", default-features = false }
egui_demo_lib = { version = "0.31.1", path = "crates/egui_demo_lib", default-features = false }
egui_glow = { version = "0.31.1", path = "crates/egui_glow", default-features = false }
egui_kittest = { version = "0.31.1", path = "crates/egui_kittest", default-features = false }
eframe = { version = "0.31.1", path = "crates/eframe", default-features = false }
ahash = { version = "0.8.11", default-features = false, features = [
"no-rng", # we don't need DOS-protection, so we let users opt-in to it instead

View File

@ -6,6 +6,10 @@ This file is updated upon each release.
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.31.1 - 2025-03-05
Nothing new
## 0.31.0 - 2025-02-04
* Add `Color32::CYAN` and `Color32::MAGENTA` [#5663](https://github.com/emilk/egui/pull/5663) by [@juancampa](https://github.com/juancampa)

View File

@ -7,6 +7,10 @@ This file is updated upon each release.
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.31.1 - 2025-03-05
Nothing new
## 0.31.0 - 2025-02-04
* 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)
* Re-enable IME support on Linux [#5198](https://github.com/emilk/egui/pull/5198) by [@YgorSouza](https://github.com/YgorSouza)

View File

@ -6,6 +6,10 @@ This file is updated upon each release.
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.31.1 - 2025-03-05
Nothing new
## 0.31.0 - 2025-02-04
* Upgrade to wgpu 24 [#5610](https://github.com/emilk/egui/pull/5610) by [@torokati44](https://github.com/torokati44)
* Extend `WgpuSetup`, `egui_kittest` now prefers software rasterizers for testing [#5506](https://github.com/emilk/egui/pull/5506) by [@Wumpf](https://github.com/Wumpf)

View File

@ -5,6 +5,10 @@ This file is updated upon each release.
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.31.1 - 2025-03-05
Nothing new
## 0.31.0 - 2025-02-04
* Re-enable IME support on Linux [#5198](https://github.com/emilk/egui/pull/5198) by [@YgorSouza](https://github.com/YgorSouza)
* Update to winit 0.30.7 [#5516](https://github.com/emilk/egui/pull/5516) by [@emilk](https://github.com/emilk)

View File

@ -5,6 +5,10 @@ This file is updated upon each release.
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.31.1 - 2025-03-05
* Fix image_loader for animated image types [#5688](https://github.com/emilk/egui/pull/5688) by [@BSteffaniak](https://github.com/BSteffaniak)
## 0.31.0 - 2025-02-04
* 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)
* Make image extension check case-insensitive [#5501](https://github.com/emilk/egui/pull/5501) by [@RyanBluth](https://github.com/RyanBluth)

View File

@ -6,6 +6,10 @@ Changes since the last release can be found at <https://github.com/emilk/egui/co
## 0.31.1 - 2025-03-05
Nothing new
## 0.31.0 - 2025-02-04
Nothing new

View File

@ -6,6 +6,13 @@ This file is updated upon each release.
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.31.1 - 2025-03-05
* Fix modifiers not working in kittest [#5693](https://github.com/emilk/egui/pull/5693) by [@lucasmerlin](https://github.com/lucasmerlin)
* Enable all features for egui_kittest docs [#5711](https://github.com/emilk/egui/pull/5711) by [@YgorSouza](https://github.com/YgorSouza)
* Run a frame per queued event in egui_kittest [#5704](https://github.com/emilk/egui/pull/5704) by [@lucasmerlin](https://github.com/lucasmerlin)
* Add guidelines for image comparison tests [#5714](https://github.com/emilk/egui/pull/5714) by [@Wumpf](https://github.com/Wumpf)
## 0.31.0 - 2025-02-04
### ⭐ Added
* Add `Harness::new_eframe` and `TestRenderer` trait [#5539](https://github.com/emilk/egui/pull/5539) by [@lucasmerlin](https://github.com/lucasmerlin)

View File

@ -5,6 +5,10 @@ This file is updated upon each release.
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.31.1 - 2025-03-05
* Fix panic when rendering thin textured rectangles [#5692](https://github.com/emilk/egui/pull/5692) by [@PPakalns](https://github.com/PPakalns)
## 0.31.0 - 2025-02-04
### ⭐ Added
* Improve tessellation quality [#5669](https://github.com/emilk/egui/pull/5669) by [@emilk](https://github.com/emilk)

View File

@ -5,6 +5,10 @@ This file is updated upon each release.
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.31.1 - 2025-03-05
Nothing new
## 0.31.0 - 2025-02-04
* Update `egui_default_fonts` license [#5361](https://github.com/emilk/egui/pull/5361) by [@pombredanne](https://github.com/pombredanne)