Move to makeover-layout 0.4.0 and makeover-immediate 0.3.0
Both pins named a 0.1/0.2 that caret could not grow out of, so the app had
been building against the vocabulary as it stood several releases ago.
One line of app code: Palette gained a required sunken member, and this app
already read surface-sunken, so the value was in the theme waiting. Nothing
else moved, and no rendering changes. The renderer resolves Fill::Sunken to
that colour now instead of the description having no way to name it.
Full suite passes.
- Co-Authored-By
- Claude Opus 5 (1M context) <noreply@anthropic.com>
3 files changed,
+7 insertions,
-6 deletions
| 2990 |
2990 |
|
|
| 2991 |
2991 |
|
[[package]]
|
| 2992 |
2992 |
|
name = "makeover-immediate"
|
| 2993 |
|
- |
version = "0.2.0"
|
|
2993 |
+ |
version = "0.3.0"
|
| 2994 |
2994 |
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
| 2995 |
|
- |
checksum = "585c3d40b2a466e930c4a66d78a1cb4d45b8923d43e6fcca2a71a0340442484b"
|
|
2995 |
+ |
checksum = "1d3868218ab41ffe37cb0226c6b2cd41f87f2a5032eba4cdf6a27ffc54f97250"
|
| 2996 |
2996 |
|
dependencies = [
|
| 2997 |
2997 |
|
"egui",
|
| 2998 |
2998 |
|
"makeover-layout",
|
| 3000 |
3000 |
|
|
| 3001 |
3001 |
|
[[package]]
|
| 3002 |
3002 |
|
name = "makeover-layout"
|
| 3003 |
|
- |
version = "0.1.0"
|
|
3003 |
+ |
version = "0.4.0"
|
| 3004 |
3004 |
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
| 3005 |
|
- |
checksum = "c6342972c67cb6a54ce0ae661e2a4060b548de16113578cac71ca5f7316991bb"
|
|
3005 |
+ |
checksum = "bab23683bb15b9855a8fd7f22d71d72500b99c310cb3ffdbad0ff73833a2e320"
|
| 3006 |
3006 |
|
|
| 3007 |
3007 |
|
[[package]]
|
| 3008 |
3008 |
|
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.1.0"
|
| 16 |
|
- |
makeover-immediate = "0.2.0"
|
|
15 |
+ |
makeover-layout = "0.4.0"
|
|
16 |
+ |
makeover-immediate = "0.3.0"
|
| 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"] }
|
| 376 |
376 |
|
raised: t.surface_raised,
|
| 377 |
377 |
|
overlay: t.surface_overlay,
|
| 378 |
378 |
|
well: t.surface_well,
|
|
379 |
+ |
sunken: t.surface_sunken,
|
| 379 |
380 |
|
bevel_light: t.bevel_light,
|
| 380 |
381 |
|
bevel_dark: t.bevel_dark,
|
| 381 |
382 |
|
}
|