Skip to content

Commit 014327e

Browse files
committed
Release 0.27.2 - Fix blurry web rendering
1 parent 3897be3 commit 014327e

File tree

11 files changed

+75
-24
lines changed

11 files changed

+75
-24
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ This file is updated upon each release.
77
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.
88

99

10+
## 0.27.2 - 2024-04-02
11+
### 🐛 Fixed
12+
* Fix tooltips for non-interactive widgets [#4291](https://github.com/emilk/egui/pull/4291)
13+
* Fix problem clicking the edge of a `TextEdit` [#4272](https://github.com/emilk/egui/pull/4272)
14+
* Fix: `Response::clicked_elsewhere` takes clip rect into account [#4274](https://github.com/emilk/egui/pull/4274)
15+
* Fix incorrect `Response::interact_rect` for `Area/Window` [#4273](https://github.com/emilk/egui/pull/4273)
16+
17+
### ⭐ Added
18+
* Allow disabling animations on a `ScrollArea` [#4309](https://github.com/emilk/egui/pull/4309) (thanks [@lucasmerlin](https://github.com/lucasmerlin)!)
19+
20+
1021
## 0.27.1 - 2024-03-29
1122
### 🐛 Fixed
1223
* Fix visual glitch on the right side of highly rounded rectangles [#4244](https://github.com/emilk/egui/pull/4244)

Cargo.lock

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ members = [
2020
edition = "2021"
2121
license = "MIT OR Apache-2.0"
2222
rust-version = "1.72"
23-
version = "0.27.1"
23+
version = "0.27.2"
2424

2525

2626
[profile.release]
@@ -48,17 +48,17 @@ opt-level = 2
4848

4949

5050
[workspace.dependencies]
51-
emath = { version = "0.27.1", path = "crates/emath", default-features = false }
52-
ecolor = { version = "0.27.1", path = "crates/ecolor", default-features = false }
53-
epaint = { version = "0.27.1", path = "crates/epaint", default-features = false }
54-
egui = { version = "0.27.1", path = "crates/egui", default-features = false }
55-
egui_plot = { version = "0.27.1", path = "crates/egui_plot", default-features = false }
56-
egui-winit = { version = "0.27.1", path = "crates/egui-winit", default-features = false }
57-
egui_extras = { version = "0.27.1", path = "crates/egui_extras", default-features = false }
58-
egui-wgpu = { version = "0.27.1", path = "crates/egui-wgpu", default-features = false }
59-
egui_demo_lib = { version = "0.27.1", path = "crates/egui_demo_lib", default-features = false }
60-
egui_glow = { version = "0.27.1", path = "crates/egui_glow", default-features = false }
61-
eframe = { version = "0.27.1", path = "crates/eframe", default-features = false }
51+
emath = { version = "0.27.2", path = "crates/emath", default-features = false }
52+
ecolor = { version = "0.27.2", path = "crates/ecolor", default-features = false }
53+
epaint = { version = "0.27.2", path = "crates/epaint", default-features = false }
54+
egui = { version = "0.27.2", path = "crates/egui", default-features = false }
55+
egui_plot = { version = "0.27.2", path = "crates/egui_plot", default-features = false }
56+
egui-winit = { version = "0.27.2", path = "crates/egui-winit", default-features = false }
57+
egui_extras = { version = "0.27.2", path = "crates/egui_extras", default-features = false }
58+
egui-wgpu = { version = "0.27.2", path = "crates/egui-wgpu", default-features = false }
59+
egui_demo_lib = { version = "0.27.2", path = "crates/egui_demo_lib", default-features = false }
60+
egui_glow = { version = "0.27.2", path = "crates/egui_glow", default-features = false }
61+
eframe = { version = "0.27.2", path = "crates/eframe", default-features = false }
6262

6363
#TODO(emilk): make more things workspace dependencies
6464
ahash = { version = "0.8.6", default-features = false, features = [

crates/ecolor/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ This file is updated upon each release.
66
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.
77

88

9+
## 0.27.2 - 2024-04-02
10+
* Nothing new
11+
12+
913
## 0.27.1 - 2024-03-29
1014
* Nothing new
1115

crates/eframe/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ This file is updated upon each release.
77
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.
88

99

10+
## 0.27.2 - 2024-04-02
11+
#### Desktop/Native
12+
* Fix continuous repaint on Wayland when TextEdit is focused or IME output is set [#4269](https://github.com/emilk/egui/pull/4269) (thanks [@white-axe](https://github.com/white-axe)!)
13+
* Remove a bunch of `unwrap()` [#4285](https://github.com/emilk/egui/pull/4285)
14+
15+
#### Web
16+
* Fix blurry rendering in some browsers [#4299](https://github.com/emilk/egui/pull/4299)
17+
* Correctly identify if the browser tab has focus [#4280](https://github.com/emilk/egui/pull/4280)
18+
19+
1020
## 0.27.1 - 2024-03-29
1121
* Web: repaint if the `#hash` in the URL changes [#4261](https://github.com/emilk/egui/pull/4261)
1222
* Add web support for `zoom_factor` [#4260](https://github.com/emilk/egui/pull/4260) (thanks [@justusdieckmann](https://github.com/justusdieckmann)!)

crates/egui-wgpu/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ This file is updated upon each release.
66
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.
77

88

9+
## 0.27.2 - 2024-04-02
10+
* Nothing new
11+
12+
913
## 0.27.1 - 2024-03-29
1014
* Nothing new
1115

crates/egui-winit/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ This file is updated upon each release.
55
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.
66

77

8+
## 0.27.2 - 2024-04-02
9+
* Fix continuous repaint on Wayland when TextEdit is focused or IME output is set [#4269](https://github.com/emilk/egui/pull/4269) (thanks [@white-axe](https://github.com/white-axe)!)
10+
11+
812
## 0.27.1 - 2024-03-29
913
* Nothing new
1014

crates/egui_extras/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ This file is updated upon each release.
55
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.
66

77

8+
## 0.27.2 - 2024-04-02
9+
* Nothing new
10+
11+
812
## 0.27.1 - 2024-03-29
913
* Nothing new
1014

crates/egui_glow/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ Changes since the last release can be found at <https://github.com/emilk/egui/co
66

77

88

9+
## 0.27.2 - 2024-04-02
10+
* Nothing new
11+
12+
913
## 0.27.1 - 2024-03-29
1014
* Nothing new
1115

crates/egui_plot/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ This file is updated upon each release.
55
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.
66

77

8+
## 0.27.2 - 2024-04-02
9+
* Allow zoom/pan a plot as long as it contains the mouse cursor [#4292](https://github.com/emilk/egui/pull/4292)
10+
* Prevent plot from resetting one axis while zooming/dragging the other [#4252](https://github.com/emilk/egui/pull/4252) (thanks [@YgorSouza](https://github.com/YgorSouza)!)
11+
* egui_plot: Fix the same plot tick label being painted multiple times [#4307](https://github.com/emilk/egui/pull/4307)
12+
13+
814
## 0.27.1 - 2024-03-29
915
* Nothing new
1016

crates/epaint/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ This file is updated upon each release.
55
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.
66

77

8+
## 0.27.2 - 2024-04-02
9+
* Nothing new
10+
11+
812
## 0.27.1 - 2024-03-29
913
* Fix visual glitch on the right side of highly rounded rectangles [#4244](https://github.com/emilk/egui/pull/4244)
1014
* Prevent visual glitch when shadow blur width is very high [#4245](https://github.com/emilk/egui/pull/4245)

0 commit comments

Comments
 (0)