Skip to content

Commit

Permalink
Release 0.27.1 - Bug fixes for shadows and touch input
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed Mar 29, 2024
1 parent 9ac6f33 commit 929e337
Show file tree
Hide file tree
Showing 11 changed files with 71 additions and 24 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Expand Up @@ -7,6 +7,19 @@ 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.27.1 - 2024-03-29
### 🐛 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)


## 0.27.0 - 2024-03-26 - Nicer menus and new hit test logic
The hit test logic (what is the user clicking on?) has been completely rewritten, and should now be much more accurate and helpful.
The hit test and interaction logic is run at the start of the frame, using the widgets rects from the previous frame, but the latest mouse coordinates.
Expand Down
24 changes: 12 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 12 additions & 12 deletions Cargo.toml
Expand Up @@ -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]
Expand Down Expand Up @@ -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 = [
Expand Down
4 changes: 4 additions & 0 deletions crates/ecolor/CHANGELOG.md
Expand Up @@ -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.27.1 - 2024-03-29
* Nothing new


## 0.27.0 - 2024-03-26
* Nothing new

Expand Down
5 changes: 5 additions & 0 deletions crates/eframe/CHANGELOG.md
Expand Up @@ -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.27.1 - 2024-03-29
* 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)!)


## 0.27.0 - 2024-03-26
* Update to document-features 0.2.8 [#4003](https://github.com/emilk/egui/pull/4003)
* Added `App::raw_input_hook` allows for the manipulation or filtering of raw input events [#4008](https://github.com/emilk/egui/pull/4008) (thanks [@varphone](https://github.com/varphone)!)
Expand Down
4 changes: 4 additions & 0 deletions crates/egui-wgpu/CHANGELOG.md
Expand Up @@ -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.27.1 - 2024-03-29
* Nothing new


## 0.27.0 - 2024-03-26
* Improve panic message in egui-wgpu when failing to create buffers [#3986](https://github.com/emilk/egui/pull/3986)

Expand Down
4 changes: 4 additions & 0 deletions crates/egui-winit/CHANGELOG.md
Expand Up @@ -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.27.1 - 2024-03-29
* Nothing new


## 0.27.0 - 2024-03-26
* 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)!)
* Don't clear modifier state on focus change [#4157](https://github.com/emilk/egui/pull/4157) (thanks [@ming08108](https://github.com/ming08108)!)
Expand Down
4 changes: 4 additions & 0 deletions crates/egui_extras/CHANGELOG.md
Expand Up @@ -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.27.1 - 2024-03-29
* Nothing new


## 0.27.0 - 2024-03-26
* Add scroll bar visibility option to `Table` widget [#3981](https://github.com/emilk/egui/pull/3981) (thanks [@richardhozak](https://github.com/richardhozak)!)
* Update `ehttp` to 0.5 [#4055](https://github.com/emilk/egui/pull/4055)
Expand Down
4 changes: 4 additions & 0 deletions crates/egui_glow/CHANGELOG.md
Expand Up @@ -6,6 +6,10 @@ Changes since the last release can be found at <https://github.com/emilk/egui/co



## 0.27.1 - 2024-03-29
* Nothing new


## 0.27.0 - 2024-03-26
* Only disable sRGB framebuffer on supported platforms [#3994](https://github.com/emilk/egui/pull/3994) (thanks [@Nopey](https://github.com/Nopey)!)
* 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)!)
Expand Down
4 changes: 4 additions & 0 deletions crates/egui_plot/CHANGELOG.md
Expand Up @@ -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.27.1 - 2024-03-29
* Nothing new


## 0.27.0 - 2024-03-26
* Add `sense` option to `Plot` [#4052](https://github.com/emilk/egui/pull/4052) (thanks [@AmesingFlank](https://github.com/AmesingFlank)!)
* Plot widget - allow disabling scroll for x and y separately [#4051](https://github.com/emilk/egui/pull/4051) (thanks [@YgorSouza](https://github.com/YgorSouza)!)
Expand Down
5 changes: 5 additions & 0 deletions crates/epaint/CHANGELOG.md
Expand Up @@ -5,6 +5,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.27.1 - 2024-03-29
* 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)


## 0.27.0 - 2024-03-26
* Add `ColorImage::from_gray_iter` [#3536](https://github.com/emilk/egui/pull/3536) (thanks [@wangxiaochuTHU](https://github.com/wangxiaochuTHU)!)
* Convenience const fn for `Margin`, `Rounding` and `Shadow` [#4080](https://github.com/emilk/egui/pull/4080) (thanks [@0Qwel](https://github.com/0Qwel)!)
Expand Down

0 comments on commit 929e337

Please sign in to comment.