From 309586b42cc809af7e262a194eef5c35013d1bf1 Mon Sep 17 00:00:00 2001
From: Emil Ernerfeldt <emil.ernerfeldt@gmail.com>
Date: Wed, 14 Feb 2024 10:44:58 +0100
Subject: [PATCH] Release 0.26.2 - Response.interact/context_menu fix

---
 CHANGELOG.md                    |  4 ++++
 Cargo.lock                      | 24 ++++++++++++------------
 Cargo.toml                      | 24 ++++++++++++------------
 crates/ecolor/CHANGELOG.md      |  4 ++++
 crates/eframe/CHANGELOG.md      |  4 ++++
 crates/egui-wgpu/CHANGELOG.md   |  4 ++++
 crates/egui-winit/CHANGELOG.md  |  4 ++++
 crates/egui_extras/CHANGELOG.md |  4 ++++
 crates/egui_glow/CHANGELOG.md   |  4 ++++
 crates/egui_plot/CHANGELOG.md   |  4 ++++
 crates/epaint/CHANGELOG.md      |  4 ++++
 11 files changed, 60 insertions(+), 24 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index feeb95bc0e81..9c468fc815d0 100644
--- a/CHANGELOG.md
+++ b/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.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)!)
diff --git a/Cargo.lock b/Cargo.lock
index 86bb30eaff26..e7bbbf683396 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1178,7 +1178,7 @@ checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650"
 
 [[package]]
 name = "ecolor"
-version = "0.26.1"
+version = "0.26.2"
 dependencies = [
  "bytemuck",
  "cint",
@@ -1189,7 +1189,7 @@ dependencies = [
 
 [[package]]
 name = "eframe"
-version = "0.26.1"
+version = "0.26.2"
 dependencies = [
  "bytemuck",
  "cocoa",
@@ -1227,7 +1227,7 @@ dependencies = [
 
 [[package]]
 name = "egui"
-version = "0.26.1"
+version = "0.26.2"
 dependencies = [
  "accesskit",
  "ahash",
@@ -1243,7 +1243,7 @@ dependencies = [
 
 [[package]]
 name = "egui-wgpu"
-version = "0.26.1"
+version = "0.26.2"
 dependencies = [
  "bytemuck",
  "document-features",
@@ -1260,7 +1260,7 @@ dependencies = [
 
 [[package]]
 name = "egui-winit"
-version = "0.26.1"
+version = "0.26.2"
 dependencies = [
  "accesskit_winit",
  "arboard",
@@ -1278,7 +1278,7 @@ dependencies = [
 
 [[package]]
 name = "egui_demo_app"
-version = "0.26.1"
+version = "0.26.2"
 dependencies = [
  "bytemuck",
  "chrono",
@@ -1303,7 +1303,7 @@ dependencies = [
 
 [[package]]
 name = "egui_demo_lib"
-version = "0.26.1"
+version = "0.26.2"
 dependencies = [
  "chrono",
  "criterion",
@@ -1318,7 +1318,7 @@ dependencies = [
 
 [[package]]
 name = "egui_extras"
-version = "0.26.1"
+version = "0.26.2"
 dependencies = [
  "chrono",
  "document-features",
@@ -1336,7 +1336,7 @@ dependencies = [
 
 [[package]]
 name = "egui_glow"
-version = "0.26.1"
+version = "0.26.2"
 dependencies = [
  "bytemuck",
  "document-features",
@@ -1356,7 +1356,7 @@ dependencies = [
 
 [[package]]
 name = "egui_plot"
-version = "0.26.1"
+version = "0.26.2"
 dependencies = [
  "document-features",
  "egui",
@@ -1385,7 +1385,7 @@ checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
 
 [[package]]
 name = "emath"
-version = "0.26.1"
+version = "0.26.2"
 dependencies = [
  "bytemuck",
  "document-features",
@@ -1460,7 +1460,7 @@ dependencies = [
 
 [[package]]
 name = "epaint"
-version = "0.26.1"
+version = "0.26.2"
 dependencies = [
  "ab_glyph",
  "ahash",
diff --git a/Cargo.toml b/Cargo.toml
index a789d4d4e3c5..c38394996678 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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]
@@ -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 = [
diff --git a/crates/ecolor/CHANGELOG.md b/crates/ecolor/CHANGELOG.md
index fd010fa5069e..8f60af3df13b 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.26.2 - 2024-02-14
+* Nothing new
+
+
 ## 0.26.1 - 2024-02-11
 * Nothing new
 
diff --git a/crates/eframe/CHANGELOG.md b/crates/eframe/CHANGELOG.md
index 45f731bea888..f05669558999 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.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)
diff --git a/crates/egui-wgpu/CHANGELOG.md b/crates/egui-wgpu/CHANGELOG.md
index f16af8d49519..56cecde1cf25 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.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)
 
diff --git a/crates/egui-winit/CHANGELOG.md b/crates/egui-winit/CHANGELOG.md
index 261485dcf4ba..95961377e689 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.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
 
diff --git a/crates/egui_extras/CHANGELOG.md b/crates/egui_extras/CHANGELOG.md
index 37c879e2e022..5863612d76aa 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.26.2 - 2024-02-14
+* Nothing new
+
+
 ## 0.26.1 - 2024-02-11
 * Nothing new
 
diff --git a/crates/egui_glow/CHANGELOG.md b/crates/egui_glow/CHANGELOG.md
index 761448d88313..abb7a71292a3 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.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)!)
 
diff --git a/crates/egui_plot/CHANGELOG.md b/crates/egui_plot/CHANGELOG.md
index 768a0106a48f..19095a416bd7 100644
--- a/crates/egui_plot/CHANGELOG.md
+++ b/crates/egui_plot/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.26.2 - 2024-02-14
+* Nothing new
+
+
 ## 0.26.1 - 2024-02-11
 * Nothing new
 
diff --git a/crates/epaint/CHANGELOG.md b/crates/epaint/CHANGELOG.md
index 602c2a66e54d..02c2bc666413 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.26.2 - 2024-02-14
+* Nothing new
+
+
 ## 0.26.1 - 2024-02-11
 * Nothing new