Skip to main content

max / makeover-touch

0.8.0: take makeover-layout 0.12
Author: Max Johnson <me@maxj.phd> · 2026-08-09 16:23 UTC
Signed with PGP, not checked
Commit: eff306ebcef07d36b44dac83e810f30c1e7a3285
Parent: 585aab0
2 files changed, +9 insertions, -9 deletions
M Cargo.toml +2 -2
@@ -1,6 +1,6 @@
1 1 [package]
2 2 name = "makeover-touch"
3 - version = "0.7.0"
3 + version = "0.8.0"
4 4 edition = "2024"
5 5 description = "The adaptation layer of the make-family design system: which affordances exist at a given input class and window size class. Names what appears and disappears, never how much space it takes."
6 6 license = "MIT"
@@ -8,7 +8,7 @@
8 8
9 9 [dependencies]
10 10 makeover-geometry = "0.6"
11 - makeover-layout = "0.11"
11 + makeover-layout = "0.12"
12 12
13 13 [lints.rust]
14 14 unused = "warn"
M src/lib.rs +7 -7
@@ -561,41 +561,41 @@
561 561
562 562 let before = [
563 563 Column {
564 - name: "Title",
565 564 width: Width::Fill,
566 565 priority: P::Essential,
566 + ..Column::new("Title")
567 567 },
568 568 Column {
569 - name: "Due",
570 569 width: Width::Fixed,
571 570 priority: P::Secondary,
571 + ..Column::new("Due")
572 572 },
573 573 Column {
574 - name: "Estimate",
575 574 width: Width::Fixed,
576 575 priority: P::Optional,
576 + ..Column::new("Estimate")
577 577 },
578 578 ];
579 579 let after = [
580 580 Column {
581 - name: "Title",
582 581 width: Width::Fill,
583 582 priority: P::Essential,
583 + ..Column::new("Title")
584 584 },
585 585 Column {
586 - name: "Project",
587 586 width: Width::Fill,
588 587 priority: P::Secondary,
588 + ..Column::new("Project")
589 589 },
590 590 Column {
591 - name: "Due",
592 591 width: Width::Fixed,
593 592 priority: P::Secondary,
593 + ..Column::new("Due")
594 594 },
595 595 Column {
596 - name: "Estimate",
597 596 width: Width::Fixed,
598 597 priority: P::Optional,
598 + ..Column::new("Estimate")
599 599 },
600 600 ];
601 601