Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jul 3, 2024

This PR contains the following updates:

Package Type Update Change
eframe (source) dev-dependencies minor 0.270.33

Release Notes

emilk/egui (eframe)

v0.33.3

Compare Source

Nothing new

v0.33.2

Compare Source

v0.33.0

Compare Source

⭐ Added
🔧 Changed
🐛 Fixed

v0.32.3

Compare Source

Nothing new

v0.32.2

Compare Source

Nothing new

v0.32.1

Compare Source

v0.32.0

Compare Source

⭐ Added
🔧 Changed
🐛 Fixed

v0.31.1

Compare Source

Nothing new

v0.31.0

Compare Source

v0.30.0

Compare Source

NOTE: you now need to enable the wayland or x11 features to get Linux support, including getting it to work on most CI systems.

⭐ Added
🔧 Changed
🐛 Fixed

v0.29.1

Compare Source

v0.29.0

Compare Source

✨ Highlights
🧳 Migration
  • WebRunner::start now expects a HtmlCanvasElement rather than the id of it (#​4780)
  • NativeOptions::follow_system_theme and default_theme is gone, and is now in egui::Options instead (#​4860 by @​bash)
⭐ Added
🔧 Changed
🐛 Fixed

v0.28.1

Compare Source

v0.28.0

Compare Source

✨ Highlights

The eframe web canvas now works properly when its a small part of a larger web page.
Previously this caused a lot of weird bugs, such as the eframe canvas stealing focus, and resizing the canvas in annoying ways.
Now it should all work seamlessly to have an eframe canvas as part of a web page, including having multiple different eframe apps next to each other.
As part of that the eframe canvas can now be focused (or not), just like an <input> HTML element.

We've also implemented a better method for sizing and positioning the canvas so that it yields pixel-perfect rendering on all known browsers except for Desktop Safari.
What this means is that text is much less likely to be blurry on web for users (#​4536 by @​jprochazk).

⭐ Added
🔧 Changed
🐛 Fixed
🧳 Migration
Wrap app creator in a Result

Applications can now return an error during the app creation (#​4565 by @​emilk), so you now need to wrap your Box<dyn App> in a Result like so:

- eframe::run_native("My App", options, Box::new(|cc| Box::new(MyApp::new(cc))));
+ eframe::run_native("My App", options, Box::new(|cc| Ok(Box::new(MyApp::new(cc)))));
Change web CSS

To make the eframe canvas fill the entire web browser, set its CSS to:

top: 0;
left: 0;
width: 100%;
height: 100%;

See index.html and #​4536 for details.

Web canvas focus

If you are using eframe for a fullscreen app, you should call .focus() on your canvas during startup:

document.getElementById("the_canvas_id").focus();

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@github-actions
Copy link
Contributor

github-actions bot commented Jul 3, 2024

Package Changes Through 39ac7e4

There are 1 changes which include global-hotkey with minor

Planned Package Versions

The following package releases are the planned based on the context of changes in this pull request.

package current next
global-hotkey 0.7.0 0.8.0

Add another change file through the GitHub UI by following this link.


Read about change files or the docs at github.com/jbolda/covector

@renovate renovate bot force-pushed the renovate/eframe-0.x branch from b15f2e2 to d920ea3 Compare August 17, 2024 01:49
@renovate renovate bot force-pushed the renovate/eframe-0.x branch from d920ea3 to 482a735 Compare September 2, 2024 16:01
@renovate renovate bot force-pushed the renovate/eframe-0.x branch from 482a735 to bd73802 Compare September 16, 2024 09:53
@renovate renovate bot changed the title chore(deps): update rust crate eframe to 0.28 chore(deps): update rust crate eframe to 0.29 Sep 26, 2024
@renovate renovate bot force-pushed the renovate/eframe-0.x branch from bd73802 to c5c058d Compare September 26, 2024 14:36
@renovate renovate bot force-pushed the renovate/eframe-0.x branch from c5c058d to e2e818b Compare December 16, 2024 20:14
@renovate renovate bot changed the title chore(deps): update rust crate eframe to 0.29 chore(deps): update rust crate eframe to 0.30 Dec 16, 2024
@renovate renovate bot force-pushed the renovate/eframe-0.x branch 2 times, most recently from 95e3bc4 to 1b7237f Compare February 4, 2025 16:49
@renovate renovate bot changed the title chore(deps): update rust crate eframe to 0.30 chore(deps): update rust crate eframe to 0.31 Feb 4, 2025
@renovate renovate bot force-pushed the renovate/eframe-0.x branch 2 times, most recently from ab95b74 to 27508ff Compare April 18, 2025 23:50
@renovate renovate bot force-pushed the renovate/eframe-0.x branch from 27508ff to 5ff8e43 Compare May 6, 2025 23:23
@renovate renovate bot force-pushed the renovate/eframe-0.x branch from 5ff8e43 to 9b9d0a2 Compare July 10, 2025 16:03
@renovate renovate bot changed the title chore(deps): update rust crate eframe to 0.31 chore(deps): update rust crate eframe to 0.32 Jul 10, 2025
@renovate renovate bot force-pushed the renovate/eframe-0.x branch 2 times, most recently from 81163b8 to 1285d1d Compare August 15, 2025 13:09
@renovate renovate bot force-pushed the renovate/eframe-0.x branch from 1285d1d to 442021f Compare September 6, 2025 19:11
@renovate renovate bot force-pushed the renovate/eframe-0.x branch from 442021f to 603bbf1 Compare September 13, 2025 20:04
@renovate renovate bot force-pushed the renovate/eframe-0.x branch from 603bbf1 to b4043c9 Compare September 25, 2025 16:47
@renovate renovate bot force-pushed the renovate/eframe-0.x branch from b4043c9 to 2fd76eb Compare October 9, 2025 16:50
@renovate renovate bot changed the title chore(deps): update rust crate eframe to 0.32 chore(deps): update rust crate eframe to 0.33 Oct 9, 2025
@renovate renovate bot force-pushed the renovate/eframe-0.x branch from 2fd76eb to 6a0be8b Compare November 13, 2025 21:42
@renovate renovate bot force-pushed the renovate/eframe-0.x branch 2 times, most recently from 972486c to 0073553 Compare December 11, 2025 20:49
@renovate renovate bot force-pushed the renovate/eframe-0.x branch from 0073553 to 39ac7e4 Compare December 31, 2025 14:42
@socket-security
Copy link

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Updatedserde@​1.0.217 ⏵ 1.0.2288110093100100
Updatedwinit@​0.30.9 ⏵ 0.30.128210096100100
Updatedonce_cell@​1.20.2 ⏵ 1.21.310010093100100
Updatedeframe@​0.27.2 ⏵ 0.33.310010093100100

View full report

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant