diff --git a/CHANGELOG.md b/CHANGELOG.md index 5288f1d3..24423d29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,6 @@ NOTE: [`epaint`](crates/epaint/CHANGELOG.md), [`eframe`](crates/eframe/CHANGELOG * ⚠️ BREAKING: `egui::Context` now use closures for locking ([#2625](https://github.com/emilk/egui/pull/2625)): * `ctx.input().key_pressed(Key::A)` -> `ctx.input(|i| i.key_pressed(Key::A))` * `ui.memory().toggle_popup(popup_id)` -> `ui.memory_mut(|mem| mem.toggle_popup(popup_id))` -* Add `Slider::trailing_fill` for trailing color behind the circle like a `ProgressBar` ([#2660](https://github.com/emilk/egui/pull/2660)). ### Added ⭐ * Add `Response::drag_started_by` and `Response::drag_released_by` for convenience, similar to `dragged` and `dragged_by` ([#2507](https://github.com/emilk/egui/pull/2507)). @@ -27,6 +26,7 @@ NOTE: [`epaint`](crates/epaint/CHANGELOG.md), [`eframe`](crates/eframe/CHANGELOG * You can turn off the vertical line left of indented regions with `Visuals::indent_has_left_vline` ([#2636](https://github.com/emilk/egui/pull/2636)). * Add `Response.highlight` to highlight a widget ([#2632](https://github.com/emilk/egui/pull/2632)). * Add `Separator::grow` and `Separator::shrink` ([#2665](https://github.com/emilk/egui/pull/2665)). +* Add `Slider::trailing_fill` for trailing color behind the circle like a `ProgressBar` ([#2660](https://github.com/emilk/egui/pull/2660)). ### Changed 🔧 * Improved plot grid appearance ([#2412](https://github.com/emilk/egui/pull/2412)). @@ -35,13 +35,13 @@ NOTE: [`epaint`](crates/epaint/CHANGELOG.md), [`eframe`](crates/eframe/CHANGELOG * `DragValue` and `Slider` now use the proportional font ([#2638](https://github.com/emilk/egui/pull/2638)). * `ScrollArea` is less aggressive about clipping its contents ([#2665](https://github.com/emilk/egui/pull/2665)). * Updated to be compatible with a major breaking change in AccessKit that drastically reduces memory usage when accessibility is enabled ([#2678](https://github.com/emilk/egui/pull/2678)). +* Improve `DragValue` behavior ([#2649](https://github.com/emilk/egui/pull/2649), [#2650](https://github.com/emilk/egui/pull/2650), [#2688](https://github.com/emilk/egui/pull/2688), [#2638](https://github.com/emilk/egui/pull/2638)). ### Fixed 🐛 * Trigger `PointerEvent::Released` for drags ([#2507](https://github.com/emilk/egui/pull/2507)). * Expose `TextEdit`'s multiline flag to AccessKit ([#2448](https://github.com/emilk/egui/pull/2448)). * Don't render `\r` (Carriage Return) ([#2452](https://github.com/emilk/egui/pull/2452)). * The `button_padding` style option works closer as expected with image+text buttons now ([#2510](https://github.com/emilk/egui/pull/2510)). -* Fixed rendering of `…` (ellipsis). * Menus are now moved to fit on the screen. * Fix `Window::pivot` causing windows to move around ([#2694](https://github.com/emilk/egui/pull/2694)). diff --git a/crates/eframe/CHANGELOG.md b/crates/eframe/CHANGELOG.md index c2ea81e6..6837656f 100644 --- a/crates/eframe/CHANGELOG.md +++ b/crates/eframe/CHANGELOG.md @@ -10,17 +10,18 @@ NOTE: [`egui-winit`](../egui-winit/CHANGELOG.md), [`egui_glium`](../egui_glium/C #### Desktop/Native: * `eframe::run_native` now returns a `Result` ([#2433](https://github.com/emilk/egui/pull/2433)). -* Fixed window position persistence for Windows ([#2583](https://github.com/emilk/egui/issues/2583)). * Update to `winit` 0.28, adding support for mac trackpad zoom ([#2654](https://github.com/emilk/egui/pull/2654)). * Fix bug where the cursor could get stuck using the wrong icon. * `NativeOptions::transparent` now works with the wgpu backend ([#2684](https://github.com/emilk/egui/pull/2684)). +* Add `Frame::set_minimized` and `set_maximized` ([#2292](https://github.com/emilk/egui/pull/2292), [#2672](https://github.com/emilk/egui/pull/2672)). +* Fixed persistence of native window position on Windows OS ([#2583](https://github.com/emilk/egui/issues/2583)). #### Web: * Prevent ctrl-P/cmd-P from opening the print dialog ([#2598](https://github.com/emilk/egui/pull/2598)). ## 0.20.1 - 2022-12-11 -* Fix docs.rs build ([#2420](https://github.com/emilk/egui/pull/2420)). +* Fix [docs.rs](https://docs.rs/eframe) build ([#2420](https://github.com/emilk/egui/pull/2420)). ## 0.20.0 - 2022-12-08 - AccessKit integration and `wgpu` web support diff --git a/crates/egui-wgpu/CHANGELOG.md b/crates/egui-wgpu/CHANGELOG.md index 7126f970..d3ceb556 100644 --- a/crates/egui-wgpu/CHANGELOG.md +++ b/crates/egui-wgpu/CHANGELOG.md @@ -3,7 +3,7 @@ All notable changes to the `egui-wgpu` integration will be noted in this file. ## Unreleased -* update to wgpu 0.15 ([#2629](https://github.com/emilk/egui/pull/2629)) +* Update to `wgpu` 0.15 ([#2629](https://github.com/emilk/egui/pull/2629)) * Return `Err` instead of panic if we can't find a device ([#2428](https://github.com/emilk/egui/pull/2428)). * `winit::Painter::set_window` is now `async` ([#2434](https://github.com/emilk/egui/pull/2434)). * `egui-wgpu` now only depends on `epaint` instead of the entire `egui` ([#2438](https://github.com/emilk/egui/pull/2438)). diff --git a/crates/egui-winit/CHANGELOG.md b/crates/egui-winit/CHANGELOG.md index 06233538..db7df57c 100644 --- a/crates/egui-winit/CHANGELOG.md +++ b/crates/egui-winit/CHANGELOG.md @@ -3,14 +3,14 @@ All notable changes to the `egui-winit` integration will be noted in this file. ## Unreleased -* Fixed window position persistence for Windows ([#2583](https://github.com/emilk/egui/issues/2583)). +* Fixed persistence of native window position on Windows OS ([#2583](https://github.com/emilk/egui/issues/2583)). * Update to `winit` 0.28, adding support for mac trackpad zoom ([#2654](https://github.com/emilk/egui/pull/2654)). * Remove the `screen_reader` feature. Use the `accesskit` feature flag instead ([#2669](https://github.com/emilk/egui/pull/2669)). * Fix bug where the cursor could get stuck using the wrong icon. ## 0.20.1 - 2022-12-11 -* Fix docs.rs build ([#2420](https://github.com/emilk/egui/pull/2420)). +* Fix [docs.rs](https://docs.rs/egui-winit) build ([#2420](https://github.com/emilk/egui/pull/2420)). ## 0.20.0 - 2022-12-08 diff --git a/crates/egui/src/ui.rs b/crates/egui/src/ui.rs index 04fab7e4..5990fb7e 100644 --- a/crates/egui/src/ui.rs +++ b/crates/egui/src/ui.rs @@ -2174,7 +2174,6 @@ impl Ui { } } - #[inline] /// Create a menu button with an image that when clicked will show the given menu. /// /// If called from within a menu this will instead create a button for a sub-menu. @@ -2198,6 +2197,7 @@ impl Ui { /// ``` /// /// See also: [`Self::close_menu`] and [`Response::context_menu`]. + #[inline] pub fn menu_image_button( &mut self, texture_id: TextureId, diff --git a/crates/egui_glium/CHANGELOG.md b/crates/egui_glium/CHANGELOG.md index 5e27204e..15761c53 100644 --- a/crates/egui_glium/CHANGELOG.md +++ b/crates/egui_glium/CHANGELOG.md @@ -7,7 +7,7 @@ All notable changes to the `egui_glium` integration will be noted in this file. ## 0.20.1 - 2022-12-11 -* Fix docs.rs build ([#2420](https://github.com/emilk/egui/pull/2420)). +* Fix [docs.rs](https://docs.rs/egui_glium) build ([#2420](https://github.com/emilk/egui/pull/2420)). ## 0.20.0 - 2022-12-08 diff --git a/crates/egui_glow/CHANGELOG.md b/crates/egui_glow/CHANGELOG.md index 3710fb55..3f72dbcb 100644 --- a/crates/egui_glow/CHANGELOG.md +++ b/crates/egui_glow/CHANGELOG.md @@ -3,12 +3,12 @@ All notable changes to the `egui_glow` integration will be noted in this file. ## Unreleased -* Remove the `screen_reader` feature ([#2669](https://github.com/emilk/egui/pull/2669)). * Update to `glow` 0.12 ([#2695](https://github.com/emilk/egui/pull/2695)). +* Remove the `screen_reader` feature ([#2669](https://github.com/emilk/egui/pull/2669)). ## 0.20.1 - 2022-12-11 -* Fix docs.rs build ([#2420](https://github.com/emilk/egui/pull/2420)). +* Fix [docs.rs](https://docs.rs/egui_glow) build ([#2420](https://github.com/emilk/egui/pull/2420)). ## 0.20.0 - 2022-12-08