Skip to content

Commit fe368ba

Browse files
committed
Release 0.29.1 - Bug fixes
1 parent ce744e6 commit fe368ba

File tree

11 files changed

+64
-26
lines changed

11 files changed

+64
-26
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ 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.29.1 - 2024-10-01 - Bug fixes
11+
* Remove debug-assert triggered by `with_layer_id/dnd_drag_source` [#5191](https://github.com/emilk/egui/pull/5191) by [@emilk](https://github.com/emilk)
12+
* Fix id clash in `Ui::response` [#5192](https://github.com/emilk/egui/pull/5192) by [@emilk](https://github.com/emilk)
13+
* Do not round panel rectangles to pixel grid [#5196](https://github.com/emilk/egui/pull/5196) by [@emilk](https://github.com/emilk)
14+
15+
1016
## 0.29.0 - 2024-09-26 - Multipass, `UiBuilder`, & visual improvements
1117
### ✨ Highlights
1218
This release adds initial support for multi-pass layout, which is a tool to circumvent [a common limitation of immediate mode](https://github.com/emilk/egui#layout).

Cargo.lock

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1166,7 +1166,7 @@ checksum = "f25c0e292a7ca6d6498557ff1df68f32c99850012b6ea401cf8daf771f22ff53"
11661166

11671167
[[package]]
11681168
name = "ecolor"
1169-
version = "0.29.0"
1169+
version = "0.29.1"
11701170
dependencies = [
11711171
"bytemuck",
11721172
"cint",
@@ -1178,7 +1178,7 @@ dependencies = [
11781178

11791179
[[package]]
11801180
name = "eframe"
1181-
version = "0.29.0"
1181+
version = "0.29.1"
11821182
dependencies = [
11831183
"ahash",
11841184
"bytemuck",
@@ -1218,7 +1218,7 @@ dependencies = [
12181218

12191219
[[package]]
12201220
name = "egui"
1221-
version = "0.29.0"
1221+
version = "0.29.1"
12221222
dependencies = [
12231223
"accesskit",
12241224
"ahash",
@@ -1235,7 +1235,7 @@ dependencies = [
12351235

12361236
[[package]]
12371237
name = "egui-wgpu"
1238-
version = "0.29.0"
1238+
version = "0.29.1"
12391239
dependencies = [
12401240
"ahash",
12411241
"bytemuck",
@@ -1253,7 +1253,7 @@ dependencies = [
12531253

12541254
[[package]]
12551255
name = "egui-winit"
1256-
version = "0.29.0"
1256+
version = "0.29.1"
12571257
dependencies = [
12581258
"accesskit_winit",
12591259
"ahash",
@@ -1273,7 +1273,7 @@ dependencies = [
12731273

12741274
[[package]]
12751275
name = "egui_demo_app"
1276-
version = "0.29.0"
1276+
version = "0.29.1"
12771277
dependencies = [
12781278
"bytemuck",
12791279
"chrono",
@@ -1298,7 +1298,7 @@ dependencies = [
12981298

12991299
[[package]]
13001300
name = "egui_demo_lib"
1301-
version = "0.29.0"
1301+
version = "0.29.1"
13021302
dependencies = [
13031303
"chrono",
13041304
"criterion",
@@ -1311,7 +1311,7 @@ dependencies = [
13111311

13121312
[[package]]
13131313
name = "egui_extras"
1314-
version = "0.29.0"
1314+
version = "0.29.1"
13151315
dependencies = [
13161316
"ahash",
13171317
"chrono",
@@ -1330,7 +1330,7 @@ dependencies = [
13301330

13311331
[[package]]
13321332
name = "egui_glow"
1333-
version = "0.29.0"
1333+
version = "0.29.1"
13341334
dependencies = [
13351335
"ahash",
13361336
"bytemuck",
@@ -1370,7 +1370,7 @@ checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
13701370

13711371
[[package]]
13721372
name = "emath"
1373-
version = "0.29.0"
1373+
version = "0.29.1"
13741374
dependencies = [
13751375
"bytemuck",
13761376
"document-features",
@@ -1445,7 +1445,7 @@ dependencies = [
14451445

14461446
[[package]]
14471447
name = "epaint"
1448-
version = "0.29.0"
1448+
version = "0.29.1"
14491449
dependencies = [
14501450
"ab_glyph",
14511451
"ahash",
@@ -1466,7 +1466,7 @@ dependencies = [
14661466

14671467
[[package]]
14681468
name = "epaint_default_fonts"
1469-
version = "0.29.0"
1469+
version = "0.29.1"
14701470

14711471
[[package]]
14721472
name = "equivalent"
@@ -3069,7 +3069,7 @@ checksum = "22686f4785f02a4fcc856d3b3bb19bf6c8160d103f7a99cc258bddd0251dc7f2"
30693069

30703070
[[package]]
30713071
name = "popups"
3072-
version = "0.29.0"
3072+
version = "0.29.1"
30733073
dependencies = [
30743074
"eframe",
30753075
"env_logger",
@@ -5026,7 +5026,7 @@ checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9"
50265026

50275027
[[package]]
50285028
name = "xtask"
5029-
version = "0.29.0"
5029+
version = "0.29.1"
50305030

50315031
[[package]]
50325032
name = "yaml-rust"

Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ members = [
2323
edition = "2021"
2424
license = "MIT OR Apache-2.0"
2525
rust-version = "1.76"
26-
version = "0.29.0"
26+
version = "0.29.1"
2727

2828

2929
[profile.release]
@@ -54,17 +54,17 @@ opt-level = 2
5454

5555

5656
[workspace.dependencies]
57-
emath = { version = "0.29.0", path = "crates/emath", default-features = false }
58-
ecolor = { version = "0.29.0", path = "crates/ecolor", default-features = false }
59-
epaint = { version = "0.29.0", path = "crates/epaint", default-features = false }
60-
epaint_default_fonts = { version = "0.29.0", path = "crates/epaint_default_fonts" }
61-
egui = { version = "0.29.0", path = "crates/egui", default-features = false }
62-
egui-winit = { version = "0.29.0", path = "crates/egui-winit", default-features = false }
63-
egui_extras = { version = "0.29.0", path = "crates/egui_extras", default-features = false }
64-
egui-wgpu = { version = "0.29.0", path = "crates/egui-wgpu", default-features = false }
65-
egui_demo_lib = { version = "0.29.0", path = "crates/egui_demo_lib", default-features = false }
66-
egui_glow = { version = "0.29.0", path = "crates/egui_glow", default-features = false }
67-
eframe = { version = "0.29.0", path = "crates/eframe", default-features = false }
57+
emath = { version = "0.29.1", path = "crates/emath", default-features = false }
58+
ecolor = { version = "0.29.1", path = "crates/ecolor", default-features = false }
59+
epaint = { version = "0.29.1", path = "crates/epaint", default-features = false }
60+
epaint_default_fonts = { version = "0.29.1", path = "crates/epaint_default_fonts" }
61+
egui = { version = "0.29.1", path = "crates/egui", default-features = false }
62+
egui-winit = { version = "0.29.1", path = "crates/egui-winit", default-features = false }
63+
egui_extras = { version = "0.29.1", path = "crates/egui_extras", default-features = false }
64+
egui-wgpu = { version = "0.29.1", path = "crates/egui-wgpu", default-features = false }
65+
egui_demo_lib = { version = "0.29.1", path = "crates/egui_demo_lib", default-features = false }
66+
egui_glow = { version = "0.29.1", path = "crates/egui_glow", default-features = false }
67+
eframe = { version = "0.29.1", path = "crates/eframe", default-features = false }
6868

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

crates/ecolor/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
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.29.1 - 2024-10-01
10+
Nothing new
11+
12+
913
## 0.29.0 - 2024-09-26
1014
* Document the fact that the `hex_color!` macro is not `const` [#5169](https://github.com/emilk/egui/pull/5169) by [@YgorSouza](https://github.com/YgorSouza)
1115

crates/eframe/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
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.29.1 - 2024-10-01 - Fix backspace/arrow keys on X11
11+
* Linux: Disable IME to fix backspace/arrow keys [#5188](https://github.com/emilk/egui/pull/5188) by [@emilk](https://github.com/emilk)
12+
13+
1014
## 0.29.0 - 2024-09-26 - `winit` 0.30 & fix mobile text input
1115
### ✨ Highlights
1216
* Upgrade winit to 0.30 ([#4849](https://github.com/emilk/egui/pull/4849) [#4939](https://github.com/emilk/egui/pull/4939))

crates/egui-wgpu/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
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.29.1 - 2024-10-01
10+
Nothing new
11+
12+
913
## 0.29.0 - 2024-09-26 - `wgpu` 22.0
1014
### ⭐ Added
1115
* Add opt-out `fragile-send-sync-non-atomic-wasm` feature for wgpu [#5098](https://github.com/emilk/egui/pull/5098) by [@9SMTM6](https://github.com/9SMTM6)

crates/egui-winit/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
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.29.1 - 2024-10-01 - Fix backspace/arrow keys on X11
9+
* Linux: Disable IME to fix backspace/arrow keys [#5188](https://github.com/emilk/egui/pull/5188) by [@emilk](https://github.com/emilk)
10+
11+
812
## 0.29.0 - 2024-09-26 - `winit` 0.30
913
* Upgrade to `winit` 0.30 [#4849](https://github.com/emilk/egui/pull/4849) [#4939](https://github.com/emilk/egui/pull/4939) by [@ArthurBrussee](https://github.com/ArthurBrussee)
1014
* Fix: Backspace not working after IME input [#4912](https://github.com/emilk/egui/pull/4912) by [@rustbasic](https://github.com/rustbasic)

crates/egui_extras/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
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.29.1 - 2024-10-01 - Fix table interaction
9+
* Bug fix: click anywhere on a `Table` row to select it [#5193](https://github.com/emilk/egui/pull/5193) by [@emilk](https://github.com/emilk)
10+
11+
812
## 0.29.0 - 2024-09-26
913
### ⭐ Added
1014
* Add `TableRow::set_hovered` [#4820](https://github.com/emilk/egui/pull/4820) by [@addiswebb](https://github.com/addiswebb)

crates/egui_glow/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
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.29.1 - 2024-10-01
10+
Nothing new
11+
12+
913
## 0.29.0 - 2024-09-26 - `glow` 0.14
1014
* Update `glow` to 0.14 [#4952](https://github.com/emilk/egui/pull/4952) by [@bircni](https://github.com/bircni)
1115
* Introduce dithering to reduce banding [#4497](https://github.com/emilk/egui/pull/4497) by [@jwagner](https://github.com/jwagner)

crates/epaint/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
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.29.1 - 2024-10-01
9+
Nothing new
10+
11+
812
## 0.29.0 - 2024-09-26
913
### 🚀 Performance
1014
* Optimize `Color32::from_rgba_unmultiplied` with LUT [#5088](https://github.com/emilk/egui/pull/5088) by [@YgorSouza](https://github.com/YgorSouza)

0 commit comments

Comments
 (0)