Skip to main content

max / audiofiles

Take quasi 0.91.0: the bulk preview's caps are Rest::showing quasicoherent 0ce21f4b. Both of this repo's Rest struct literals are gone. They named a shape the constructors did not have -- a cap that is a rendering budget, with nothing to press because nothing is missing -- and a literal breaks on every field the type gains. It broke on jumps, so the shape got a name.
Author: Max Johnson <me@maxj.phd> · 2026-08-30 22:11 UTC
Signed with PGP, not checked
Commit: d4e971741dd3b43ffd0c6de2586b486c13a5e142
Parent: 9fc9408
3 files changed, +12 insertions, -20 deletions
M Cargo.lock +8 -8
@@ -4256,7 +4256,7 @@
4256 4256
4257 4257 [[package]]
4258 4258 name = "quasi-immediate"
4259 - version = "0.90.0"
4259 + version = "0.91.0"
4260 4260 dependencies = [
4261 4261 "docengine",
4262 4262 "egui",
@@ -4267,7 +4267,7 @@
4267 4267
4268 4268 [[package]]
4269 4269 name = "quasi-router"
4270 - version = "0.90.0"
4270 + version = "0.91.0"
4271 4271 dependencies = [
4272 4272 "makeover-layout",
4273 4273 ]
@@ -7574,19 +7574,19 @@
7574 7574
7575 7575 [[patch.unused]]
7576 7576 name = "quasi-axum"
7577 - version = "0.90.0"
7577 + version = "0.91.0"
7578 7578
7579 7579 [[patch.unused]]
7580 7580 name = "quasi-basics"
7581 - version = "0.90.0"
7581 + version = "0.91.0"
7582 7582
7583 7583 [[patch.unused]]
7584 7584 name = "quasi-http"
7585 - version = "0.90.0"
7585 + version = "0.91.0"
7586 7586
7587 7587 [[patch.unused]]
7588 7588 name = "quasi-notifs"
7589 - version = "0.90.0"
7589 + version = "0.91.0"
7590 7590
7591 7591 [[patch.unused]]
7592 7592 name = "quasi-store"
@@ -7594,8 +7594,8 @@
7594 7594
7595 7595 [[patch.unused]]
7596 7596 name = "quasi-tauri"
7597 - version = "0.90.0"
7597 + version = "0.91.0"
7598 7598
7599 7599 [[patch.unused]]
7600 7600 name = "quasi-webview"
7601 - version = "0.90.0"
7601 + version = "0.91.0"
M Cargo.toml +2 -2
@@ -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.90" }
30 - quasi-immediate = { git = "https://makenot.work/git/max/quasi.git", version = "0.90" }
29 + quasi-router = { git = "https://makenot.work/git/max/quasi.git", version = "0.91" }
30 + quasi-immediate = { git = "https://makenot.work/git/max/quasi.git", version = "0.91" }
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"] }
@@ -464,11 +464,7 @@
464 464 // fifty until `Node::Table` grew `more`, which is the gap this port
465 465 // noted at 65abb3c. No `forward`, because there is nowhere to ask --
466 466 // the cap is a rendering budget and the rename acts on all of them.
467 - more: (total > SHOWN).then(|| Rest {
468 - paging: quasi_router::layout::Paging::more(SHOWN).of(total),
469 - forward: None,
470 - back: None,
471 - }),
467 + more: (total > SHOWN).then(|| Rest::showing(SHOWN).of(total)),
472 468 rows: previews
473 469 .iter()
474 470 .take(SHOWN)
@@ -505,11 +501,7 @@
505 501 .take(SHOWN)
506 502 .map(quasi_router::Row::new)
507 503 .collect(),
508 - more: (names.len() > SHOWN).then(|| Rest {
509 - paging: quasi_router::layout::Paging::more(SHOWN).of(names.len()),
510 - forward: None,
511 - back: None,
512 - }),
504 + more: (names.len() > SHOWN).then(|| Rest::showing(SHOWN).of(names.len())),
513 505 })
514 506 }
515 507