summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md11
-rw-r--r--Cargo.lock24
-rw-r--r--Cargo.toml24
-rw-r--r--crates/ecolor/CHANGELOG.md4
-rw-r--r--crates/eframe/CHANGELOG.md10
-rw-r--r--crates/egui-wgpu/CHANGELOG.md4
-rw-r--r--crates/egui-winit/CHANGELOG.md4
-rw-r--r--crates/egui_extras/CHANGELOG.md4
-rw-r--r--crates/egui_glow/CHANGELOG.md4
-rw-r--r--crates/egui_plot/CHANGELOG.md6
-rw-r--r--crates/epaint/CHANGELOG.md4
11 files changed, 75 insertions, 24 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 764b01ee..35cab321 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,17 @@ 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
+### 🐛 Fixed
+* Fix tooltips for non-interactive widgets [#4291](https://github.com/emilk/egui/pull/4291)
+* Fix problem clicking the edge of a `TextEdit` [#4272](https://github.com/emilk/egui/pull/4272)
+* Fix: `Response::clicked_elsewhere` takes clip rect into account [#4274](https://github.com/emilk/egui/pull/4274)
+* Fix incorrect `Response::interact_rect` for `Area/Window` [#4273](https://github.com/emilk/egui/pull/4273)
+
+### ⭐ Added
+* Allow disabling animations on a `ScrollArea` [#4309](https://github.com/emilk/egui/pull/4309) (thanks [@lucasmerlin](https://github.com/lucasmerlin)!)
+
+
## 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)
diff --git a/Cargo.lock b/Cargo.lock
index 0a72704b..c6d87271 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1187,7 +1187,7 @@ checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650"
[[package]]
name = "ecolor"
-version = "0.27.1"
+version = "0.27.2"
dependencies = [
"bytemuck",
"cint",
@@ -1198,7 +1198,7 @@ dependencies = [
[[package]]
name = "eframe"
-version = "0.27.1"
+version = "0.27.2"
dependencies = [
"bytemuck",
"cocoa",
@@ -1236,7 +1236,7 @@ dependencies = [
[[package]]
name = "egui"
-version = "0.27.1"
+version = "0.27.2"
dependencies = [
"accesskit",
"ahash",
@@ -1252,7 +1252,7 @@ dependencies = [
[[package]]
name = "egui-wgpu"
-version = "0.27.1"
+version = "0.27.2"
dependencies = [
"bytemuck",
"document-features",
@@ -1269,7 +1269,7 @@ dependencies = [
[[package]]
name = "egui-winit"
-version = "0.27.1"
+version = "0.27.2"
dependencies = [
"accesskit_winit",
"arboard",
@@ -1287,7 +1287,7 @@ dependencies = [
[[package]]
name = "egui_demo_app"
-version = "0.27.1"
+version = "0.27.2"
dependencies = [
"bytemuck",
"chrono",
@@ -1312,7 +1312,7 @@ dependencies = [
[[package]]
name = "egui_demo_lib"
-version = "0.27.1"
+version = "0.27.2"
dependencies = [
"chrono",
"criterion",
@@ -1327,7 +1327,7 @@ dependencies = [
[[package]]
name = "egui_extras"
-version = "0.27.1"
+version = "0.27.2"
dependencies = [
"chrono",
"document-features",
@@ -1345,7 +1345,7 @@ dependencies = [
[[package]]
name = "egui_glow"
-version = "0.27.1"
+version = "0.27.2"
dependencies = [
"bytemuck",
"document-features",
@@ -1365,7 +1365,7 @@ dependencies = [
[[package]]
name = "egui_plot"
-version = "0.27.1"
+version = "0.27.2"
dependencies = [
"document-features",
"egui",
@@ -1394,7 +1394,7 @@ checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
[[package]]
name = "emath"
-version = "0.27.1"
+version = "0.27.2"
dependencies = [
"bytemuck",
"document-features",
@@ -1469,7 +1469,7 @@ dependencies = [
[[package]]
name = "epaint"
-version = "0.27.1"
+version = "0.27.2"
dependencies = [
"ab_glyph",
"ahash",
diff --git a/Cargo.toml b/Cargo.toml
index bde03d7c..598eae08 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -20,7 +20,7 @@ members = [
edition = "2021"
license = "MIT OR Apache-2.0"
rust-version = "1.72"
-version = "0.27.1"
+version = "0.27.2"
[profile.release]
@@ -48,17 +48,17 @@ opt-level = 2
[workspace.dependencies]
-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 }
+emath = { version = "0.27.2", path = "crates/emath", default-features = false }
+ecolor = { version = "0.27.2", path = "crates/ecolor", default-features = false }
+epaint = { version = "0.27.2", path = "crates/epaint", default-features = false }
+egui = { version = "0.27.2", path = "crates/egui", default-features = false }
+egui_plot = { version = "0.27.2", path = "crates/egui_plot", default-features = false }
+egui-winit = { version = "0.27.2", path = "crates/egui-winit", default-features = false }
+egui_extras = { version = "0.27.2", path = "crates/egui_extras", default-features = false }
+egui-wgpu = { version = "0.27.2", path = "crates/egui-wgpu", default-features = false }
+egui_demo_lib = { version = "0.27.2", path = "crates/egui_demo_lib", default-features = false }
+egui_glow = { version = "0.27.2", path = "crates/egui_glow", default-features = false }
+eframe = { version = "0.27.2", path = "crates/eframe", default-features = false }
#TODO(emilk): make more things workspace dependencies
ahash = { version = "0.8.6", default-features = false, features = [
diff --git a/crates/ecolor/CHANGELOG.md b/crates/ecolor/CHANGELOG.md
index 493d125e..3316a408 100644
--- a/crates/ecolor/CHANGELOG.md
+++ b/crates/ecolor/CHANGELOG.md
@@ -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.2 - 2024-04-02
+* Nothing new
+
+
## 0.27.1 - 2024-03-29
* Nothing new
diff --git a/crates/eframe/CHANGELOG.md b/crates/eframe/CHANGELOG.md
index e110500c..dfea5671 100644
--- a/crates/eframe/CHANGELOG.md
+++ b/crates/eframe/CHANGELOG.md
@@ -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)!)
diff --git a/crates/egui-wgpu/CHANGELOG.md b/crates/egui-wgpu/CHANGELOG.md
index 9dea60d1..48aa5cdb 100644
--- a/crates/egui-wgpu/CHANGELOG.md
+++ b/crates/egui-wgpu/CHANGELOG.md
@@ -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.2 - 2024-04-02
+* Nothing new
+
+
## 0.27.1 - 2024-03-29
* Nothing new
diff --git a/crates/egui-winit/CHANGELOG.md b/crates/egui-winit/CHANGELOG.md
index 52dd56e8..20662752 100644
--- a/crates/egui-winit/CHANGELOG.md
+++ b/crates/egui-winit/CHANGELOG.md
@@ -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.2 - 2024-04-02
+* 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)!)
+
+
## 0.27.1 - 2024-03-29
* Nothing new
diff --git a/crates/egui_extras/CHANGELOG.md b/crates/egui_extras/CHANGELOG.md
index 0980768a..cc00e7e2 100644
--- a/crates/egui_extras/CHANGELOG.md
+++ b/crates/egui_extras/CHANGELOG.md
@@ -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.2 - 2024-04-02
+* Nothing new
+
+
## 0.27.1 - 2024-03-29
* Nothing new
diff --git a/crates/egui_glow/CHANGELOG.md b/crates/egui_glow/CHANGELOG.md
index f39d8a19..627b1c2e 100644
--- a/crates/egui_glow/CHANGELOG.md
+++ b/crates/egui_glow/CHANGELOG.md
@@ -6,6 +6,10 @@ Changes since the last release can be found at <https://github.com/emilk/egui/co
+## 0.27.2 - 2024-04-02
+* Nothing new
+
+
## 0.27.1 - 2024-03-29
* Nothing new
diff --git a/crates/egui_plot/CHANGELOG.md b/crates/egui_plot/CHANGELOG.md
index ce208bcc..46f3d76f 100644
--- a/crates/egui_plot/CHANGELOG.md
+++ b/crates/egui_plot/CHANGELOG.md
@@ -5,6 +5,12 @@ 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
+* Allow zoom/pan a plot as long as it contains the mouse cursor [#4292](https://github.com/emilk/egui/pull/4292)
+* 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)!)
+* egui_plot: Fix the same plot tick label being painted multiple times [#4307](https://github.com/emilk/egui/pull/4307)
+
+
## 0.27.1 - 2024-03-29
* Nothing new
diff --git a/crates/epaint/CHANGELOG.md b/crates/epaint/CHANGELOG.md
index b5fc33f6..a4f935a3 100644
--- a/crates/epaint/CHANGELOG.md
+++ b/crates/epaint/CHANGELOG.md
@@ -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.2 - 2024-04-02
+* Nothing new
+
+
## 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)