From e5a54b243f06400017f83b24c504ceddaf9324f9 Mon Sep 17 00:00:00 2001 From: 2ro <17595647+2ro@users.noreply.github.com> Date: Sun, 5 Jul 2026 14:07:55 -0400 Subject: [PATCH] goblin: point changelog third link to docs.goblin.st and rebrand startup log Repoint the changelog modal's third button to https://docs.goblin.st (the docs/reference destination; GitHub button already covers source) and swap its code-brackets glyph for the BOOK icon so it reads as a docs link. Rebrand the startup version-announcement log line from "Grim" to "Goblin". --- src/gui/views/wallets/modals/changelog.rs | 6 +++--- src/logger.rs | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/gui/views/wallets/modals/changelog.rs b/src/gui/views/wallets/modals/changelog.rs index e9fe6e6d..e1b9a8c5 100644 --- a/src/gui/views/wallets/modals/changelog.rs +++ b/src/gui/views/wallets/modals/changelog.rs @@ -16,7 +16,7 @@ use egui::scroll_area::ScrollBarVisibility; use egui::{Id, OpenUrl, RichText, ScrollArea}; use crate::gui::Colors; -use crate::gui::icons::{BRACKETS_CURLY, GITHUB_LOGO, TELEGRAM_LOGO}; +use crate::gui::icons::{BOOK, GITHUB_LOGO, TELEGRAM_LOGO}; use crate::gui::views::{Modal, View}; /// Application release changelog content. @@ -30,7 +30,7 @@ const GITHUB_URL: &'static str = "https://github.com/2ro/goblin"; /// Endpoint for Telegram releases channel. const TELEGRAM_URL: &'static str = "https://t.me/goblinfamily"; /// Endpoint for project website. -const GIT_URL: &'static str = "https://goblin.st"; +const GIT_URL: &'static str = "https://docs.goblin.st"; impl ChangelogContent { /// Create new content instance. @@ -114,7 +114,7 @@ impl ChangelogContent { columns[2].vertical_centered_justified(|ui| { // Draw button to open repository link. let mut git_clicked = false; - View::button(ui, BRACKETS_CURLY, Colors::white_or_black(false), || { + View::button(ui, BOOK, Colors::white_or_black(false), || { git_clicked = true; }); if git_clicked { diff --git a/src/logger.rs b/src/logger.rs index c55efee6..2a101542 100644 --- a/src/logger.rs +++ b/src/logger.rs @@ -114,7 +114,7 @@ pub fn init_logger() { /// Get information about application build. fn build_info() -> String { format!( - "This is Grim version {}, built for {} by {}.", + "This is Goblin version {}, built for {} by {}.", built_info::PKG_VERSION, built_info::TARGET, built_info::RUSTC_VERSION,