Skip to content

Commit

Permalink
Release 0.28.1 - Tooltip tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed Jul 5, 2024
1 parent 13fddc6 commit abab068
Show file tree
Hide file tree
Showing 11 changed files with 74 additions and 26 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,22 @@ 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.28.1 - 2024-07-05
### ⭐ Added
* Add `Image::uri()` [#4720](https://github.com/emilk/egui/pull/4720) by [@rustbasic](https://github.com/rustbasic)

### 🔧 Changed
* Better documentation for `Event::Zoom` [#4778](https://github.com/emilk/egui/pull/4778) by [@emilk](https://github.com/emilk)
* Hide tooltips when scrolling [#4784](https://github.com/emilk/egui/pull/4784) by [@emilk](https://github.com/emilk)
* Smoother animations [#4787](https://github.com/emilk/egui/pull/4787) by [@emilk](https://github.com/emilk)
* Hide tooltip on click [#4789](https://github.com/emilk/egui/pull/4789) by [@emilk](https://github.com/emilk)

### 🐛 Fixed
* Fix default height of top/bottom panels [#4779](https://github.com/emilk/egui/pull/4779) by [@emilk](https://github.com/emilk)
* Show the innermost debug rectangle when pressing all modifier keys [#4782](https://github.com/emilk/egui/pull/4782) by [@emilk](https://github.com/emilk)
* Fix occasional flickering of pointer-tooltips [#4788](https://github.com/emilk/egui/pull/4788) by [@emilk](https://github.com/emilk)


## 0.28.0 - 2024-07-03 - Sizing pass, `UiStack` and GIF support
### ✨ Highlights
* Automatic sizing of menus/popups/tooltips with no jittering, using new _sizing pass_ [#4557](https://github.com/emilk/egui/pull/4557), [#4579](https://github.com/emilk/egui/pull/4579) by [@emilk](https://github.com/emilk)
Expand Down
28 changes: 14 additions & 14 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1165,7 +1165,7 @@ checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650"

[[package]]
name = "ecolor"
version = "0.28.0"
version = "0.28.1"
dependencies = [
"bytemuck",
"cint",
Expand All @@ -1177,7 +1177,7 @@ dependencies = [

[[package]]
name = "eframe"
version = "0.28.0"
version = "0.28.1"
dependencies = [
"ahash",
"bytemuck",
Expand Down Expand Up @@ -1216,7 +1216,7 @@ dependencies = [

[[package]]
name = "egui"
version = "0.28.0"
version = "0.28.1"
dependencies = [
"accesskit",
"ahash",
Expand All @@ -1233,7 +1233,7 @@ dependencies = [

[[package]]
name = "egui-wgpu"
version = "0.28.0"
version = "0.28.1"
dependencies = [
"ahash",
"bytemuck",
Expand All @@ -1251,7 +1251,7 @@ dependencies = [

[[package]]
name = "egui-winit"
version = "0.28.0"
version = "0.28.1"
dependencies = [
"accesskit_winit",
"ahash",
Expand All @@ -1270,7 +1270,7 @@ dependencies = [

[[package]]
name = "egui_demo_app"
version = "0.28.0"
version = "0.28.1"
dependencies = [
"bytemuck",
"chrono",
Expand All @@ -1295,7 +1295,7 @@ dependencies = [

[[package]]
name = "egui_demo_lib"
version = "0.28.0"
version = "0.28.1"
dependencies = [
"chrono",
"criterion",
Expand All @@ -1310,7 +1310,7 @@ dependencies = [

[[package]]
name = "egui_extras"
version = "0.28.0"
version = "0.28.1"
dependencies = [
"ahash",
"chrono",
Expand All @@ -1329,7 +1329,7 @@ dependencies = [

[[package]]
name = "egui_glow"
version = "0.28.0"
version = "0.28.1"
dependencies = [
"ahash",
"bytemuck",
Expand All @@ -1350,7 +1350,7 @@ dependencies = [

[[package]]
name = "egui_plot"
version = "0.28.0"
version = "0.28.1"
dependencies = [
"ahash",
"document-features",
Expand Down Expand Up @@ -1381,7 +1381,7 @@ checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"

[[package]]
name = "emath"
version = "0.28.0"
version = "0.28.1"
dependencies = [
"bytemuck",
"document-features",
Expand Down Expand Up @@ -1456,7 +1456,7 @@ dependencies = [

[[package]]
name = "epaint"
version = "0.28.0"
version = "0.28.1"
dependencies = [
"ab_glyph",
"ahash",
Expand Down Expand Up @@ -2886,7 +2886,7 @@ checksum = "22686f4785f02a4fcc856d3b3bb19bf6c8160d103f7a99cc258bddd0251dc7f2"

[[package]]
name = "popups"
version = "0.28.0"
version = "0.28.1"
dependencies = [
"eframe",
"env_logger",
Expand Down Expand Up @@ -4816,7 +4816,7 @@ checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9"

[[package]]
name = "xtask"
version = "0.28.0"
version = "0.28.1"

[[package]]
name = "yaml-rust"
Expand Down
24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ members = [
edition = "2021"
license = "MIT OR Apache-2.0"
rust-version = "1.76"
version = "0.28.0"
version = "0.28.1"


[profile.release]
Expand Down Expand Up @@ -54,17 +54,17 @@ opt-level = 2


[workspace.dependencies]
emath = { version = "0.28.0", path = "crates/emath", default-features = false }
ecolor = { version = "0.28.0", path = "crates/ecolor", default-features = false }
epaint = { version = "0.28.0", path = "crates/epaint", default-features = false }
egui = { version = "0.28.0", path = "crates/egui", default-features = false }
egui_plot = { version = "0.28.0", path = "crates/egui_plot", default-features = false }
egui-winit = { version = "0.28.0", path = "crates/egui-winit", default-features = false }
egui_extras = { version = "0.28.0", path = "crates/egui_extras", default-features = false }
egui-wgpu = { version = "0.28.0", path = "crates/egui-wgpu", default-features = false }
egui_demo_lib = { version = "0.28.0", path = "crates/egui_demo_lib", default-features = false }
egui_glow = { version = "0.28.0", path = "crates/egui_glow", default-features = false }
eframe = { version = "0.28.0", path = "crates/eframe", default-features = false }
emath = { version = "0.28.1", path = "crates/emath", default-features = false }
ecolor = { version = "0.28.1", path = "crates/ecolor", default-features = false }
epaint = { version = "0.28.1", path = "crates/epaint", default-features = false }
egui = { version = "0.28.1", path = "crates/egui", default-features = false }
egui_plot = { version = "0.28.1", path = "crates/egui_plot", default-features = false }
egui-winit = { version = "0.28.1", path = "crates/egui-winit", default-features = false }
egui_extras = { version = "0.28.1", path = "crates/egui_extras", default-features = false }
egui-wgpu = { version = "0.28.1", path = "crates/egui-wgpu", default-features = false }
egui_demo_lib = { version = "0.28.1", path = "crates/egui_demo_lib", default-features = false }
egui_glow = { version = "0.28.1", path = "crates/egui_glow", default-features = false }
eframe = { version = "0.28.1", path = "crates/eframe", default-features = false }

ahash = { version = "0.8.11", default-features = false, features = [
"no-rng", # we don't need DOS-protection, so we let users opt-in to it instead
Expand Down
4 changes: 4 additions & 0 deletions crates/ecolor/CHANGELOG.md
Original file line number Diff line number Diff line change
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.28.1 - 2024-07-05
Nothing new


## 0.28.0 - 2024-07-03
* Fix `hex_color!` macro by re-exporting `color_hex` crate from `ecolor` [#4372](https://github.com/emilk/egui/pull/4372) by [@dataphract](https://github.com/dataphract)
* Remove `extra_asserts` and `extra_debug_asserts` feature flags [#4478](https://github.com/emilk/egui/pull/4478) by [@emilk](https://github.com/emilk)
Expand Down
4 changes: 4 additions & 0 deletions crates/eframe/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,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.28.1 - 2024-07-05
* Web: only capture clicks/touches when actually over canvas [#4775](https://github.com/emilk/egui/pull/4775) by [@lucasmerlin](https://github.com/lucasmerlin)


## 0.28.0 - 2024-07-03 - Better integration of a eframe in a bigger website
### ✨ Highlights
The eframe web canvas now works properly when its a small part of a larger web page.
Expand Down
4 changes: 4 additions & 0 deletions crates/egui-wgpu/CHANGELOG.md
Original file line number Diff line number Diff line change
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.28.1 - 2024-07-05
Nothing new


## 0.28.0 - 2024-07-03
* Update to wgpu 0.20 [#4433](https://github.com/emilk/egui/pull/4433) by [@KeKsBoTer](https://github.com/KeKsBoTer)
* Fix doclinks in egui-wgpu docs [#4677](https://github.com/emilk/egui/pull/4677) by [@emilk](https://github.com/emilk)
Expand Down
4 changes: 4 additions & 0 deletions crates/egui-winit/CHANGELOG.md
Original file line number Diff line number Diff line change
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.28.1 - 2024-07-05
Nothing new


## 0.28.0 - 2024-07-03
* Update `webbrowser` to `v1.0.0` [#4394](https://github.com/emilk/egui/pull/4394) by [@torokati44](https://github.com/torokati44)
* Emit physical key presses when a non-Latin layout is active [#4461](https://github.com/emilk/egui/pull/4461) by [@TicClick](https://github.com/TicClick)
Expand Down
4 changes: 4 additions & 0 deletions crates/egui_extras/CHANGELOG.md
Original file line number Diff line number Diff line change
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.28.1 - 2024-07-05
* Make `serde` a default (opt-out) feature of `egui_extras` [#4786](https://github.com/emilk/egui/pull/4786) by [@emilk](https://github.com/emilk)


## 0.28.0 - 2024-07-03
* Update `image` crate to 0.25 [#4160](https://github.com/emilk/egui/pull/4160) by [@emilk](https://github.com/emilk)
* Set the `sizing_pass` flag in first frame of `egui_extras::Table` [#4613](https://github.com/emilk/egui/pull/4613) by [@emilk](https://github.com/emilk)
Expand Down
4 changes: 4 additions & 0 deletions crates/egui_glow/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ Changes since the last release can be found at <https://github.com/emilk/egui/co



## 0.28.1 - 2024-07-05
Nothing new


## 0.28.0 - 2024-07-03
* Enable `egui_glow`'s `winit` feature on Wasm (#4420) [#4421](https://github.com/emilk/egui/pull/4421) by [@simon-frankau](https://github.com/simon-frankau)

Expand Down
4 changes: 4 additions & 0 deletions crates/egui_plot/CHANGELOG.md
Original file line number Diff line number Diff line change
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.28.1 - 2024-07-05
Nothing new


## 0.28.0 - 2024-07-03
### ⭐ Added
* Hide all other series when alt-clicking in the legend [#4549](https://github.com/emilk/egui/pull/4549) by [@abey79](https://github.com/abey79)
Expand Down
4 changes: 4 additions & 0 deletions crates/epaint/CHANGELOG.md
Original file line number Diff line number Diff line change
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.28.1 - 2024-07-05
Nothing new


## 0.28.0 - 2024-07-03
### ⭐ Added
* Add `RectShape::blur_width` to implement shadows [#4267](https://github.com/emilk/egui/pull/4267) by [@emilk](https://github.com/emilk)
Expand Down

0 comments on commit abab068

Please sign in to comment.