Skip to main content

max / audiofiles

Take quasi 0.70.0 `Field::changes` now fires when the change is complete rather than on every keystroke or drag frame (quasicoherent `8032fe61`, `de2376bd`). This app is the one the defect was measured in: the described settings screen's bounded `row_height` posted a row height of 3 on the way to 30, and the classifier's three `FieldKind::Range` thresholds wrote once per frame of a drag instead of once per drag. `ui/widgets.rs::settled(response)` is the workaround that prompted the finding, and it is what `changes` means now.
Co-Authored-By
Claude Opus 5 (1M context) <noreply@anthropic.com>
Author: Max Johnson <me@maxj.phd> · 2026-08-27 19:00 UTC
Signed with PGP, not checked
Commit: d53bb41943d52a0d48431893ee390d91e2247c3d
Parent: 66b129c
2 files changed, +32 insertions, -32 deletions
M Cargo.lock +30 -30
@@ -4256,7 +4256,7 @@
4256 4256
4257 4257 [[package]]
4258 4258 name = "quasi-immediate"
4259 - version = "0.69.2"
4259 + version = "0.70.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.69.2"
4270 + version = "0.70.0"
4271 4271 dependencies = [
4272 4272 "makeover-layout",
4273 4273 ]
@@ -7556,34 +7556,6 @@
7556 7556 "winnow 1.0.4",
7557 7557 ]
7558 7558
7559 - [[patch.unused]]
7560 - name = "quasi-axum"
7561 - version = "0.69.2"
7562 -
7563 - [[patch.unused]]
7564 - name = "quasi-basics"
7565 - version = "0.69.2"
7566 -
7567 - [[patch.unused]]
7568 - name = "quasi-http"
7569 - version = "0.69.2"
7570 -
7571 - [[patch.unused]]
7572 - name = "quasi-notifs"
7573 - version = "0.69.2"
7574 -
7575 - [[patch.unused]]
7576 - name = "quasi-store"
7577 - version = "0.1.0"
7578 -
7579 - [[patch.unused]]
7580 - name = "quasi-tauri"
7581 - version = "0.69.2"
7582 -
7583 - [[patch.unused]]
7584 - name = "quasi-webview"
7585 - version = "0.69.2"
7586 -
7587 7559 [[patch.unused]]
7588 7560 name = "quasi-type"
7589 7561 version = "0.1.0"
@@ -7599,3 +7571,31 @@
7599 7571 [[patch.unused]]
7600 7572 name = "painhours"
7601 7573 version = "0.1.0"
7574 +
7575 + [[patch.unused]]
7576 + name = "quasi-axum"
7577 + version = "0.70.0"
7578 +
7579 + [[patch.unused]]
7580 + name = "quasi-basics"
7581 + version = "0.70.0"
7582 +
7583 + [[patch.unused]]
7584 + name = "quasi-http"
7585 + version = "0.70.0"
7586 +
7587 + [[patch.unused]]
7588 + name = "quasi-notifs"
7589 + version = "0.70.0"
7590 +
7591 + [[patch.unused]]
7592 + name = "quasi-store"
7593 + version = "0.1.0"
7594 +
7595 + [[patch.unused]]
7596 + name = "quasi-tauri"
7597 + version = "0.70.0"
7598 +
7599 + [[patch.unused]]
7600 + name = "quasi-webview"
7601 + version = "0.70.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.69" }
30 - quasi-immediate = { git = "https://makenot.work/git/max/quasi.git", version = "0.69" }
29 + quasi-router = { git = "https://makenot.work/git/max/quasi.git", version = "0.70" }
30 + quasi-immediate = { git = "https://makenot.work/git/max/quasi.git", version = "0.70" }
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"] }