Update egui/eframe to 0.34#314
Merged
anhosh merged 2 commits intoanhosh:release-0.19from Mar 29, 2026
Merged
Conversation
- Bump egui from 0.33 to 0.34 - Bump eframe from 0.33 to 0.34 - Deprecate DockArea::show(ctx) in favor of show_inside(ui) - Migrate all examples to eframe's new App::ui(&mut Ui) API - Replace deprecated ctx.style() with ctx.global_style() - Fix deprecated warnings in doc-tests Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
8e48789 to
7c84de6
Compare
Closed
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Closed
Merged
anhosh
added a commit
that referenced
this pull request
Mar 29, 2026
* impl Index<TabIndex> for LeafNode (#311) * fix(layout): prevent panics on extreme window shrink (#307) (#309) * fix: clamp tab index in move_tab to prevent out-of-bounds insert (#308) * fix: clamp tab index in move_tab to prevent out-of-bounds insert When reordering a tab within the same node, `remove_tab` is called before `insert_tab`. This reduces the tab count by one, so the original destination index may now be out of bounds. Clamp the insertion index to the current tab count to prevent panic. * Simplify the clamping --------- Co-authored-by: Adanos020 <adanos020@gmail.com> * Refactor index tuples to structs (#312) * Refactor index tuples to structs * add convenience functions on NodePath and TabPat * reorganize imports * refactor some fallible methods to return an Error --------- Co-authored-by: Adam Gąsior <adanos020@gmail.com> * Update egui/eframe to 0.34 (#314) * Update egui/eframe to 0.34 - Bump egui from 0.33 to 0.34 - Bump eframe from 0.33 to 0.34 - Deprecate DockArea::show(ctx) in favor of show_inside(ui) - Migrate all examples to eframe's new App::ui(&mut Ui) API - Replace deprecated ctx.style() with ctx.global_style() - Fix deprecated warnings in doc-tests Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: cargo fmt Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * Update changelog * Update Cargo.toml and README.md * Fix clippy warnings --------- Co-authored-by: Jonathan Chan Kwan Yin <sofe2038@gmail.com> Co-authored-by: Matias Lopez <109480516+MatiasLopezING@users.noreply.github.com> Co-authored-by: Ivan <ixentrum@gmail.com> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
eguidependency from 0.33 to 0.34eframedev-dependency from 0.33 to 0.34DockArea::show(ctx)— users should useshow_inside(ui)insteadApp::ui(&mut Ui)API (replacing deprecatedApp::update(&Context))ctx.style()withctx.global_style()Test plan
cargo check --all-features --examples— no warningscargo test --doc— 20 passed, 0 failed🤖 Generated with Claude Code