Skip to main content

max / audiofiles

Take makeover 3.0: with_weight builds, weight reads
Co-Authored-By
Claude Opus 5 (1M context) <noreply@anthropic.com>
Author: Max Johnson <me@maxj.phd> · 2026-08-18 14:34 UTC
Signed with PGP, not checked
Commit: 35a3fe6431284f477317db5db722cc6ee7261d63
Parent: 05e7803
3 files changed, +22 insertions, -20 deletions
M Cargo.lock +18 -18
@@ -3056,9 +3056,9 @@
3056 3056
3057 3057 [[package]]
3058 3058 name = "makeover"
3059 - version = "2.10.0"
3059 + version = "3.0.0"
3060 3060 source = "registry+https://github.com/rust-lang/crates.io-index"
3061 - checksum = "f456435cb409328226f55f4209234a8dd37afb9ebbb941a7a654e7df385c020a"
3061 + checksum = "3e6da78c376074e48eb2324394004afc847e674e05ed2ea4bec1331073990b3f"
3062 3062 dependencies = [
3063 3063 "include_dir",
3064 3064 "serde",
@@ -7544,22 +7544,6 @@
7544 7544 "winnow 1.0.4",
7545 7545 ]
7546 7546
7547 - [[patch.unused]]
7548 - name = "quasi-type"
7549 - version = "0.1.0"
7550 -
7551 - [[patch.unused]]
7552 - name = "kberg"
7553 - version = "0.1.0"
7554 -
7555 - [[patch.unused]]
7556 - name = "ops-status"
7557 - version = "0.1.0"
7558 -
7559 - [[patch.unused]]
7560 - name = "painhours"
7561 - version = "0.1.0"
7562 -
7563 7547 [[patch.unused]]
7564 7548 name = "quasi-axum"
7565 7549 version = "0.27.0"
@@ -7583,3 +7567,19 @@
7583 7567 [[patch.unused]]
7584 7568 name = "quasi-webview"
7585 7569 version = "0.27.0"
7570 +
7571 + [[patch.unused]]
7572 + name = "kberg"
7573 + version = "0.1.0"
7574 +
7575 + [[patch.unused]]
7576 + name = "ops-status"
7577 + version = "0.1.0"
7578 +
7579 + [[patch.unused]]
7580 + name = "painhours"
7581 + version = "0.1.0"
7582 +
7583 + [[patch.unused]]
7584 + name = "quasi-type"
7585 + version = "0.1.0"
M Cargo.toml +1 -1
@@ -67,7 +67,7 @@
67 67 libc = "0.2"
68 68 midir = "0.11"
69 69 tagtree = { git = "https://makenot.work/git/max/makenotwork.git", version = "0.4" }
70 - makeover = "2.10.0"
70 + makeover = "3.0"
71 71 # The invariant half of the design system: relational spacing. makeover
72 72 # resolves colour, which a theme may override; this carries what no theme may.
73 73 makeover-geometry = "0.7"
@@ -51,7 +51,9 @@
51 51 static TYPOGRAPHY: LazyLock<makeover::Typography> = LazyLock::new(|| {
52 52 makeover::Typography::house("fonts").with_override(
53 53 makeover::FontOverride::new(makeover::FontSlot::Display, "\"RecursiveMono\", monospace")
54 - .with_face(makeover::FontFace::new("RecursiveMono", [LOGO_FONT_FILE]).weight("700")),
54 + .with_face(
55 + makeover::FontFace::new("RecursiveMono", [LOGO_FONT_FILE]).with_weight("700"),
56 + ),
55 57 )
56 58 });
57 59