mirror of
https://github.com/emilk/egui.git
synced 2026-08-29 04:40:03 -04:00
Release 0.27.1 (#4264)
## egui changelog ### 🐛 Fixed * Fix visual glitch on the right side of highly rounded rectangles [#4244](https://github.com/emilk/egui/pull/4244) * Prevent visual glitch when shadow blur width is very high [#4245](https://github.com/emilk/egui/pull/4245) * Fix `InputState::any_touches` and add `InputState::has_touch_screen` [#4247](https://github.com/emilk/egui/pull/4247) * Fix `Context::repaint_causes` returning no causes [#4248](https://github.com/emilk/egui/pull/4248) * Fix touch-and-hold to open context menu [#4249](https://github.com/emilk/egui/pull/4249) * Hide shortcut text on zoom buttons if `zoom_with_keyboard` is false [#4262](https://github.com/emilk/egui/pull/4262) ### 🔧 Changed * Don't apply a clip rect to the contents of an `Area` or `Window` [#4258](https://github.com/emilk/egui/pull/4258) ## eframe changelog * Web: repaint if the `#hash` in the URL changes [#4261](https://github.com/emilk/egui/pull/4261) * Add web support for `zoom_factor` [#4260](https://github.com/emilk/egui/pull/4260) (thanks [@justusdieckmann](https://github.com/justusdieckmann)!) --------- Co-authored-by: Justus Dieckmann <45795270+justusdieckmann@users.noreply.github.com>
This commit is contained in:
24
Cargo.toml
24
Cargo.toml
@@ -20,7 +20,7 @@ members = [
|
||||
edition = "2021"
|
||||
license = "MIT OR Apache-2.0"
|
||||
rust-version = "1.72"
|
||||
version = "0.27.0"
|
||||
version = "0.27.1"
|
||||
|
||||
|
||||
[profile.release]
|
||||
@@ -48,17 +48,17 @@ opt-level = 2
|
||||
|
||||
|
||||
[workspace.dependencies]
|
||||
emath = { version = "0.27.0", path = "crates/emath", default-features = false }
|
||||
ecolor = { version = "0.27.0", path = "crates/ecolor", default-features = false }
|
||||
epaint = { version = "0.27.0", path = "crates/epaint", default-features = false }
|
||||
egui = { version = "0.27.0", path = "crates/egui", default-features = false }
|
||||
egui_plot = { version = "0.27.0", path = "crates/egui_plot", default-features = false }
|
||||
egui-winit = { version = "0.27.0", path = "crates/egui-winit", default-features = false }
|
||||
egui_extras = { version = "0.27.0", path = "crates/egui_extras", default-features = false }
|
||||
egui-wgpu = { version = "0.27.0", path = "crates/egui-wgpu", default-features = false }
|
||||
egui_demo_lib = { version = "0.27.0", path = "crates/egui_demo_lib", default-features = false }
|
||||
egui_glow = { version = "0.27.0", path = "crates/egui_glow", default-features = false }
|
||||
eframe = { version = "0.27.0", path = "crates/eframe", default-features = false }
|
||||
emath = { version = "0.27.1", path = "crates/emath", default-features = false }
|
||||
ecolor = { version = "0.27.1", path = "crates/ecolor", default-features = false }
|
||||
epaint = { version = "0.27.1", path = "crates/epaint", default-features = false }
|
||||
egui = { version = "0.27.1", path = "crates/egui", default-features = false }
|
||||
egui_plot = { version = "0.27.1", path = "crates/egui_plot", default-features = false }
|
||||
egui-winit = { version = "0.27.1", path = "crates/egui-winit", default-features = false }
|
||||
egui_extras = { version = "0.27.1", path = "crates/egui_extras", default-features = false }
|
||||
egui-wgpu = { version = "0.27.1", path = "crates/egui-wgpu", default-features = false }
|
||||
egui_demo_lib = { version = "0.27.1", path = "crates/egui_demo_lib", default-features = false }
|
||||
egui_glow = { version = "0.27.1", path = "crates/egui_glow", default-features = false }
|
||||
eframe = { version = "0.27.1", path = "crates/eframe", default-features = false }
|
||||
|
||||
#TODO(emilk): make more things workspace dependencies
|
||||
ahash = { version = "0.8.6", default-features = false, features = [
|
||||
|
||||
Reference in New Issue
Block a user