You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## egui changelog
### 🐛 Fixed
* Fix visual glitch on the right side of highly rounded rectangles
[emilk#4244](emilk#4244)
* Prevent visual glitch when shadow blur width is very high
[emilk#4245](emilk#4245)
* Fix `InputState::any_touches` and add `InputState::has_touch_screen`
[emilk#4247](emilk#4247)
* Fix `Context::repaint_causes` returning no causes
[emilk#4248](emilk#4248)
* Fix touch-and-hold to open context menu
[emilk#4249](emilk#4249)
* Hide shortcut text on zoom buttons if `zoom_with_keyboard` is false
[emilk#4262](emilk#4262)
### 🔧 Changed
* Don't apply a clip rect to the contents of an `Area` or `Window`
[emilk#4258](emilk#4258)
## eframe changelog
* Web: repaint if the `#hash` in the URL changes
[emilk#4261](emilk#4261)
* Add web support for `zoom_factor`
[emilk#4260](emilk#4260) (thanks
[@justusdieckmann](https://github.com/justusdieckmann)!)
---------
Co-authored-by: Justus Dieckmann <45795270+justusdieckmann@users.noreply.github.com>
Copy file name to clipboardexpand all lines: CHANGELOG.md
+13
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,19 @@ Changes since the last release can be found at <https://github.com/emilk/egui/co
9
9
# Unreleased
10
10
* Fixed menubar in macOS
11
11
12
+
## 0.27.1 - 2024-03-29
13
+
### 🐛 Fixed
14
+
* Fix visual glitch on the right side of highly rounded rectangles [#4244](https://github.com/emilk/egui/pull/4244)
15
+
* Prevent visual glitch when shadow blur width is very high [#4245](https://github.com/emilk/egui/pull/4245)
16
+
* Fix `InputState::any_touches` and add `InputState::has_touch_screen`[#4247](https://github.com/emilk/egui/pull/4247)
17
+
* Fix `Context::repaint_causes` returning no causes [#4248](https://github.com/emilk/egui/pull/4248)
18
+
* Fix touch-and-hold to open context menu [#4249](https://github.com/emilk/egui/pull/4249)
19
+
* Hide shortcut text on zoom buttons if `zoom_with_keyboard` is false [#4262](https://github.com/emilk/egui/pull/4262)
20
+
21
+
### 🔧 Changed
22
+
* Don't apply a clip rect to the contents of an `Area` or `Window`[#4258](https://github.com/emilk/egui/pull/4258)
23
+
24
+
12
25
## 0.27.0 - 2024-03-26 - Nicer menus and new hit test logic
13
26
The hit test logic (what is the user clicking on?) has been completely rewritten, and should now be much more accurate and helpful.
14
27
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.
Copy file name to clipboardexpand all lines: crates/ecolor/CHANGELOG.md
+4
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,10 @@ This file is updated upon each release.
6
6
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.
Copy file name to clipboardexpand all lines: crates/eframe/CHANGELOG.md
+5
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,11 @@ This file is updated upon each release.
7
7
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.
8
8
9
9
10
+
## 0.27.1 - 2024-03-29
11
+
* Web: repaint if the `#hash` in the URL changes [#4261](https://github.com/emilk/egui/pull/4261)
12
+
* Add web support for `zoom_factor`[#4260](https://github.com/emilk/egui/pull/4260) (thanks [@justusdieckmann](https://github.com/justusdieckmann)!)
13
+
14
+
10
15
## 0.27.0 - 2024-03-26
11
16
* Update to document-features 0.2.8 [#4003](https://github.com/emilk/egui/pull/4003)
12
17
* 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)!)
Copy file name to clipboardexpand all lines: crates/egui-wgpu/CHANGELOG.md
+4
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,10 @@ This file is updated upon each release.
6
6
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.
7
7
8
8
9
+
## 0.27.1 - 2024-03-29
10
+
* Nothing new
11
+
12
+
9
13
## 0.27.0 - 2024-03-26
10
14
* Improve panic message in egui-wgpu when failing to create buffers [#3986](https://github.com/emilk/egui/pull/3986)
Copy file name to clipboardexpand all lines: crates/egui-winit/CHANGELOG.md
+4
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,10 @@ This file is updated upon each release.
5
5
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.
6
6
7
7
8
+
## 0.27.1 - 2024-03-29
9
+
* Nothing new
10
+
11
+
8
12
## 0.27.0 - 2024-03-26
9
13
* 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)!)
10
14
* Don't clear modifier state on focus change [#4157](https://github.com/emilk/egui/pull/4157) (thanks [@ming08108](https://github.com/ming08108)!)
Copy file name to clipboardexpand all lines: crates/egui_extras/CHANGELOG.md
+4
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,10 @@ This file is updated upon each release.
5
5
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.
6
6
7
7
8
+
## 0.27.1 - 2024-03-29
9
+
* Nothing new
10
+
11
+
8
12
## 0.27.0 - 2024-03-26
9
13
* Add scroll bar visibility option to `Table` widget [#3981](https://github.com/emilk/egui/pull/3981) (thanks [@richardhozak](https://github.com/richardhozak)!)
10
14
* Update `ehttp` to 0.5 [#4055](https://github.com/emilk/egui/pull/4055)
Copy file name to clipboardexpand all lines: crates/egui_glow/CHANGELOG.md
+4
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,10 @@ Changes since the last release can be found at <https://github.com/emilk/egui/co
6
6
7
7
8
8
9
+
## 0.27.1 - 2024-03-29
10
+
* Nothing new
11
+
12
+
9
13
## 0.27.0 - 2024-03-26
10
14
* Only disable sRGB framebuffer on supported platforms [#3994](https://github.com/emilk/egui/pull/3994) (thanks [@Nopey](https://github.com/Nopey)!)
11
15
* 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)!)
Copy file name to clipboardexpand all lines: crates/egui_plot/CHANGELOG.md
+4
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,10 @@ This file is updated upon each release.
5
5
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.
6
6
7
7
8
+
## 0.27.1 - 2024-03-29
9
+
* Nothing new
10
+
11
+
8
12
## 0.27.0 - 2024-03-26
9
13
* Add `sense` option to `Plot`[#4052](https://github.com/emilk/egui/pull/4052) (thanks [@AmesingFlank](https://github.com/AmesingFlank)!)
10
14
* Plot widget - allow disabling scroll for x and y separately [#4051](https://github.com/emilk/egui/pull/4051) (thanks [@YgorSouza](https://github.com/YgorSouza)!)
Copy file name to clipboardexpand all lines: crates/epaint/CHANGELOG.md
+5
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,11 @@ This file is updated upon each release.
5
5
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.
6
6
7
7
8
+
## 0.27.1 - 2024-03-29
9
+
* Fix visual glitch on the right side of highly rounded rectangles [#4244](https://github.com/emilk/egui/pull/4244)
10
+
* Prevent visual glitch when shadow blur width is very high [#4245](https://github.com/emilk/egui/pull/4245)
0 commit comments