summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmil Ernerfeldt <emil.ernerfeldt@gmail.com>2024-10-01 10:08:21 +0200
committerEmil Ernerfeldt <emil.ernerfeldt@gmail.com>2024-10-01 10:08:21 +0200
commitfe368bacc4a15697e347607e73a56c0299b3d42d (patch)
tree5d3d86c5a1d8808886f3fc6568673d5d0f64aede
parentce744e6f7a22412cecf1cf2ea8678344bfb56489 (diff)
Release 0.29.1 - Bug fixes0.29.1
-rw-r--r--CHANGELOG.md6
-rw-r--r--Cargo.lock28
-rw-r--r--Cargo.toml24
-rw-r--r--crates/ecolor/CHANGELOG.md4
-rw-r--r--crates/eframe/CHANGELOG.md4
-rw-r--r--crates/egui-wgpu/CHANGELOG.md4
-rw-r--r--crates/egui-winit/CHANGELOG.md4
-rw-r--r--crates/egui_extras/CHANGELOG.md4
-rw-r--r--crates/egui_glow/CHANGELOG.md4
-rw-r--r--crates/epaint/CHANGELOG.md4
-rw-r--r--crates/epaint_default_fonts/CHANGELOG.md4
11 files changed, 64 insertions, 26 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c07dd7dd..8eeeb1e0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,12 @@ 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.29.1 - 2024-10-01 - Bug fixes
+* 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)
+* Fix id clash in `Ui::response` [#5192](https://github.com/emilk/egui/pull/5192) by [@emilk](https://github.com/emilk)
+* Do not round panel rectangles to pixel grid [#5196](https://github.com/emilk/egui/pull/5196) by [@emilk](https://github.com/emilk)
+
+
## 0.29.0 - 2024-09-26 - Multipass, `UiBuilder`, & visual improvements
### ✨ Highlights
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).
diff --git a/Cargo.lock b/Cargo.lock
index 5fdfab95..47d5d30b 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1166,7 +1166,7 @@ checksum = "f25c0e292a7ca6d6498557ff1df68f32c99850012b6ea401cf8daf771f22ff53"
[[package]]
name = "ecolor"
-version = "0.29.0"
+version = "0.29.1"
dependencies = [
"bytemuck",
"cint",
@@ -1178,7 +1178,7 @@ dependencies = [
[[package]]
name = "eframe"
-version = "0.29.0"
+version = "0.29.1"
dependencies = [
"ahash",
"bytemuck",
@@ -1218,7 +1218,7 @@ dependencies = [
[[package]]
name = "egui"
-version = "0.29.0"
+version = "0.29.1"
dependencies = [
"accesskit",
"ahash",
@@ -1235,7 +1235,7 @@ dependencies = [
[[package]]
name = "egui-wgpu"
-version = "0.29.0"
+version = "0.29.1"
dependencies = [
"ahash",
"bytemuck",
@@ -1253,7 +1253,7 @@ dependencies = [
[[package]]
name = "egui-winit"
-version = "0.29.0"
+version = "0.29.1"
dependencies = [
"accesskit_winit",
"ahash",
@@ -1273,7 +1273,7 @@ dependencies = [
[[package]]
name = "egui_demo_app"
-version = "0.29.0"
+version = "0.29.1"
dependencies = [
"bytemuck",
"chrono",
@@ -1298,7 +1298,7 @@ dependencies = [
[[package]]
name = "egui_demo_lib"
-version = "0.29.0"
+version = "0.29.1"
dependencies = [
"chrono",
"criterion",
@@ -1311,7 +1311,7 @@ dependencies = [
[[package]]
name = "egui_extras"
-version = "0.29.0"
+version = "0.29.1"
dependencies = [
"ahash",
"chrono",
@@ -1330,7 +1330,7 @@ dependencies = [
[[package]]
name = "egui_glow"
-version = "0.29.0"
+version = "0.29.1"
dependencies = [
"ahash",
"bytemuck",
@@ -1370,7 +1370,7 @@ checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
[[package]]
name = "emath"
-version = "0.29.0"
+version = "0.29.1"
dependencies = [
"bytemuck",
"document-features",
@@ -1445,7 +1445,7 @@ dependencies = [
[[package]]
name = "epaint"
-version = "0.29.0"
+version = "0.29.1"
dependencies = [
"ab_glyph",
"ahash",
@@ -1466,7 +1466,7 @@ dependencies = [
[[package]]
name = "epaint_default_fonts"
-version = "0.29.0"
+version = "0.29.1"
[[package]]
name = "equivalent"
@@ -3069,7 +3069,7 @@ checksum = "22686f4785f02a4fcc856d3b3bb19bf6c8160d103f7a99cc258bddd0251dc7f2"
[[package]]
name = "popups"
-version = "0.29.0"
+version = "0.29.1"
dependencies = [
"eframe",
"env_logger",
@@ -5026,7 +5026,7 @@ checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9"
[[package]]
name = "xtask"
-version = "0.29.0"
+version = "0.29.1"
[[package]]
name = "yaml-rust"
diff --git a/Cargo.toml b/Cargo.toml
index ecec4fcc..9e2fac41 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -23,7 +23,7 @@ members = [
edition = "2021"
license = "MIT OR Apache-2.0"
rust-version = "1.76"
-version = "0.29.0"
+version = "0.29.1"
[profile.release]
@@ -54,17 +54,17 @@ opt-level = 2
[workspace.dependencies]
-emath = { version = "0.29.0", path = "crates/emath", default-features = false }
-ecolor = { version = "0.29.0", path = "crates/ecolor", default-features = false }
-epaint = { version = "0.29.0", path = "crates/epaint", default-features = false }
-epaint_default_fonts = { version = "0.29.0", path = "crates/epaint_default_fonts" }
-egui = { version = "0.29.0", path = "crates/egui", default-features = false }
-egui-winit = { version = "0.29.0", path = "crates/egui-winit", default-features = false }
-egui_extras = { version = "0.29.0", path = "crates/egui_extras", default-features = false }
-egui-wgpu = { version = "0.29.0", path = "crates/egui-wgpu", default-features = false }
-egui_demo_lib = { version = "0.29.0", path = "crates/egui_demo_lib", default-features = false }
-egui_glow = { version = "0.29.0", path = "crates/egui_glow", default-features = false }
-eframe = { version = "0.29.0", path = "crates/eframe", default-features = false }
+emath = { version = "0.29.1", path = "crates/emath", default-features = false }
+ecolor = { version = "0.29.1", path = "crates/ecolor", default-features = false }
+epaint = { version = "0.29.1", path = "crates/epaint", default-features = false }
+epaint_default_fonts = { version = "0.29.1", path = "crates/epaint_default_fonts" }
+egui = { version = "0.29.1", path = "crates/egui", default-features = false }
+egui-winit = { version = "0.29.1", path = "crates/egui-winit", default-features = false }
+egui_extras = { version = "0.29.1", path = "crates/egui_extras", default-features = false }
+egui-wgpu = { version = "0.29.1", path = "crates/egui-wgpu", default-features = false }
+egui_demo_lib = { version = "0.29.1", path = "crates/egui_demo_lib", default-features = false }
+egui_glow = { version = "0.29.1", path = "crates/egui_glow", default-features = false }
+eframe = { version = "0.29.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 27280c70..ec42258b 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 <https://github.com/emilk/egui/compare/latest...HEAD> or by running the `scripts/generate_changelog.py` script.
+## 0.29.1 - 2024-10-01
+Nothing new
+
+
## 0.29.0 - 2024-09-26
* 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)
diff --git a/crates/eframe/CHANGELOG.md b/crates/eframe/CHANGELOG.md
index ff54dc2e..65b5a731 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 <https://github.com/emilk/egui/compare/latest...HEAD> or by running the `scripts/generate_changelog.py` script.
+## 0.29.1 - 2024-10-01 - Fix backspace/arrow keys on X11
+* Linux: Disable IME to fix backspace/arrow keys [#5188](https://github.com/emilk/egui/pull/5188) by [@emilk](https://github.com/emilk)
+
+
## 0.29.0 - 2024-09-26 - `winit` 0.30 & fix mobile text input
### ✨ Highlights
* Upgrade winit to 0.30 ([#4849](https://github.com/emilk/egui/pull/4849) [#4939](https://github.com/emilk/egui/pull/4939))
diff --git a/crates/egui-wgpu/CHANGELOG.md b/crates/egui-wgpu/CHANGELOG.md
index e254517b..a25b2a21 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 <https://github.com/emilk/egui/compare/latest...HEAD> or by running the `scripts/generate_changelog.py` script.
+## 0.29.1 - 2024-10-01
+Nothing new
+
+
## 0.29.0 - 2024-09-26 - `wgpu` 22.0
### ⭐ Added
* 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)
diff --git a/crates/egui-winit/CHANGELOG.md b/crates/egui-winit/CHANGELOG.md
index 785c57b9..cf9def98 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 <https://github.com/emilk/egui/compare/latest...HEAD> or by running the `scripts/generate_changelog.py` script.
+## 0.29.1 - 2024-10-01 - Fix backspace/arrow keys on X11
+* Linux: Disable IME to fix backspace/arrow keys [#5188](https://github.com/emilk/egui/pull/5188) by [@emilk](https://github.com/emilk)
+
+
## 0.29.0 - 2024-09-26 - `winit` 0.30
* 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)
* Fix: Backspace not working after IME input [#4912](https://github.com/emilk/egui/pull/4912) by [@rustbasic](https://github.com/rustbasic)
diff --git a/crates/egui_extras/CHANGELOG.md b/crates/egui_extras/CHANGELOG.md
index 27f23ef4..d0f5aa86 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 <https://github.com/emilk/egui/compare/latest...HEAD> or by running the `scripts/generate_changelog.py` script.
+## 0.29.1 - 2024-10-01 - Fix table interaction
+* 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)
+
+
## 0.29.0 - 2024-09-26
### ⭐ Added
* Add `TableRow::set_hovered` [#4820](https://github.com/emilk/egui/pull/4820) by [@addiswebb](https://github.com/addiswebb)
diff --git a/crates/egui_glow/CHANGELOG.md b/crates/egui_glow/CHANGELOG.md
index 6ab4aee2..0ebbad6d 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 <https://github.com/emilk/egui/co
+## 0.29.1 - 2024-10-01
+Nothing new
+
+
## 0.29.0 - 2024-09-26 - `glow` 0.14
* Update `glow` to 0.14 [#4952](https://github.com/emilk/egui/pull/4952) by [@bircni](https://github.com/bircni)
* Introduce dithering to reduce banding [#4497](https://github.com/emilk/egui/pull/4497) by [@jwagner](https://github.com/jwagner)
diff --git a/crates/epaint/CHANGELOG.md b/crates/epaint/CHANGELOG.md
index dda7d6e9..b044cdde 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 <https://github.com/emilk/egui/compare/latest...HEAD> or by running the `scripts/generate_changelog.py` script.
+## 0.29.1 - 2024-10-01
+Nothing new
+
+
## 0.29.0 - 2024-09-26
### 🚀 Performance
* Optimize `Color32::from_rgba_unmultiplied` with LUT [#5088](https://github.com/emilk/egui/pull/5088) by [@YgorSouza](https://github.com/YgorSouza)
diff --git a/crates/epaint_default_fonts/CHANGELOG.md b/crates/epaint_default_fonts/CHANGELOG.md
index b41f316d..3e8e6959 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 <https://github.com/emilk/egui/compare/latest...HEAD> or by running the `scripts/generate_changelog.py` script.
+## 0.29.1 - 2024-10-01
+Nothing new
+
+
## 0.29.0 - 2024-09-26
* Nothing new