1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-29 12:50:04 -04:00

Release 0.27.2 - Fix blurry web rendering

This commit is contained in:
Emil Ernerfeldt
2024-04-02 18:13:37 +02:00
parent de9e0adf17
commit 15b0ef3259
11 changed files with 75 additions and 24 deletions

View File

@@ -7,6 +7,16 @@ 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.2 - 2024-04-02
#### Desktop/Native
* 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)!)
* Remove a bunch of `unwrap()` [#4285](https://github.com/emilk/egui/pull/4285)
#### Web
* Fix blurry rendering in some browsers [#4299](https://github.com/emilk/egui/pull/4299)
* Correctly identify if the browser tab has focus [#4280](https://github.com/emilk/egui/pull/4280)
## 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)!)