Skip to content

Commit

Permalink
Release 0.26.1 - Bug Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed Feb 11, 2024
1 parent 0d17b67 commit a8501c9
Show file tree
Hide file tree
Showing 12 changed files with 67 additions and 25 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Expand Up @@ -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
Expand Down
24 changes: 12 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 12 additions & 12 deletions Cargo.toml
Expand Up @@ -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]
Expand Down Expand Up @@ -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 = [
Expand Down
4 changes: 4 additions & 0 deletions crates/ecolor/CHANGELOG.md
Expand Up @@ -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

Expand Down
5 changes: 5 additions & 0 deletions crates/eframe/CHANGELOG.md
Expand Up @@ -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)
Expand Down
4 changes: 4 additions & 0 deletions crates/egui-wgpu/CHANGELOG.md
Expand Up @@ -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)
Expand Down
4 changes: 4 additions & 0 deletions crates/egui-winit/CHANGELOG.md
Expand Up @@ -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)!)
Expand Down
4 changes: 4 additions & 0 deletions crates/egui_extras/CHANGELOG.md
Expand Up @@ -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)
Expand Down
4 changes: 4 additions & 0 deletions crates/egui_glow/CHANGELOG.md
Expand Up @@ -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)!)

Expand Down
4 changes: 4 additions & 0 deletions crates/egui_plot/CHANGELOG.md
Expand Up @@ -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)
Expand Down
4 changes: 4 additions & 0 deletions crates/epaint/CHANGELOG.md
Expand Up @@ -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)!)
Expand Down
2 changes: 1 addition & 1 deletion scripts/generate_changelog.py
Expand Up @@ -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)


Expand Down

0 comments on commit a8501c9

Please sign in to comment.