Skip to main content

max / audiofiles

Take the makeover 0.40.0 cascade and quasi 0.81.0 makeover-layout carries Act::hint now, so the egui hover this app's controls draw comes from widget::act rather than from quasi's renderer reaching around it.
Co-Authored-By
Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session
https://claude.ai/code/session_0136sbU8F6i9WrcvA3wn4Lgk
Author: Max Johnson <me@maxj.phd> · 2026-08-29 18:50 UTC
Signed with PGP, not checked
Commit: 5cc3f93e3796b202b5da265c3060d17530069068
Parent: 4b0d738
2 files changed, +24 insertions, -24 deletions
M Cargo.lock +20 -20
@@ -3074,9 +3074,9 @@
3074 3074
3075 3075 [[package]]
3076 3076 name = "makeover-immediate"
3077 - version = "0.40.0"
3077 + version = "0.41.0"
3078 3078 source = "registry+https://github.com/rust-lang/crates.io-index"
3079 - checksum = "ebf95b374f071aac2094c22d1d90ee565ae920adb9950195c072352ee4da2f01"
3079 + checksum = "5fecbd8dd999dfab40e6c642f2adf76196f46d31096557c8a83405df61e2884b"
3080 3080 dependencies = [
3081 3081 "egui",
3082 3082 "egui_extras",
@@ -3086,9 +3086,9 @@
3086 3086
3087 3087 [[package]]
3088 3088 name = "makeover-layout"
3089 - version = "0.39.0"
3089 + version = "0.40.0"
3090 3090 source = "registry+https://github.com/rust-lang/crates.io-index"
3091 - checksum = "253ab4630d39ec39233020b81024773da52e93b15544217034ce6ca083ba9227"
3091 + checksum = "c2f7ecec1a7e3b5026f731aec88607a5856fc21945cca478d4130d08724deb96"
3092 3092
3093 3093 [[package]]
3094 3094 name = "makeover-timing"
@@ -7556,6 +7556,22 @@
7556 7556 "winnow 1.0.4",
7557 7557 ]
7558 7558
7559 + [[patch.unused]]
7560 + name = "quasi-type"
7561 + version = "0.1.3"
7562 +
7563 + [[patch.unused]]
7564 + name = "kberg"
7565 + version = "0.1.0"
7566 +
7567 + [[patch.unused]]
7568 + name = "ops-status"
7569 + version = "0.1.0"
7570 +
7571 + [[patch.unused]]
7572 + name = "painhours"
7573 + version = "0.1.0"
7574 +
7559 7575 [[patch.unused]]
7560 7576 name = "quasi-axum"
7561 7577 version = "0.80.0"
@@ -7583,19 +7599,3 @@
7583 7599 [[patch.unused]]
7584 7600 name = "quasi-webview"
7585 7601 version = "0.80.0"
7586 -
7587 - [[patch.unused]]
7588 - name = "quasi-type"
7589 - version = "0.1.3"
7590 -
7591 - [[patch.unused]]
7592 - name = "kberg"
7593 - version = "0.1.0"
7594 -
7595 - [[patch.unused]]
7596 - name = "ops-status"
7597 - version = "0.1.0"
7598 -
7599 - [[patch.unused]]
7600 - name = "painhours"
7601 - version = "0.1.0"
M Cargo.toml +4 -4
@@ -17,8 +17,8 @@
17 17 # to compile against an API added in a later one. The two move together --
18 18 # makeover-immediate re-exports nothing, so the `Column` the app describes and
19 19 # the `Column` the renderer matches on have to be the same type.
20 - makeover-layout = "0.39.0"
21 - makeover-immediate = "0.40.0"
20 + makeover-layout = "0.40.0"
21 + makeover-immediate = "0.41.0"
22 22 # The time axis. Minor rather than exact patch: it re-exports nothing and no
23 23 # type of its crosses a renderer boundary, so it is under the same rule as
24 24 # makeover-geometry above rather than the layout/immediate pair below.
@@ -26,8 +26,8 @@
26 26 # The described screens, which are audiofiles-browser's screens. By git URL with
27 27 # a version requirement, per the tree's rule for cross-repo deps. They were
28 28 # behind a `quasi` feature until 2026-08-25, when the last flip landed.
29 - quasi-router = { git = "https://makenot.work/git/max/quasi.git", version = "0.80" }
30 - quasi-immediate = { git = "https://makenot.work/git/max/quasi.git", version = "0.80" }
29 + quasi-router = { git = "https://makenot.work/git/max/quasi.git", version = "0.81" }
30 + quasi-immediate = { git = "https://makenot.work/git/max/quasi.git", version = "0.81" }
31 31 egui = { version = "0.35", default-features = false, features = ["default_fonts"] }
32 32 egui_extras = { version = "0.35", default-features = false }
33 33 eframe = { version = "0.35", default-features = false, features = ["default_fonts", "glow"] }