Skip to main content

max / goingson

Take the makeover 0.18.0 cascade makeover-layout 0.18.0 puts a region share on Arrangement and a page measure on Screen, and the suite republished against it. `links` makes two copies of the vocabulary in one graph a resolver error rather than a warning, so a consumer left on the old pin does not lag quietly -- it fails to resolve.
Co-Authored-By
Claude Opus 5 (1M context) <noreply@anthropic.com>
Author: Max Johnson <me@maxj.phd> · 2026-08-13 00:20 UTC
Signed with PGP, not checked
Commit: 23ea306e1baada54704f932eddee81bcdb089968
Parent: fb0a181
3 files changed, +25 insertions, -15 deletions
M Cargo.lock +19 -9
@@ -3398,7 +3398,9 @@
3398 3398
3399 3399 [[package]]
3400 3400 name = "makeover-build"
3401 - version = "0.26.0"
3401 + version = "0.27.0"
3402 + source = "registry+https://github.com/rust-lang/crates.io-index"
3403 + checksum = "bf67f09cbaa537711532bc3bcf273e32bfd73a78dba2cd9d3e3f866c33ab04fb"
3402 3404 dependencies = [
3403 3405 "makeover",
3404 3406 "makeover-geometry",
@@ -3413,11 +3415,15 @@
3413 3415
3414 3416 [[package]]
3415 3417 name = "makeover-layout"
3416 - version = "0.17.0"
3418 + version = "0.18.0"
3419 + source = "registry+https://github.com/rust-lang/crates.io-index"
3420 + checksum = "48e5725b8dc2d30d5e46b324dd97757e14e61345607c9f55534a34768a6b54dd"
3417 3421
3418 3422 [[package]]
3419 3423 name = "makeover-touch"
3420 - version = "0.10.0"
3424 + version = "0.11.0"
3425 + source = "registry+https://github.com/rust-lang/crates.io-index"
3426 + checksum = "aa8a698cf7ba31dc0a2256293139774657ae373425ccd58eabb05431dd283876"
3421 3427 dependencies = [
3422 3428 "makeover-geometry",
3423 3429 "makeover-layout",
@@ -3425,7 +3431,9 @@
3425 3431
3426 3432 [[package]]
3427 3433 name = "makeover-tui"
3428 - version = "0.16.1"
3434 + version = "0.17.0"
3435 + source = "registry+https://github.com/rust-lang/crates.io-index"
3436 + checksum = "6bec0a014d4da44d95dca4db82b5f9418edb4dd10fa5009e13832489939fcabd"
3429 3437 dependencies = [
3430 3438 "makeover",
3431 3439 "makeover-layout",
@@ -3434,7 +3442,9 @@
3434 3442
3435 3443 [[package]]
3436 3444 name = "makeover-webview"
3437 - version = "0.33.0"
3445 + version = "0.34.0"
3446 + source = "registry+https://github.com/rust-lang/crates.io-index"
3447 + checksum = "55628364f54e172d255701c3044be78f8a8eff3a2362d9b2960ad8cd54ccf9b7"
3438 3448 dependencies = [
3439 3449 "makeover-geometry",
3440 3450 "makeover-layout",
@@ -8363,6 +8373,10 @@
8363 8373 "winnow 1.0.4",
8364 8374 ]
8365 8375
8376 + [[patch.unused]]
8377 + name = "ops-status"
8378 + version = "0.1.0"
8379 +
8366 8380 [[patch.unused]]
8367 8381 name = "quasi-axum"
8368 8382 version = "0.1.0"
@@ -8370,7 +8384,3 @@
8370 8384 [[patch.unused]]
8371 8385 name = "quasi-store"
8372 8386 version = "0.1.0"
8373 -
8374 - [[patch.unused]]
8375 - name = "makeover-immediate"
8376 - version = "0.15.0"
M Cargo.toml +1 -1
@@ -95,7 +95,7 @@
95 95 notify = "8.2"
96 96 notify-debouncer-mini = "0.7"
97 97 makeover = "2.5"
98 - makeover-tui = "0.16.1"
98 + makeover-tui = "0.17.0"
99 99 toml = "1.1"
100 100
101 101 # Enums
@@ -18,12 +18,12 @@
18 18 # Materialises all three generated files: themes/, geometry.css, layout.css,
19 19 # and holds both drift checks this build.rs used to carry itself: touch density
20 20 # as of 0.17, breakpoints as of 0.18.
21 - makeover-build = "0.26.0"
21 + makeover-build = "0.27.0"
22 22 # The table CSS is generated here too: the columns are this app's, so the
23 23 # shared helper cannot know them, but the tracks and the narrowing rules come
24 24 # from the description rather than from hand-written nth-child cuts.
25 - makeover-webview = "0.33.0"
26 - makeover-layout = "0.17.0"
25 + makeover-webview = "0.34.0"
26 + makeover-layout = "0.18.0"
27 27 # Width. Direct rather than through makeover-webview, because the narrow table
28 28 # pass keys off SizeClass::Compact and a boundary reached transitively is a
29 29 # boundary nobody pinned.
@@ -112,8 +112,8 @@
112 112 # The forms emitter and the description it renders. Runtime deps, not build:
113 113 # form markup depends on the value, the error and the options at the moment a
114 114 # modal opens, so it cannot be materialised the way the stylesheet is.
115 - makeover-webview = "0.33.0"
116 - makeover-layout = "0.17.0"
115 + makeover-webview = "0.34.0"
116 + makeover-layout = "0.18.0"
117 117 # Browser opening
118 118 open = { workspace = true }
119 119