[PR #85] [CLOSED] Update eframe requirement from 0.28 to 0.29 #195

Closed
opened 2026-03-03 13:46:23 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/gopher64/gopher64/pull/85
Author: @dependabot[bot]
Created: 10/18/2024
Status: Closed

Base: mainHead: dependabot/cargo/eframe-0.29


📝 Commits (1)

  • 245b72e Update eframe requirement from 0.28 to 0.29

📊 Changes

1 file changed (+1 additions, -1 deletions)

View changed files

📝 Cargo.toml (+1 -1)

📄 Description

Updates the requirements on eframe to permit the latest version.

Release notes

Sourced from eframe's releases.

0.29.1 - Bug fixes

egui is an easy-to-use immediate mode GUI for Rust that runs on both web and native.

Try it now: https://www.egui.rs/

egui development is sponsored by Rerun, a startup building an SDK for visualizing streams of multimodal data.

egui

eframe

Changelog

Sourced from eframe's changelog.

0.29.1 - 2024-10-01 - Bug fixes

0.29.0 - 2024-09-26 - Multipass, UiBuilder, & visual improvements

Highlights

This release adds initial support for multi-pass layout, which is a tool to circumvent a common limitation of immediate mode. You can use the new UiBuilder::sizing_pass (#4969) to instruct the Ui and widgets to shrink to their minimum size, then store that size. Then call the new Context::request_discard (#5059) to discard the visual output and do another pass immediately after the current finishes. Together, this allows more advanced layouts that is normally not possible in immediate mode. So far this is only used by egui::Grid to hide the "first-frame jitters" that would sometimes happen before, but 3rd party libraries can also use it to do much more advanced things.

There is also a new UiBuilder for more flexible construction of Uis (#4969). By specifying a sense for the Ui you can make it respond to clicks and drags, reading the result with the new Ui::response (#5054). Among other things, you can use this to create buttons that contain arbitrary widgets.

0.29 also adds improve support for automatic switching between light and dark mode. You can now set up a custom Style for both dark and light mode, and have egui follow the system preference (#4744 #4860).

There also has been several small improvements to the look of egui:

  • Fix vertical centering of text (e.g. in buttons) (#5117)
  • Sharper rendering of lines and outlines (#4943)
  • Nicer looking text selection, especially in light mode (#5017)

The new text selection

What text selection used to look like

🧳 Migration

  • id_source is now called id_salt everywhere (#5025)
  • Ui::new now takes a UiBuilder (#4969)
  • Deprecated (replaced with UiBuilder):
    • ui.add_visible_ui
    • ui.allocate_ui_at_rect
    • ui.child_ui
    • ui.child_ui_with_id_source
    • ui.push_stack_info

Added

... (truncated)

Commits
  • fe368ba Release 0.29.1 - Bug fixes
  • ce744e6 Do not round panel rectangles to pixel grid (#5196)
  • 15d3d43 Fix backspace/arrow keys in TextEdit on Linux (#5188)
  • 448e12d Fix id clash in Ui::response (#5192)
  • 5390ecd Bug fix: click anywhere on a Table row to select it (#5193)
  • db3dcaf Remove debug-assert triggered by with_layer_id/dnd_drag_source (#5191)
  • 679f6f5 Replace "an ui" with "a ui" (#5185)
  • 59d7183 Release 0.29.0 - Multipass, UiBuilder, & visual improvements
  • dae1979 Add back Context::set_visuals() (#5100)
  • 25abb74 egui_extras: Add TableBuilder::animate_scrolling (#5159)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/gopher64/gopher64/pull/85 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 10/18/2024 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dependabot/cargo/eframe-0.29` --- ### 📝 Commits (1) - [`245b72e`](https://github.com/gopher64/gopher64/commit/245b72ef1a5bc230e46fe5d6bc1a8d0f7fd59d0b) Update eframe requirement from 0.28 to 0.29 ### 📊 Changes **1 file changed** (+1 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.toml` (+1 -1) </details> ### 📄 Description Updates the requirements on [eframe](https://github.com/emilk/egui) to permit the latest version. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/emilk/egui/releases">eframe's releases</a>.</em></p> <blockquote> <h2>0.29.1 - Bug fixes</h2> <p>egui is an easy-to-use immediate mode GUI for Rust that runs on both web and native.</p> <p>Try it now: <a href="https://www.egui.rs/">https://www.egui.rs/</a></p> <p>egui development is sponsored by <a href="https://www.rerun.io/">Rerun</a>, a startup building an SDK for visualizing streams of multimodal data.</p> <h2>egui</h2> <ul> <li>Remove debug-assert triggered by <code>with_layer_id/dnd_drag_source</code> <a href="https://redirect.github.com/emilk/egui/pull/5191">#5191</a> by <a href="https://github.com/emilk"><code>@​emilk</code></a></li> <li>Fix id clash in <code>Ui::response</code> <a href="https://redirect.github.com/emilk/egui/pull/5192">#5192</a> by <a href="https://github.com/emilk"><code>@​emilk</code></a></li> <li>Do not round panel rectangles to pixel grid <a href="https://redirect.github.com/emilk/egui/pull/5196">#5196</a> by <a href="https://github.com/emilk"><code>@​emilk</code></a></li> </ul> <h2>eframe</h2> <ul> <li>Linux: Disable IME to fix backspace/arrow keys <a href="https://redirect.github.com/emilk/egui/pull/5188">#5188</a> by <a href="https://github.com/emilk"><code>@​emilk</code></a></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/emilk/egui/blob/master/CHANGELOG.md">eframe's changelog</a>.</em></p> <blockquote> <h2>0.29.1 - 2024-10-01 - Bug fixes</h2> <ul> <li>Remove debug-assert triggered by <code>with_layer_id/dnd_drag_source</code> <a href="https://redirect.github.com/emilk/egui/pull/5191">#5191</a> by <a href="https://github.com/emilk"><code>@​emilk</code></a></li> <li>Fix id clash in <code>Ui::response</code> <a href="https://redirect.github.com/emilk/egui/pull/5192">#5192</a> by <a href="https://github.com/emilk"><code>@​emilk</code></a></li> <li>Do not round panel rectangles to pixel grid <a href="https://redirect.github.com/emilk/egui/pull/5196">#5196</a> by <a href="https://github.com/emilk"><code>@​emilk</code></a></li> </ul> <h2>0.29.0 - 2024-09-26 - Multipass, <code>UiBuilder</code>, &amp; visual improvements</h2> <h3>✨ Highlights</h3> <p>This release adds initial support for multi-pass layout, which is a tool to circumvent <a href="https://github.com/emilk/egui#layout">a common limitation of immediate mode</a>. You can use the new <code>UiBuilder::sizing_pass</code> (<a href="https://redirect.github.com/emilk/egui/pull/4969">#4969</a>) to instruct the <code>Ui</code> and widgets to shrink to their minimum size, then store that size. Then call the new <code>Context::request_discard</code> (<a href="https://redirect.github.com/emilk/egui/pull/5059">#5059</a>) to discard the visual output and do another <em>pass</em> immediately after the current finishes. Together, this allows more advanced layouts that is normally not possible in immediate mode. So far this is only used by <code>egui::Grid</code> to hide the &quot;first-frame jitters&quot; that would sometimes happen before, but 3rd party libraries can also use it to do much more advanced things.</p> <p>There is also a new <code>UiBuilder</code> for more flexible construction of <code>Ui</code>s (<a href="https://redirect.github.com/emilk/egui/pull/4969">#4969</a>). By specifying a <code>sense</code> for the <code>Ui</code> you can make it respond to clicks and drags, reading the result with the new <code>Ui::response</code> (<a href="https://redirect.github.com/emilk/egui/pull/5054">#5054</a>). Among other things, you can use this to create buttons that contain arbitrary widgets.</p> <p>0.29 also adds improve support for automatic switching between light and dark mode. You can now set up a custom <code>Style</code> for both dark and light mode, and have egui follow the system preference (<a href="https://redirect.github.com/emilk/egui/pull/4744">#4744</a> <a href="https://redirect.github.com/emilk/egui/pull/4860">#4860</a>).</p> <p>There also has been several small improvements to the look of egui:</p> <ul> <li>Fix vertical centering of text (e.g. in buttons) (<a href="https://redirect.github.com/emilk/egui/pull/5117">#5117</a>)</li> <li>Sharper rendering of lines and outlines (<a href="https://redirect.github.com/emilk/egui/pull/4943">#4943</a>)</li> <li>Nicer looking text selection, especially in light mode (<a href="https://redirect.github.com/emilk/egui/pull/5017">#5017</a>)</li> </ul> <h4>The new text selection</h4> <!-- raw HTML omitted --> <h4>What text selection used to look like</h4> <!-- raw HTML omitted --> <h3>🧳 Migration</h3> <ul> <li><code>id_source</code> is now called <code>id_salt</code> everywhere (<a href="https://redirect.github.com/emilk/egui/pull/5025">#5025</a>)</li> <li><code>Ui::new</code> now takes a <code>UiBuilder</code> (<a href="https://redirect.github.com/emilk/egui/pull/4969">#4969</a>)</li> <li>Deprecated (replaced with <code>UiBuilder</code>): <ul> <li><code>ui.add_visible_ui</code></li> <li><code>ui.allocate_ui_at_rect</code></li> <li><code>ui.child_ui</code></li> <li><code>ui.child_ui_with_id_source</code></li> <li><code>ui.push_stack_info</code></li> </ul> </li> </ul> <h3>⭐ Added</h3> <ul> <li>Create a <code>UiBuilder</code> for building <code>Ui</code>s <a href="https://redirect.github.com/emilk/egui/pull/4969">#4969</a> by <a href="https://github.com/emilk"><code>@​emilk</code></a></li> <li>Add <code>egui::Sides</code> for adding UI on left and right sides <a href="https://redirect.github.com/emilk/egui/pull/5036">#5036</a> by <a href="https://github.com/emilk"><code>@​emilk</code></a></li> <li>Make light &amp; dark visuals customizable when following the system theme <a href="https://redirect.github.com/emilk/egui/pull/4744">#4744</a> <a href="https://redirect.github.com/emilk/egui/pull/4860">#4860</a> by <a href="https://github.com/bash"><code>@​bash</code></a></li> <li>Interactive <code>Ui</code>:s: add <code>UiBuilder::sense</code> and <code>Ui::response</code> <a href="https://redirect.github.com/emilk/egui/pull/5054">#5054</a> by <a href="https://github.com/lucasmerlin"><code>@​lucasmerlin</code></a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/emilk/egui/commit/fe368bacc4a15697e347607e73a56c0299b3d42d"><code>fe368ba</code></a> Release 0.29.1 - Bug fixes</li> <li><a href="https://github.com/emilk/egui/commit/ce744e6f7a22412cecf1cf2ea8678344bfb56489"><code>ce744e6</code></a> Do not round panel rectangles to pixel grid (<a href="https://redirect.github.com/emilk/egui/issues/5196">#5196</a>)</li> <li><a href="https://github.com/emilk/egui/commit/15d3d43aa30317ec7c0611d4faae890166d7a22b"><code>15d3d43</code></a> Fix backspace/arrow keys in TextEdit on Linux (<a href="https://redirect.github.com/emilk/egui/issues/5188">#5188</a>)</li> <li><a href="https://github.com/emilk/egui/commit/448e12d6b6757e430d831e531d1d62855e1d0627"><code>448e12d</code></a> Fix id clash in <code>Ui::response</code> (<a href="https://redirect.github.com/emilk/egui/issues/5192">#5192</a>)</li> <li><a href="https://github.com/emilk/egui/commit/5390ecdf4abd54503e067f01d3f5c93614afe305"><code>5390ecd</code></a> Bug fix: click anywhere on a <code>Table</code> row to select it (<a href="https://redirect.github.com/emilk/egui/issues/5193">#5193</a>)</li> <li><a href="https://github.com/emilk/egui/commit/db3dcaf447819d38d3bc6a3c3f9d074759efd9b2"><code>db3dcaf</code></a> Remove debug-assert triggered by <code>with_layer_id/dnd_drag_source</code> (<a href="https://redirect.github.com/emilk/egui/issues/5191">#5191</a>)</li> <li><a href="https://github.com/emilk/egui/commit/679f6f57b1ee5d8ed407dafbbd3c939d1ac8ce05"><code>679f6f5</code></a> Replace &quot;an ui&quot; with &quot;a ui&quot; (<a href="https://redirect.github.com/emilk/egui/issues/5185">#5185</a>)</li> <li><a href="https://github.com/emilk/egui/commit/59d71831fd43139bf9b427b779a241099b9c9826"><code>59d7183</code></a> Release 0.29.0 - Multipass, <code>UiBuilder</code>, &amp; visual improvements</li> <li><a href="https://github.com/emilk/egui/commit/dae1979dd334ace310b6e3ef02e98281ed7dfb8e"><code>dae1979</code></a> Add back <code>Context::set_visuals()</code> (<a href="https://redirect.github.com/emilk/egui/issues/5100">#5100</a>)</li> <li><a href="https://github.com/emilk/egui/commit/25abb74465a17d24a61501caa54dac67cd1aa86b"><code>25abb74</code></a> egui_extras: Add <code>TableBuilder::animate_scrolling</code> (<a href="https://redirect.github.com/emilk/egui/issues/5159">#5159</a>)</li> <li>Additional commits viewable in <a href="https://github.com/emilk/egui/compare/0.28.0...0.29.1">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 13:46:23 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/gopher64#195
No description provided.