## Short bluesky announcement: We just released egui 0.33.0! Highlights: - `egui::Plugin` a improved way to create and access egui plugins - [kitdiff](https://github.com/rerun-io/kitdiff), a viewer for egui_kittest image snapshots (and a general image diff tool) - better kerning (check the diff on [kitdiff](https://rerun-io.github.io/kitdiff/?url=https://github.com/emilk/egui/pull/7431)) https://github.com/user-attachments/assets/971f0493-6dae-42e5-8019-58b74cf5d203 ## Relaese Changelog: 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](https://www.rerun.io/), a startup building an SDK for visualizing streams of multimodal data. # egui 0.33.0 changelog Highlights from this release: - `egui::Plugin` a improved way to create and access egui plugins - [kitdiff](https://github.com/rerun-io/kitdiff), a viewer for egui_kittest image snapshots (and a general image diff tool) - better kerning ### Improved kerning As a step towards using [parley](https://github.com/linebender/parley) for font rendering, @valadaptive has refactored the font loading and rendering code. A result of this (next to the font rendering code being much nicer now) is improved kerning. Notice how the c moved away from the k:  ### `egui::Plugin` trait We've added a new trait-based plugin api, meant to replace `Context::on_begin_pass` and `Context::on_end_pass`. This makes it a lot easier to handle state in your plugins. Instead of having to write to egui memory it can live right on your plugin struct. The trait based api also makes easier to add new hooks that plugins can use. In addition to `on_begin_pass` and `on_end_pass`, the `Plugin` trait now has a `input_hook` and `output_hook` which you can use to inspect / modify the `RawInput` / `FullOutput`. ### kitdiff, a image diff viewer At rerun we have a ton of snapshots. Some PRs will change most of them (e.g. [the](https://github.com/rerun-io/rerun/pull/11253/files) [one](https://rerun-io.github.io/kitdiff/?url=https://github.com/rerun-io/rerun/pull/11253/files) that updated egui and introduced the kerning improvements, ~500 snapshots changed!). If you really want to look at every changed snapshot it better be as efficient as possible, and the experience on github, fiddeling with the sliders, is kind of frustrating. In order to fix this, we've made [kitdiff](https://rerun-io.github.io/kitdiff/). You can use it locally via - `kitdiff files .` will search for .new.png and .diff.png files - `kitdiff git` will compare the current files to the default branch (main/master) Or in the browser via - going to https://rerun-io.github.io/kitdiff/ and pasting a PR or github artifact url - linking to kitdiff via e.g. a github workflow `https://rerun-io.github.io/kitdiff/?url=<link_to_pr_or_artefact>` To install kitdiff run `cargo install --git https://github.com/rerun-io/kitdiff` Here is a video showing the kerning changes in kitdiff ([try it yourself](https://rerun-io.github.io/kitdiff/?url=https://github.com/rerun-io/rerun/pull/11253/files)): https://github.com/user-attachments/assets/74640af1-09ba-435a-9d0c-2cbeee140c8f ### Migration guide - `egui::Mutex` now has a timeout as a simple deadlock detection - If you use a `egui::Mutex` in some place where it's held for longer than a single frame, you should switch to the std mutex or parking_lot instead (egui mutexes are wrappers around parking lot) - `screen_rect` is deprecated - In order to support safe areas, egui now has `viewport_rect` and `content_rect`. - Update all usages of `screen_rect` to `content_rect`, unless you are sure that you want to draw outside the `safe area` (which would mean your Ui may be covered by notches, system ui, etc.)
4.3 KiB
Releases
Cadence
We don't have a regular cadence, but there is usually a new major release every two months or so.
Often a major release is followed by one or two patch releases within a week or two.
Versioning
All crates under the crates/ folder are published in lock-step, with the same version number. This means that we won't publish a new breaking change of a single crate without also publishing all other crates. This also means we sometimes do a new release of a crate even though there are no changes to that crate.
The only exception to this are patch releases, where we sometimes only patch a single crate.
The egui version in egui main is always the version of the last published crates. This is so that users can easily patch their egui crates to egui main if they want to.
Governance
Releases are generally done by emilk, but the rerun-io organization (where emilk is CTO) also has publish rights to all the crates.
Rust version policy
Our Minimum Supported Rust Version (MSRV) is always at least two minor release behind the latest Rust version. This means users of egui aren't forced to update to the very latest Rust version.
We don't update the MSRV in a patch release, unless we really, really need to.
Release process
- copy this checklist to a new egui issue, called "Release 0.xx.y"
- close all issues in the milestone for this release
Special steps for patch release
- make a branch off of the latest release
- cherry-pick what you want to release
- run
cargo semver-checks
Optional polish before a major release
- improve the demo a bit
- see if you can make web demo WASM smaller
./scripts/docs.sh: read and improve documentation of new stuffcargo updatecargo outdated(or manually look for outdated crates in eachCargo.toml)
Release testing
cargo r -p egui_demo_appand click around for while- update
eframe_templateand test - update
egui_plotand test - update
egui_tableand test - update
egui_tilesand test - test with Rerun
./scripts/check.sh- check that CI is green
Preparation
- make sure there are no important unmerged PRs
- Ensure we don't have any patch/git dependencies (e.g. kittest)
- Create a branch called
release-0.xx.0and open a PR for it - run
scripts/generate_example_screenshots.shif needed - write a short release note that fits in a bluesky post
- record gif for
CHANGELOG.mdrelease note (and later bluesky post) - update changelogs
- run
scripts/generate_changelog.py --version 0.x.0 --write - read changelogs and clean them up if needed
- write a good intro with highlight for the main changelog
- run
- run
typos
Actual release
- bump version numbers in workspace
Cargo.toml - check that CI for the PR is green
- publish the crates by running
scripts/publish_crates.sh git tag -a 0.x.0 -m 'Release 0.x.0 - <release title>'git pull --tags ; git tag -d latest && git tag -a latest -m 'Latest release' && git push --tags origin latest --force ; git push --tags- merge release PR as
Release 0.x.0 - <release title> - check that CI for
mainis green - do a GitHub release: https://github.com/emilk/egui/releases/new
- follow the format of the last release
- wait for the documentation build to finish: https://docs.rs/releases/queue
- https://docs.rs/egui/ works
- https://docs.rs/eframe/ works
Announcements
- Bluesky
- egui discord
- r/rust
- r/programming
- This Week in Rust
After release
- update
eframe_template - publish new
egui_plot - publish new
egui_table - publish new
egui_tiles - make a PR to
egui_commonmark - make a PR to
rerun
Finally
- close the milestone
- close this issue
- improve
RELEASES.mdwith what you learned this time around