Pin the makeover suite to current
The suite went out today: makeover 2.4.1 (the re-ramped parchment),
makeover-tui 0.5.1 and makeover-immediate 0.4.1 (both onto
makeover-layout 0.6.0), makeover-build 0.2.0 and alloy_tui 4.1.0.
The pins that mattered were the 0.x ones. A caret on 0.4.0 accepts
nothing past 0.5, so the two renderers could never see layout 0.6 no
matter how often the tree was rebuilt, where a caret on makeover 2.3.0
had been resolving to 2.4.1 all along and only read as stale.
- Co-Authored-By
- Claude Opus 5 (1M context) <noreply@anthropic.com>
2 files changed,
+9 insertions,
-9 deletions
| 2975 |
2975 |
|
|
| 2976 |
2976 |
|
[[package]]
|
| 2977 |
2977 |
|
name = "makeover"
|
| 2978 |
|
- |
version = "2.3.0"
|
|
2978 |
+ |
version = "2.4.1"
|
| 2979 |
2979 |
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
| 2980 |
|
- |
checksum = "e35cc903581eea6df09a3a102f101d85a6b941ea18431fcd0a70738762271fdf"
|
|
2980 |
+ |
checksum = "b0a796c931419e54dd71a8aaa7d62230730e958f3101d37d4c1d3ab7b541b38e"
|
| 2981 |
2981 |
|
dependencies = [
|
| 2982 |
2982 |
|
"include_dir",
|
| 2983 |
2983 |
|
"serde",
|
| 2992 |
2992 |
|
|
| 2993 |
2993 |
|
[[package]]
|
| 2994 |
2994 |
|
name = "makeover-immediate"
|
| 2995 |
|
- |
version = "0.3.0"
|
|
2995 |
+ |
version = "0.4.1"
|
| 2996 |
2996 |
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
| 2997 |
|
- |
checksum = "1d3868218ab41ffe37cb0226c6b2cd41f87f2a5032eba4cdf6a27ffc54f97250"
|
|
2997 |
+ |
checksum = "99f4cfe5d607fcd94493b05302164672432791516ec662d775ad5d52ecb2756b"
|
| 2998 |
2998 |
|
dependencies = [
|
| 2999 |
2999 |
|
"egui",
|
| 3000 |
3000 |
|
"makeover-layout",
|
| 3002 |
3002 |
|
|
| 3003 |
3003 |
|
[[package]]
|
| 3004 |
3004 |
|
name = "makeover-layout"
|
| 3005 |
|
- |
version = "0.4.0"
|
|
3005 |
+ |
version = "0.6.0"
|
| 3006 |
3006 |
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
| 3007 |
|
- |
checksum = "bab23683bb15b9855a8fd7f22d71d72500b99c310cb3ffdbad0ff73833a2e320"
|
|
3007 |
+ |
checksum = "ad745601b5220b2244d73a5da3f3854aefe4cdc955dd45c6d3aa5781ad645f5a"
|
| 3008 |
3008 |
|
|
| 3009 |
3009 |
|
[[package]]
|
| 3010 |
3010 |
|
name = "matchers"
|
| 12 |
12 |
|
audiofiles-browser = { path = "crates/audiofiles-browser" }
|
| 13 |
13 |
|
audiofiles-sync = { path = "crates/audiofiles-sync" }
|
| 14 |
14 |
|
audiofiles-rhai = { path = "crates/audiofiles-rhai" }
|
| 15 |
|
- |
makeover-layout = "0.4.0"
|
| 16 |
|
- |
makeover-immediate = "0.3.0"
|
|
15 |
+ |
makeover-layout = "0.6.0"
|
|
16 |
+ |
makeover-immediate = "0.4.1"
|
| 17 |
17 |
|
egui = { version = "0.35", default-features = false, features = ["default_fonts"] }
|
| 18 |
18 |
|
egui_extras = { version = "0.35", default-features = false }
|
| 19 |
19 |
|
eframe = { version = "0.35", default-features = false, features = ["default_fonts", "glow"] }
|
| 59 |
59 |
|
libc = "0.2"
|
| 60 |
60 |
|
midir = "0.11"
|
| 61 |
61 |
|
tagtree = { path = "../../MNW/shared/tagtree" }
|
| 62 |
|
- |
makeover = "2.3.0"
|
|
62 |
+ |
makeover = "2.4.1"
|
| 63 |
63 |
|
# The invariant half of the design system: relational spacing. makeover
|
| 64 |
64 |
|
# resolves colour, which a theme may override; this carries what no theme may.
|
| 65 |
65 |
|
makeover-geometry = "0.2.0"
|