From 2478a7c08acaeb15591bf4502bd060dbe7c4e7ff Mon Sep 17 00:00:00 2001 From: 2ro <17595647+2ro@users.noreply.github.com> Date: Fri, 3 Jul 2026 13:40:22 -0400 Subject: [PATCH] ui: update banner shows the build number, not GRIM's frozen 0.3.6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The 'Update is available' fallback row rendered crate::VERSION (CARGO_PKG_VERSION = GRIM's 0.3.6) as the current version, e.g. '0.3.6 > build131' — a mismatched, GRIM-leaking string. Show the Goblin build number: 'build130 > build131'. --- src/gui/views/wallets/content.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/views/wallets/content.rs b/src/gui/views/wallets/content.rs index addc3f8..f57c2d7 100644 --- a/src/gui/views/wallets/content.rs +++ b/src/gui/views/wallets/content.rs @@ -847,7 +847,7 @@ impl WalletsContent { let ver_text = if let Some(size) = update.size.as_ref() { format!("{} {} ({} MB)", BOOKMARKS, update.version, size) } else { - format!("{} {} > {}", BOOKMARKS, crate::VERSION, update.version) + format!("{} build{} > {}", BOOKMARKS, crate::BUILD, update.version) }; View::ellipsize_text(ui, ver_text, 15.0, Colors::text(false)); ui.add_space(1.0);