Release 0.29.1 - Bug fixes
This commit is contained in:
parent
ce744e6f7a
commit
fe368bacc4
|
|
@ -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).
|
||||
|
|
|
|||
28
Cargo.lock
28
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"
|
||||
|
|
|
|||
24
Cargo.toml
24
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
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
|
|
@ -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))
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue