diff --git a/CHANGELOG.md b/CHANGELOG.md index d35ef47c707..08e9ac118ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,22 @@ This file is updated upon each release. Changes since the last release can be found at or by running the `scripts/generate_changelog.py` script. +## 0.28.1 - 2024-07-05 +### ⭐ Added +* Add `Image::uri()` [#4720](https://github.com/emilk/egui/pull/4720) by [@rustbasic](https://github.com/rustbasic) + +### 🔧 Changed +* Better documentation for `Event::Zoom` [#4778](https://github.com/emilk/egui/pull/4778) by [@emilk](https://github.com/emilk) +* Hide tooltips when scrolling [#4784](https://github.com/emilk/egui/pull/4784) by [@emilk](https://github.com/emilk) +* Smoother animations [#4787](https://github.com/emilk/egui/pull/4787) by [@emilk](https://github.com/emilk) +* Hide tooltip on click [#4789](https://github.com/emilk/egui/pull/4789) by [@emilk](https://github.com/emilk) + +### 🐛 Fixed +* Fix default height of top/bottom panels [#4779](https://github.com/emilk/egui/pull/4779) by [@emilk](https://github.com/emilk) +* Show the innermost debug rectangle when pressing all modifier keys [#4782](https://github.com/emilk/egui/pull/4782) by [@emilk](https://github.com/emilk) +* Fix occasional flickering of pointer-tooltips [#4788](https://github.com/emilk/egui/pull/4788) by [@emilk](https://github.com/emilk) + + ## 0.28.0 - 2024-07-03 - Sizing pass, `UiStack` and GIF support ### ✨ Highlights * Automatic sizing of menus/popups/tooltips with no jittering, using new _sizing pass_ [#4557](https://github.com/emilk/egui/pull/4557), [#4579](https://github.com/emilk/egui/pull/4579) by [@emilk](https://github.com/emilk) diff --git a/Cargo.lock b/Cargo.lock index a0cdebb38be..12c7560b907 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1165,7 +1165,7 @@ checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650" [[package]] name = "ecolor" -version = "0.28.0" +version = "0.28.1" dependencies = [ "bytemuck", "cint", @@ -1177,7 +1177,7 @@ dependencies = [ [[package]] name = "eframe" -version = "0.28.0" +version = "0.28.1" dependencies = [ "ahash", "bytemuck", @@ -1216,7 +1216,7 @@ dependencies = [ [[package]] name = "egui" -version = "0.28.0" +version = "0.28.1" dependencies = [ "accesskit", "ahash", @@ -1233,7 +1233,7 @@ dependencies = [ [[package]] name = "egui-wgpu" -version = "0.28.0" +version = "0.28.1" dependencies = [ "ahash", "bytemuck", @@ -1251,7 +1251,7 @@ dependencies = [ [[package]] name = "egui-winit" -version = "0.28.0" +version = "0.28.1" dependencies = [ "accesskit_winit", "ahash", @@ -1270,7 +1270,7 @@ dependencies = [ [[package]] name = "egui_demo_app" -version = "0.28.0" +version = "0.28.1" dependencies = [ "bytemuck", "chrono", @@ -1295,7 +1295,7 @@ dependencies = [ [[package]] name = "egui_demo_lib" -version = "0.28.0" +version = "0.28.1" dependencies = [ "chrono", "criterion", @@ -1310,7 +1310,7 @@ dependencies = [ [[package]] name = "egui_extras" -version = "0.28.0" +version = "0.28.1" dependencies = [ "ahash", "chrono", @@ -1329,7 +1329,7 @@ dependencies = [ [[package]] name = "egui_glow" -version = "0.28.0" +version = "0.28.1" dependencies = [ "ahash", "bytemuck", @@ -1350,7 +1350,7 @@ dependencies = [ [[package]] name = "egui_plot" -version = "0.28.0" +version = "0.28.1" dependencies = [ "ahash", "document-features", @@ -1381,7 +1381,7 @@ checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" [[package]] name = "emath" -version = "0.28.0" +version = "0.28.1" dependencies = [ "bytemuck", "document-features", @@ -1456,7 +1456,7 @@ dependencies = [ [[package]] name = "epaint" -version = "0.28.0" +version = "0.28.1" dependencies = [ "ab_glyph", "ahash", @@ -2886,7 +2886,7 @@ checksum = "22686f4785f02a4fcc856d3b3bb19bf6c8160d103f7a99cc258bddd0251dc7f2" [[package]] name = "popups" -version = "0.28.0" +version = "0.28.1" dependencies = [ "eframe", "env_logger", @@ -4816,7 +4816,7 @@ checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9" [[package]] name = "xtask" -version = "0.28.0" +version = "0.28.1" [[package]] name = "yaml-rust" diff --git a/Cargo.toml b/Cargo.toml index afd4acbbe39..77416706487 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ members = [ edition = "2021" license = "MIT OR Apache-2.0" rust-version = "1.76" -version = "0.28.0" +version = "0.28.1" [profile.release] @@ -54,17 +54,17 @@ opt-level = 2 [workspace.dependencies] -emath = { version = "0.28.0", path = "crates/emath", default-features = false } -ecolor = { version = "0.28.0", path = "crates/ecolor", default-features = false } -epaint = { version = "0.28.0", path = "crates/epaint", default-features = false } -egui = { version = "0.28.0", path = "crates/egui", default-features = false } -egui_plot = { version = "0.28.0", path = "crates/egui_plot", default-features = false } -egui-winit = { version = "0.28.0", path = "crates/egui-winit", default-features = false } -egui_extras = { version = "0.28.0", path = "crates/egui_extras", default-features = false } -egui-wgpu = { version = "0.28.0", path = "crates/egui-wgpu", default-features = false } -egui_demo_lib = { version = "0.28.0", path = "crates/egui_demo_lib", default-features = false } -egui_glow = { version = "0.28.0", path = "crates/egui_glow", default-features = false } -eframe = { version = "0.28.0", path = "crates/eframe", default-features = false } +emath = { version = "0.28.1", path = "crates/emath", default-features = false } +ecolor = { version = "0.28.1", path = "crates/ecolor", default-features = false } +epaint = { version = "0.28.1", path = "crates/epaint", default-features = false } +egui = { version = "0.28.1", path = "crates/egui", default-features = false } +egui_plot = { version = "0.28.1", path = "crates/egui_plot", default-features = false } +egui-winit = { version = "0.28.1", path = "crates/egui-winit", default-features = false } +egui_extras = { version = "0.28.1", path = "crates/egui_extras", default-features = false } +egui-wgpu = { version = "0.28.1", path = "crates/egui-wgpu", default-features = false } +egui_demo_lib = { version = "0.28.1", path = "crates/egui_demo_lib", default-features = false } +egui_glow = { version = "0.28.1", path = "crates/egui_glow", default-features = false } +eframe = { version = "0.28.1", path = "crates/eframe", default-features = false } ahash = { version = "0.8.11", default-features = false, features = [ "no-rng", # we don't need DOS-protection, so we let users opt-in to it instead diff --git a/crates/ecolor/CHANGELOG.md b/crates/ecolor/CHANGELOG.md index 842b4034beb..6b374869f98 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 or by running the `scripts/generate_changelog.py` script. +## 0.28.1 - 2024-07-05 +Nothing new + + ## 0.28.0 - 2024-07-03 * Fix `hex_color!` macro by re-exporting `color_hex` crate from `ecolor` [#4372](https://github.com/emilk/egui/pull/4372) by [@dataphract](https://github.com/dataphract) * Remove `extra_asserts` and `extra_debug_asserts` feature flags [#4478](https://github.com/emilk/egui/pull/4478) by [@emilk](https://github.com/emilk) diff --git a/crates/eframe/CHANGELOG.md b/crates/eframe/CHANGELOG.md index 82ca0846603..f57b1f61eea 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 or by running the `scripts/generate_changelog.py` script. +## 0.28.1 - 2024-07-05 +* Web: only capture clicks/touches when actually over canvas [#4775](https://github.com/emilk/egui/pull/4775) by [@lucasmerlin](https://github.com/lucasmerlin) + + ## 0.28.0 - 2024-07-03 - Better integration of a eframe in a bigger website ### ✨ Highlights The eframe web canvas now works properly when its a small part of a larger web page. diff --git a/crates/egui-wgpu/CHANGELOG.md b/crates/egui-wgpu/CHANGELOG.md index 09b6089612c..97a19d6105d 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 or by running the `scripts/generate_changelog.py` script. +## 0.28.1 - 2024-07-05 +Nothing new + + ## 0.28.0 - 2024-07-03 * Update to wgpu 0.20 [#4433](https://github.com/emilk/egui/pull/4433) by [@KeKsBoTer](https://github.com/KeKsBoTer) * Fix doclinks in egui-wgpu docs [#4677](https://github.com/emilk/egui/pull/4677) by [@emilk](https://github.com/emilk) diff --git a/crates/egui-winit/CHANGELOG.md b/crates/egui-winit/CHANGELOG.md index fec563723ad..3b7faf14559 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 or by running the `scripts/generate_changelog.py` script. +## 0.28.1 - 2024-07-05 +Nothing new + + ## 0.28.0 - 2024-07-03 * Update `webbrowser` to `v1.0.0` [#4394](https://github.com/emilk/egui/pull/4394) by [@torokati44](https://github.com/torokati44) * Emit physical key presses when a non-Latin layout is active [#4461](https://github.com/emilk/egui/pull/4461) by [@TicClick](https://github.com/TicClick) diff --git a/crates/egui_extras/CHANGELOG.md b/crates/egui_extras/CHANGELOG.md index c196f194f11..d19b9c6dd78 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 or by running the `scripts/generate_changelog.py` script. +## 0.28.1 - 2024-07-05 +* Make `serde` a default (opt-out) feature of `egui_extras` [#4786](https://github.com/emilk/egui/pull/4786) by [@emilk](https://github.com/emilk) + + ## 0.28.0 - 2024-07-03 * Update `image` crate to 0.25 [#4160](https://github.com/emilk/egui/pull/4160) by [@emilk](https://github.com/emilk) * Set the `sizing_pass` flag in first frame of `egui_extras::Table` [#4613](https://github.com/emilk/egui/pull/4613) by [@emilk](https://github.com/emilk) diff --git a/crates/egui_glow/CHANGELOG.md b/crates/egui_glow/CHANGELOG.md index 38d6c494f57..2df31fbf8bf 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 or by running the `scripts/generate_changelog.py` script. +## 0.28.1 - 2024-07-05 +Nothing new + + ## 0.28.0 - 2024-07-03 ### ⭐ Added * Hide all other series when alt-clicking in the legend [#4549](https://github.com/emilk/egui/pull/4549) by [@abey79](https://github.com/abey79) diff --git a/crates/epaint/CHANGELOG.md b/crates/epaint/CHANGELOG.md index 5619c47d14c..0ae2252a078 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 or by running the `scripts/generate_changelog.py` script. +## 0.28.1 - 2024-07-05 +Nothing new + + ## 0.28.0 - 2024-07-03 ### ⭐ Added * Add `RectShape::blur_width` to implement shadows [#4267](https://github.com/emilk/egui/pull/4267) by [@emilk](https://github.com/emilk)