summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md9
-rw-r--r--Cargo.lock24
-rw-r--r--Cargo.toml24
-rw-r--r--crates/ecolor/CHANGELOG.md4
-rw-r--r--crates/eframe/CHANGELOG.md5
-rw-r--r--crates/egui-wgpu/CHANGELOG.md4
-rw-r--r--crates/egui-winit/CHANGELOG.md4
-rw-r--r--crates/egui_extras/CHANGELOG.md4
-rw-r--r--crates/egui_glow/CHANGELOG.md4
-rw-r--r--crates/egui_plot/CHANGELOG.md4
-rw-r--r--crates/epaint/CHANGELOG.md4
-rwxr-xr-xscripts/generate_changelog.py2
12 files changed, 67 insertions, 25 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b47f24f2..feeb95bc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
diff --git a/Cargo.lock b/Cargo.lock
index 3359d9bd..beede35c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -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",
diff --git a/Cargo.toml b/Cargo.toml
index d3af341a..a789d4d4 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.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 = [
diff --git a/crates/ecolor/CHANGELOG.md b/crates/ecolor/CHANGELOG.md
index 7cab53da..fd010fa5 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.1 - 2024-02-11
+* Nothing new
+
+
## 0.26.0 - 2024-02-05
* Nothing new
diff --git a/crates/eframe/CHANGELOG.md b/crates/eframe/CHANGELOG.md
index 74e1c69f..45f731be 100644
--- a/crates/eframe/CHANGELOG.md
+++ b/crates/eframe/CHANGELOG.md
@@ -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)
diff --git a/crates/egui-wgpu/CHANGELOG.md b/crates/egui-wgpu/CHANGELOG.md
index 71465a9e..f16af8d4 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.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)
diff --git a/crates/egui-winit/CHANGELOG.md b/crates/egui-winit/CHANGELOG.md
index bc42615b..261485dc 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.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)!)
diff --git a/crates/egui_extras/CHANGELOG.md b/crates/egui_extras/CHANGELOG.md
index 1f204649..37c879e2 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.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)
diff --git a/crates/egui_glow/CHANGELOG.md b/crates/egui_glow/CHANGELOG.md
index bc524cc2..761448d8 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.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)!)
diff --git a/crates/egui_plot/CHANGELOG.md b/crates/egui_plot/CHANGELOG.md
index 08b8723d..768a0106 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.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)
diff --git a/crates/epaint/CHANGELOG.md b/crates/epaint/CHANGELOG.md
index 9aa9a9bc..602c2a66 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.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)!)
diff --git a/scripts/generate_changelog.py b/scripts/generate_changelog.py
index 6c9fbef6..17b44f49 100755
--- a/scripts/generate_changelog.py
+++ b/scripts/generate_changelog.py
@@ -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)