1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-26 14:49:06 -04:00

Bump version to 0.34.3 and update changelogs

This commit is contained in:
lucasmerlin
2026-05-27 09:46:20 +02:00
parent 872587836c
commit 65cb282a19
15 changed files with 77 additions and 30 deletions

View File

@@ -4,6 +4,7 @@
[default.extend-words]
ime = "ime" # Input Method Editor
abou = "abou" # part of @AmmarAbouZor username
nknown = "nknown" # part of @55nknown username
isse = "isse" # part of @IsseW username
tye = "tye" # part of @tye-exe username

View File

@@ -14,6 +14,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.34.3 - 2026-05-27
* Fix `ScrollArea::scroll_to_*` calls when `stick_to_bottom` is Active [#8033](https://github.com/emilk/egui/pull/8033) by [@AmmarAbouZor](https://github.com/AmmarAbouZor)
## 0.34.2 - 2026-05-04
### ⭐ Added
* Add regression test for O(n²) word boundary scan [#8077](https://github.com/emilk/egui/pull/8077) by [@hallyhaa](https://github.com/hallyhaa)

View File

@@ -1193,7 +1193,7 @@ checksum = "f25c0e292a7ca6d6498557ff1df68f32c99850012b6ea401cf8daf771f22ff53"
[[package]]
name = "ecolor"
version = "0.34.2"
version = "0.34.3"
dependencies = [
"bytemuck",
"cint",
@@ -1205,7 +1205,7 @@ dependencies = [
[[package]]
name = "eframe"
version = "0.34.2"
version = "0.34.3"
dependencies = [
"ahash",
"bytemuck",
@@ -1244,7 +1244,7 @@ dependencies = [
[[package]]
name = "egui"
version = "0.34.2"
version = "0.34.3"
dependencies = [
"accesskit",
"ahash",
@@ -1264,7 +1264,7 @@ dependencies = [
[[package]]
name = "egui-wgpu"
version = "0.34.2"
version = "0.34.3"
dependencies = [
"ahash",
"bytemuck",
@@ -1282,7 +1282,7 @@ dependencies = [
[[package]]
name = "egui-winit"
version = "0.34.2"
version = "0.34.3"
dependencies = [
"accesskit_winit",
"arboard",
@@ -1305,7 +1305,7 @@ dependencies = [
[[package]]
name = "egui_demo_app"
version = "0.34.2"
version = "0.34.3"
dependencies = [
"accesskit",
"accesskit_consumer",
@@ -1334,7 +1334,7 @@ dependencies = [
[[package]]
name = "egui_demo_lib"
version = "0.34.2"
version = "0.34.3"
dependencies = [
"criterion",
"document-features",
@@ -1351,7 +1351,7 @@ dependencies = [
[[package]]
name = "egui_extras"
version = "0.34.2"
version = "0.34.3"
dependencies = [
"ahash",
"document-features",
@@ -1370,7 +1370,7 @@ dependencies = [
[[package]]
name = "egui_glow"
version = "0.34.2"
version = "0.34.3"
dependencies = [
"bytemuck",
"document-features",
@@ -1389,7 +1389,7 @@ dependencies = [
[[package]]
name = "egui_kittest"
version = "0.34.2"
version = "0.34.3"
dependencies = [
"dify",
"document-features",
@@ -1409,7 +1409,7 @@ dependencies = [
[[package]]
name = "egui_tests"
version = "0.34.2"
version = "0.34.3"
dependencies = [
"egui",
"egui_extras",
@@ -1439,7 +1439,7 @@ checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
[[package]]
name = "emath"
version = "0.34.2"
version = "0.34.3"
dependencies = [
"bytemuck",
"document-features",
@@ -1537,7 +1537,7 @@ dependencies = [
[[package]]
name = "epaint"
version = "0.34.2"
version = "0.34.3"
dependencies = [
"ahash",
"bytemuck",
@@ -1563,7 +1563,7 @@ dependencies = [
[[package]]
name = "epaint_default_fonts"
version = "0.34.2"
version = "0.34.3"
[[package]]
name = "equivalent"
@@ -3431,7 +3431,7 @@ checksum = "2f3a9f18d041e6d0e102a0a46750538147e5e8992d3b4873aaafee2520b00ce3"
[[package]]
name = "popups"
version = "0.34.2"
version = "0.34.3"
dependencies = [
"eframe",
"env_logger",
@@ -5819,7 +5819,7 @@ checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9"
[[package]]
name = "xtask"
version = "0.34.2"
version = "0.34.3"
[[package]]
name = "yaml-rust"

View File

@@ -24,7 +24,7 @@ members = [
edition = "2024"
license = "MIT OR Apache-2.0"
rust-version = "1.92"
version = "0.34.2"
version = "0.34.3"
[profile.release]
@@ -55,18 +55,18 @@ opt-level = 2
[workspace.dependencies]
emath = { version = "0.34.2", path = "crates/emath", default-features = false }
ecolor = { version = "0.34.2", path = "crates/ecolor", default-features = false }
epaint = { version = "0.34.2", path = "crates/epaint", default-features = false }
epaint_default_fonts = { version = "0.34.2", path = "crates/epaint_default_fonts" }
egui = { version = "0.34.2", path = "crates/egui", default-features = false }
egui-winit = { version = "0.34.2", path = "crates/egui-winit", default-features = false }
egui_extras = { version = "0.34.2", path = "crates/egui_extras", default-features = false }
egui-wgpu = { version = "0.34.2", path = "crates/egui-wgpu", default-features = false }
egui_demo_lib = { version = "0.34.2", path = "crates/egui_demo_lib", default-features = false }
egui_glow = { version = "0.34.2", path = "crates/egui_glow", default-features = false }
egui_kittest = { version = "0.34.2", path = "crates/egui_kittest", default-features = false }
eframe = { version = "0.34.2", path = "crates/eframe", default-features = false }
emath = { version = "0.34.3", path = "crates/emath", default-features = false }
ecolor = { version = "0.34.3", path = "crates/ecolor", default-features = false }
epaint = { version = "0.34.3", path = "crates/epaint", default-features = false }
epaint_default_fonts = { version = "0.34.3", path = "crates/epaint_default_fonts" }
egui = { version = "0.34.3", path = "crates/egui", default-features = false }
egui-winit = { version = "0.34.3", path = "crates/egui-winit", default-features = false }
egui_extras = { version = "0.34.3", path = "crates/egui_extras", default-features = false }
egui-wgpu = { version = "0.34.3", path = "crates/egui-wgpu", default-features = false }
egui_demo_lib = { version = "0.34.3", path = "crates/egui_demo_lib", default-features = false }
egui_glow = { version = "0.34.3", path = "crates/egui_glow", default-features = false }
egui_kittest = { version = "0.34.3", path = "crates/egui_kittest", default-features = false }
eframe = { version = "0.34.3", path = "crates/eframe", default-features = false }
accesskit = "0.24.0"
accesskit_consumer = "0.35.0"

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.34.3 - 2026-05-27
Nothing new
## 0.34.2 - 2026-05-04
Nothing new

View File

@@ -7,6 +7,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.34.3 - 2026-05-27
* Default `app_id` to `app_name` on native [#8172](https://github.com/emilk/egui/pull/8172) by [@grtlr](https://github.com/grtlr)
* Add winit window access to `eframe::Frame` and `CreationContext` [#8205](https://github.com/emilk/egui/pull/8205) by [@emilk](https://github.com/emilk)
## 0.34.2 - 2026-05-04
* Document glow-only fields in `NativeOptions` [#8104](https://github.com/emilk/egui/pull/8104) by [@emilk](https://github.com/emilk)

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.34.3 - 2026-05-27
* Fix random hangs by improving `wgpu::Surface` lifecycle handling [#8171](https://github.com/emilk/egui/pull/8171) by [@grtlr](https://github.com/grtlr)
## 0.34.2 - 2026-05-04
* Update to wgpu 29.0.1 [#8073](https://github.com/emilk/egui/pull/8073) by [@emilk](https://github.com/emilk)
* Warn if using a software rasterizer [#8101](https://github.com/emilk/egui/pull/8101) by [@emilk](https://github.com/emilk)

View File

@@ -256,7 +256,8 @@ impl Painter {
// Prefer pre multiplied over post multiplied!
if supported_alpha_modes.contains(&wgpu::CompositeAlphaMode::PreMultiplied) {
wgpu::CompositeAlphaMode::PreMultiplied
} else if supported_alpha_modes.contains(&wgpu::CompositeAlphaMode::PostMultiplied) {
} else if supported_alpha_modes.contains(&wgpu::CompositeAlphaMode::PostMultiplied)
{
wgpu::CompositeAlphaMode::PostMultiplied
} else {
log::warn!(

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.34.3 - 2026-05-27
Nothing new
## 0.34.2 - 2026-05-04
Nothing new

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.34.3 - 2026-05-27
Nothing new
## 0.34.2 - 2026-05-04
Nothing new

View File

@@ -6,6 +6,10 @@ Changes since the last release can be found at <https://github.com/emilk/egui/co
## 0.34.3 - 2026-05-27
Nothing new
## 0.34.2 - 2026-05-04
Nothing new

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.34.3 - 2026-05-27
Nothing new
## 0.34.2 - 2026-05-04
Nothing new

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.34.3 - 2026-05-27
Nothing new
## 0.34.2 - 2026-05-04
Nothing new

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.34.3 - 2026-05-27
Nothing new
## 0.34.2 - 2026-05-04
* Fix text layout bugs in wrapped texts [#8137](https://github.com/emilk/egui/pull/8137) 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.34.3 - 2026-05-27
Nothing new
## 0.34.2 - 2026-05-04
Nothing new