Skip to main content

max / makeover-immediate

0.30.0: take makeover-layout 0.31 Same position the crate already took on FieldKind::File at 0.11.0: egui's honest answer is a native picker, which is a fifth control and a file-dialog dependency, and no consumer asks for one yet. Field::accept and Field::multiple are that picker's arguments, so they are carried rather than lost -- the day the dialog arrives it opens with them.
Co-Authored-By
Claude Opus 5 (1M context) <noreply@anthropic.com>
Author: Max Johnson <me@maxj.phd> · 2026-08-18 21:15 UTC
Signed with PGP, not checked
Commit: afeb3998f344bac4e54527c23f5bbacddb8a5e3a
Parent: ae0d274
2 files changed, +8 insertions, -2 deletions
M Cargo.toml +2 -2
@@ -1,6 +1,6 @@
1 1 [package]
2 2 name = "makeover-immediate"
3 - version = "0.29.1"
3 + version = "0.30.0"
4 4 edition = "2024"
5 5 description = "The immediate-mode renderer for makeover-layout. Immediate mode is the constraint that matters, not the library: no cascade, no retained tree, one stroke per widget. Backed by egui."
6 6 license = "MIT"
@@ -12,7 +12,7 @@
12 12 # Exact patch rather than the minor, as the rest of the suite pins: a
13 13 # minor-only requirement is satisfied by a consumer lock holding an earlier
14 14 # patch, which then fails to compile against an API added in a later one.
15 - makeover-layout = "0.30.0"
15 + makeover-layout = "0.31.0"
16 16
17 17 [lints.rust]
18 18 unused = "warn"
M src/lib.rs +6
@@ -614,6 +614,12 @@
614 614 /// A path in a text box is not nothing, and it is what an app that needs this
615 615 /// tomorrow gets today.
616 616 ///
617 + /// makeover-layout 0.31.0 added `Field::accept` and `Field::multiple`, and this
618 + /// position is what they land on: both are the picker's arguments, and this
619 + /// renderer has no picker to give them to. They are not lost — the description
620 + /// still carries them, and the day the native dialog arrives here it is opened
621 + /// with them rather than with a filter written twice.
622 + ///
617 623 /// `FieldKind::Date` and `FieldKind::DateTime` land there too, as of
618 624 /// makeover-layout 0.15.0, on the same footing and with one thing owed. A
619 625 /// calendar is a sixth control and bare `egui` has none, so a typed value is