Skip to main content

max / audiofiles

Read the info intent, and hand makeover-immediate all five tones makeover-immediate 0.18.0 resolves every `Tone` from the palette it is given, so a palette missing one would have to invent a colour. This app already resolved danger, success and warning and had never read `info`, which makeover derives for every theme. The default is the value themes/audiofiles.toml authors rather than one picked here: `theme_colors_default_is_audiofiles` is the guard that says the hardcoded fallback must equal what parsing the shipped skin gives, and it caught the invented one.
Co-Authored-By
Claude Opus 5 (1M context) <noreply@anthropic.com>
Author: Max Johnson <me@maxj.phd> · 2026-08-13 16:48 UTC
Signed with PGP, not checked
Commit: 89fcf4d97c981e87741594862c5cc55616737700
Parent: bc685ff
3 files changed, +29 insertions, -22 deletions
M Cargo.lock +17 -21
@@ -3002,9 +3002,7 @@
3002 3002
3003 3003 [[package]]
3004 3004 name = "makeover-immediate"
3005 - version = "0.17.2"
3006 - source = "registry+https://github.com/rust-lang/crates.io-index"
3007 - checksum = "c02a8ecc2665b68016dff28b0a498462ab9e1c1e028c1f8e52c94b19b9139d41"
3005 + version = "0.18.0"
3008 3006 dependencies = [
3009 3007 "egui",
3010 3008 "egui_extras",
@@ -3014,8 +3012,6 @@
3014 3012 [[package]]
3015 3013 name = "makeover-layout"
3016 3014 version = "0.19.0"
3017 - source = "registry+https://github.com/rust-lang/crates.io-index"
3018 - checksum = "2c5e6bd13bcf40df8f4eae9736591a1ecef32aedc7205eb497e0633a8a9d2b35"
3019 3015
3020 3016 [[package]]
3021 3017 name = "matchers"
@@ -7312,6 +7308,22 @@
7312 7308 "winnow 1.0.4",
7313 7309 ]
7314 7310
7311 + [[patch.unused]]
7312 + name = "kberg"
7313 + version = "0.1.0"
7314 +
7315 + [[patch.unused]]
7316 + name = "ops-status"
7317 + version = "0.1.0"
7318 +
7319 + [[patch.unused]]
7320 + name = "painhours"
7321 + version = "0.1.0"
7322 +
7323 + [[patch.unused]]
7324 + name = "docengine"
7325 + version = "0.7.0"
7326 +
7315 7327 [[patch.unused]]
7316 7328 name = "quasi-axum"
7317 7329 version = "0.2.0"
@@ -7335,19 +7347,3 @@
7335 7347 [[patch.unused]]
7336 7348 name = "quasi-webview"
7337 7349 version = "0.2.0"
7338 -
7339 - [[patch.unused]]
7340 - name = "kberg"
7341 - version = "0.1.0"
7342 -
7343 - [[patch.unused]]
7344 - name = "ops-status"
7345 - version = "0.1.0"
7346 -
7347 - [[patch.unused]]
7348 - name = "painhours"
7349 - version = "0.1.0"
7350 -
7351 - [[patch.unused]]
7352 - name = "docengine"
7353 - version = "0.7.0"
M Cargo.toml +1 -1
@@ -18,7 +18,7 @@
18 18 # makeover-immediate re-exports nothing, so the `Column` the app describes and
19 19 # the `Column` the renderer matches on have to be the same type.
20 20 makeover-layout = "0.19.0"
21 - makeover-immediate = "0.17.0"
21 + makeover-immediate = "0.18.0"
22 22 egui = { version = "0.35", default-features = false, features = ["default_fonts"] }
23 23 egui_extras = { version = "0.35", default-features = false }
24 24 eframe = { version = "0.35", default-features = false, features = ["default_fonts", "glow"] }
@@ -165,6 +165,12 @@
165 165 pub success: Color32,
166 166 pub action: Color32,
167 167 pub warning: Color32,
168 + /// `info`.
169 + ///
170 + /// Read but not drawn by this app's own widgets: it is here because
171 + /// `makeover_immediate::Palette` resolves all five tones from 0.18.0, and a
172 + /// palette missing one would have to invent a colour for it.
173 + pub info: Color32,
168 174 pub category_five: Color32,
169 175 pub category_six: Color32,
170 176 // Border
@@ -206,6 +212,7 @@
206 212 success: Color32::from_rgb(0x2E, 0x7D, 0x32),
207 213 action: Color32::from_rgb(0x3B, 0x5A, 0x9F),
208 214 warning: Color32::from_rgb(0xE0, 0xA0, 0x30),
215 + info: Color32::from_rgb(0x4A, 0x6B, 0x98),
209 216 category_five: Color32::from_rgb(0x00, 0x9C, 0xDF),
210 217 category_six: Color32::from_rgb(0x97, 0x39, 0x99),
211 218 border: Color32::from_rgb(0x80, 0x80, 0x80),
@@ -397,6 +404,9 @@
397 404 content_muted: t.content_muted,
398 405 action: t.action,
399 406 danger: t.danger,
407 + success: t.success,
408 + warning: t.warning,
409 + info: t.info,
400 410 }
401 411 }
402 412
@@ -690,6 +700,7 @@
690 700 success: c("success", Color32::GREEN),
691 701 action: c("action", Color32::BLUE),
692 702 warning: c("warning", Color32::YELLOW),
703 + info: c("info", Color32::LIGHT_BLUE),
693 704 category_five: c("category-five", Color32::from_rgb(0xBD, 0x93, 0xF9)),
694 705 category_six: c("category-six", Color32::from_rgb(0x88, 0xC0, 0xD0)),
695 706 border: c("border", Color32::DARK_GRAY),