Skip to content

Commit

Permalink
Release 0.26.2 - Response.interact/context_menu fix
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed Feb 14, 2024
1 parent 1ce4f05 commit 309586b
Show file tree
Hide file tree
Showing 11 changed files with 60 additions and 24 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -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.26.2 - 2024-02-14
* Avoid interacting twice when not required [#4041](https://github.com/emilk/egui/pull/4041) (thanks [@abey79](https://github.com/abey79)!)


## 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)!)
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.1"
version = "0.26.2"


[profile.release]
Expand Down Expand Up @@ -48,17 +48,17 @@ opt-level = 2


[workspace.dependencies]
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 }
emath = { version = "0.26.2", path = "crates/emath", default-features = false }
ecolor = { version = "0.26.2", path = "crates/ecolor", default-features = false }
epaint = { version = "0.26.2", path = "crates/epaint", default-features = false }
egui = { version = "0.26.2", path = "crates/egui", default-features = false }
egui_plot = { version = "0.26.2", path = "crates/egui_plot", default-features = false }
egui-winit = { version = "0.26.2", path = "crates/egui-winit", default-features = false }
egui_extras = { version = "0.26.2", path = "crates/egui_extras", default-features = false }
egui-wgpu = { version = "0.26.2", path = "crates/egui-wgpu", default-features = false }
egui_demo_lib = { version = "0.26.2", path = "crates/egui_demo_lib", default-features = false }
egui_glow = { version = "0.26.2", path = "crates/egui_glow", default-features = false }
eframe = { version = "0.26.2", 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.2 - 2024-02-14
* Nothing new


## 0.26.1 - 2024-02-11
* Nothing new

Expand Down
4 changes: 4 additions & 0 deletions crates/eframe/CHANGELOG.md
Expand Up @@ -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.26.2 - 2024-02-14
* Add `winuser` feature to `winapi` to fix unresolved import [#4037](https://github.com/emilk/egui/pull/4037) (thanks [@varphone](https://github.com/varphone)!)


## 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)
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.2 - 2024-02-14
* Nothing new


## 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)

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.2 - 2024-02-14
* Update memoffset to 0.9.0, arboard to 3.3.1, and remove egui_glow's needless dependency on pure_glow's deps [#4036](https://github.com/emilk/egui/pull/4036) (thanks [@Nopey](https://github.com/Nopey)!)


## 0.26.1 - 2024-02-11
* Nothing new

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.2 - 2024-02-14
* Nothing new


## 0.26.1 - 2024-02-11
* Nothing new

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.2 - 2024-02-14
* Update memoffset to 0.9.0, arboard to 3.3.1, and remove egui_glow's needless dependency on pure_glow's deps [#4036](https://github.com/emilk/egui/pull/4036) (thanks [@Nopey](https://github.com/Nopey)!)


## 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)!)

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.2 - 2024-02-14
* Nothing new


## 0.26.1 - 2024-02-11
* Nothing new

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.2 - 2024-02-14
* Nothing new


## 0.26.1 - 2024-02-11
* Nothing new

Expand Down

0 comments on commit 309586b

Please sign in to comment.