From 159ccb2fefc84d97677653c33fd776b480d569b0 Mon Sep 17 00:00:00 2001 From: Lucas Meurer Date: Wed, 5 Mar 2025 08:28:25 +0100 Subject: [PATCH] Release 0.31.1 - text_edit and kittest fixes --- CHANGELOG.md | 5 ++++ Cargo.lock | 30 ++++++++++++------------ Cargo.toml | 26 ++++++++++---------- crates/ecolor/CHANGELOG.md | 4 ++++ crates/eframe/CHANGELOG.md | 4 ++++ crates/egui-wgpu/CHANGELOG.md | 4 ++++ crates/egui-winit/CHANGELOG.md | 4 ++++ crates/egui_extras/CHANGELOG.md | 4 ++++ crates/egui_glow/CHANGELOG.md | 4 ++++ crates/egui_kittest/CHANGELOG.md | 7 ++++++ crates/epaint/CHANGELOG.md | 4 ++++ crates/epaint_default_fonts/CHANGELOG.md | 4 ++++ 12 files changed, 72 insertions(+), 28 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b61c6398..7ef67912 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,11 @@ This file is updated upon each release. Changes since the last release can be found at 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 ✨ diff --git a/Cargo.lock b/Cargo.lock index c320169c..3a25dcff 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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" diff --git a/Cargo.toml b/Cargo.toml index 3934c44b..3e4449cd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 diff --git a/crates/ecolor/CHANGELOG.md b/crates/ecolor/CHANGELOG.md index 61cfce61..88d510db 100644 --- a/crates/ecolor/CHANGELOG.md +++ b/crates/ecolor/CHANGELOG.md @@ -6,6 +6,10 @@ This file is updated upon each release. Changes since the last release can be found at 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) diff --git a/crates/eframe/CHANGELOG.md b/crates/eframe/CHANGELOG.md index 967b69e3..df169728 100644 --- a/crates/eframe/CHANGELOG.md +++ b/crates/eframe/CHANGELOG.md @@ -7,6 +7,10 @@ This file is updated upon each release. Changes since the last release can be found at 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) diff --git a/crates/egui-wgpu/CHANGELOG.md b/crates/egui-wgpu/CHANGELOG.md index a20cafa1..7209c91a 100644 --- a/crates/egui-wgpu/CHANGELOG.md +++ b/crates/egui-wgpu/CHANGELOG.md @@ -6,6 +6,10 @@ This file is updated upon each release. Changes since the last release can be found at 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) diff --git a/crates/egui-winit/CHANGELOG.md b/crates/egui-winit/CHANGELOG.md index 7cc8667c..efdc9c23 100644 --- a/crates/egui-winit/CHANGELOG.md +++ b/crates/egui-winit/CHANGELOG.md @@ -5,6 +5,10 @@ This file is updated upon each release. Changes since the last release can be found at 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) diff --git a/crates/egui_extras/CHANGELOG.md b/crates/egui_extras/CHANGELOG.md index d6cc2e9c..bfadf84f 100644 --- a/crates/egui_extras/CHANGELOG.md +++ b/crates/egui_extras/CHANGELOG.md @@ -5,6 +5,10 @@ This file is updated upon each release. Changes since the last release can be found at 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) diff --git a/crates/egui_glow/CHANGELOG.md b/crates/egui_glow/CHANGELOG.md index abdfa240..86c77c94 100644 --- a/crates/egui_glow/CHANGELOG.md +++ b/crates/egui_glow/CHANGELOG.md @@ -6,6 +6,10 @@ Changes since the last release can be found at 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) diff --git a/crates/epaint/CHANGELOG.md b/crates/epaint/CHANGELOG.md index cee374ce..2c2cfcc1 100644 --- a/crates/epaint/CHANGELOG.md +++ b/crates/epaint/CHANGELOG.md @@ -5,6 +5,10 @@ This file is updated upon each release. Changes since the last release can be found at 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) diff --git a/crates/epaint_default_fonts/CHANGELOG.md b/crates/epaint_default_fonts/CHANGELOG.md index 8d9eff7c..70973361 100644 --- a/crates/epaint_default_fonts/CHANGELOG.md +++ b/crates/epaint_default_fonts/CHANGELOG.md @@ -5,6 +5,10 @@ This file is updated upon each release. Changes since the last release can be found at 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)