Release 0.26.1 - Bug Fixes

This commit is contained in:
Emil Ernerfeldt 2024-02-11 08:59:02 +01:00
parent cd34a47dd6
commit d22ee81ab0
12 changed files with 67 additions and 25 deletions

View File

@ -7,6 +7,15 @@ 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.26.1 - 2024-02-11
* Fix `Window` title bar incorrect handling spacing [#3995](https://github.com/emilk/egui/pull/3995) (thanks [@varphone](https://github.com/varphone)!)
* Make `on_disabled_hover_ui` respect `tooltip_delay` [#4012](https://github.com/emilk/egui/pull/4012) (thanks [@YgorSouza](https://github.com/YgorSouza)!)
* Fix `TextEdit` being too short whenever there is horizontal margin [#4005](https://github.com/emilk/egui/pull/4005) (thanks [@gweisert](https://github.com/gweisert)!)
* Fix `Response::interact` and `Ui:interact_with_hovered` [#4013](https://github.com/emilk/egui/pull/4013)
* Fix: `Response.interact_pointer_pos` is `Some` on click and drag released [#4014](https://github.com/emilk/egui/pull/4014)
* Fix custom `Window` `Frame`s [#4009](https://github.com/emilk/egui/pull/4009) (thanks [@varphone](https://github.com/varphone)!)
## 0.26.0 - 2024-02-05 - Text selection in labels
### ⚠️ BREAKING

24
Cargo.lock generated
View File

@ -1181,7 +1181,7 @@ checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650"
[[package]]
name = "ecolor"
version = "0.26.0"
version = "0.26.1"
dependencies = [
"bytemuck",
"cint",
@ -1192,7 +1192,7 @@ dependencies = [
[[package]]
name = "eframe"
version = "0.26.0"
version = "0.26.1"
dependencies = [
"bytemuck",
"cocoa",
@ -1230,7 +1230,7 @@ dependencies = [
[[package]]
name = "egui"
version = "0.26.0"
version = "0.26.1"
dependencies = [
"accesskit",
"ahash",
@ -1246,7 +1246,7 @@ dependencies = [
[[package]]
name = "egui-wgpu"
version = "0.26.0"
version = "0.26.1"
dependencies = [
"bytemuck",
"document-features",
@ -1263,7 +1263,7 @@ dependencies = [
[[package]]
name = "egui-winit"
version = "0.26.0"
version = "0.26.1"
dependencies = [
"accesskit_winit",
"arboard",
@ -1281,7 +1281,7 @@ dependencies = [
[[package]]
name = "egui_demo_app"
version = "0.26.0"
version = "0.26.1"
dependencies = [
"bytemuck",
"chrono",
@ -1306,7 +1306,7 @@ dependencies = [
[[package]]
name = "egui_demo_lib"
version = "0.26.0"
version = "0.26.1"
dependencies = [
"chrono",
"criterion",
@ -1321,7 +1321,7 @@ dependencies = [
[[package]]
name = "egui_extras"
version = "0.26.0"
version = "0.26.1"
dependencies = [
"chrono",
"document-features",
@ -1339,7 +1339,7 @@ dependencies = [
[[package]]
name = "egui_glow"
version = "0.26.0"
version = "0.26.1"
dependencies = [
"bytemuck",
"document-features",
@ -1359,7 +1359,7 @@ dependencies = [
[[package]]
name = "egui_plot"
version = "0.26.0"
version = "0.26.1"
dependencies = [
"document-features",
"egui",
@ -1388,7 +1388,7 @@ checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
[[package]]
name = "emath"
version = "0.26.0"
version = "0.26.1"
dependencies = [
"bytemuck",
"document-features",
@ -1463,7 +1463,7 @@ dependencies = [
[[package]]
name = "epaint"
version = "0.26.0"
version = "0.26.1"
dependencies = [
"ab_glyph",
"ahash",

View File

@ -20,7 +20,7 @@ members = [
edition = "2021"
license = "MIT OR Apache-2.0"
rust-version = "1.72"
version = "0.26.0"
version = "0.26.1"
[profile.release]
@ -48,17 +48,17 @@ opt-level = 2
[workspace.dependencies]
emath = { version = "0.26.0", path = "crates/emath", default-features = false }
ecolor = { version = "0.26.0", path = "crates/ecolor", default-features = false }
epaint = { version = "0.26.0", path = "crates/epaint", default-features = false }
egui = { version = "0.26.0", path = "crates/egui", default-features = false }
egui_plot = { version = "0.26.0", path = "crates/egui_plot", default-features = false }
egui-winit = { version = "0.26.0", path = "crates/egui-winit", default-features = false }
egui_extras = { version = "0.26.0", path = "crates/egui_extras", default-features = false }
egui-wgpu = { version = "0.26.0", path = "crates/egui-wgpu", default-features = false }
egui_demo_lib = { version = "0.26.0", path = "crates/egui_demo_lib", default-features = false }
egui_glow = { version = "0.26.0", path = "crates/egui_glow", default-features = false }
eframe = { version = "0.26.0", path = "crates/eframe", default-features = false }
emath = { version = "0.26.1", path = "crates/emath", default-features = false }
ecolor = { version = "0.26.1", path = "crates/ecolor", default-features = false }
epaint = { version = "0.26.1", path = "crates/epaint", default-features = false }
egui = { version = "0.26.1", path = "crates/egui", default-features = false }
egui_plot = { version = "0.26.1", path = "crates/egui_plot", default-features = false }
egui-winit = { version = "0.26.1", path = "crates/egui-winit", default-features = false }
egui_extras = { version = "0.26.1", path = "crates/egui_extras", default-features = false }
egui-wgpu = { version = "0.26.1", path = "crates/egui-wgpu", default-features = false }
egui_demo_lib = { version = "0.26.1", path = "crates/egui_demo_lib", default-features = false }
egui_glow = { version = "0.26.1", path = "crates/egui_glow", default-features = false }
eframe = { version = "0.26.1", path = "crates/eframe", default-features = false }
#TODO(emilk): make more things workspace dependencies
ahash = { version = "0.8.6", default-features = false, features = [

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.26.1 - 2024-02-11
* Nothing new
## 0.26.0 - 2024-02-05
* 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.26.1 - 2024-02-11
* Fix high CPU usage on Windows when app is minimized [#3985](https://github.com/emilk/egui/pull/3985) (thanks [@rustbasic](https://github.com/rustbasic)!)
* Update to document-features 0.2.8 [#4003](https://github.com/emilk/egui/pull/4003)
## 0.26.0 - 2024-02-05
* Update `wgpu` to 0.19 [#3824](https://github.com/emilk/egui/pull/3824)
* Disable the default features of `wgpu` [#3875](https://github.com/emilk/egui/pull/3875)

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.26.1 - 2024-02-11
* Improve panic message in egui-wgpu when failing to create buffers [#3986](https://github.com/emilk/egui/pull/3986)
## 0.26.0 - 2024-02-05
* Update wgpu to 0.19 [#3824](https://github.com/emilk/egui/pull/3824)
* Add `WgpuConfiguration::desired_maximum_frame_latency` [#3874](https://github.com/emilk/egui/pull/3874)

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.26.1 - 2024-02-11
* Nothing new
## 0.26.0 - 2024-02-05
* Don't consume clipboard shortcuts [#3812](https://github.com/emilk/egui/pull/3812) (thanks [@Dinnerbone](https://github.com/Dinnerbone)!)
* Make the `clipboard_text` and `allow_ime` state public [#3724](https://github.com/emilk/egui/pull/3724) (thanks [@tosti007](https://github.com/tosti007)!)

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.26.1 - 2024-02-11
* Nothing new
## 0.26.0 - 2024-02-05
* Remove `unwrap`s in SVG scaling [#3826](https://github.com/emilk/egui/pull/3826) (thanks [@amPerl](https://github.com/amPerl)!)
* Update to ehttp 0.4 [#3834](https://github.com/emilk/egui/pull/3834)

View File

@ -6,6 +6,10 @@ Changes since the last release can be found at <https://github.com/emilk/egui/co
## 0.26.1 - 2024-02-11
* Only disable sRGB framebuffer on supported platforms [#3994](https://github.com/emilk/egui/pull/3994) (thanks [@Nopey](https://github.com/Nopey)!)
## 0.26.0 - 2024-02-05
* Add `x11` and `wayland` features [#3909](https://github.com/emilk/egui/pull/3909) (thanks [@YgorSouza](https://github.com/YgorSouza)!)

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.26.1 - 2024-02-11
* Nothing new
## 0.26.0 - 2024-02-05
* Make `egui_plot::PlotMemory` public [#3871](https://github.com/emilk/egui/pull/3871)
* Customizable spacing of grid and axis label spacing [#3896](https://github.com/emilk/egui/pull/3896)

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.26.1 - 2024-02-11
* Nothing new
## 0.26.0 - 2024-02-05
* Add `Align2::anchor_size` [#3863](https://github.com/emilk/egui/pull/3863)
* Add opacity factor to `TextShape` [#3916](https://github.com/emilk/egui/pull/3916) (thanks [@StratusFearMe21](https://github.com/StratusFearMe21)!)

View File

@ -249,7 +249,7 @@ def main() -> None:
if args.write:
for crate in crate_names:
items = sections[crate] if crate in sections else []
items = sections[crate] if crate in sections else ["Nothing new"]
add_to_changelog_file(crate, items, args.version)