diff --git a/src/gui/views/wallets/content.rs b/src/gui/views/wallets/content.rs index b87199ea..5833de48 100644 --- a/src/gui/views/wallets/content.rs +++ b/src/gui/views/wallets/content.rs @@ -836,7 +836,7 @@ impl WalletsContent { // Show button to see update information. View::item_button(ui, CornerRadius::default(), NOTEPAD, None, || { self.changelog_content = Some(ChangelogContent::new(update.changelog.clone())); - let title = format!("Grim {}", update.version); + let title = format!("Goblin {}", update.version); Modal::new(ChangelogContent::MODAL_ID) .position(ModalPosition::Center) .title(title) diff --git a/src/gui/views/wallets/modals/changelog.rs b/src/gui/views/wallets/modals/changelog.rs index 991c3aaf..e9fe6e6d 100644 --- a/src/gui/views/wallets/modals/changelog.rs +++ b/src/gui/views/wallets/modals/changelog.rs @@ -26,11 +26,11 @@ pub struct ChangelogContent { } /// Endpoint for GitHub repository. -const GITHUB_URL: &'static str = "https://github.com/GetGrin/grim"; +const GITHUB_URL: &'static str = "https://github.com/2ro/goblin"; /// Endpoint for Telegram releases channel. -const TELEGRAM_URL: &'static str = "https://t.me/grim_releases"; -/// Endpoint for git repository. -const GIT_URL: &'static str = "https://code.gri.mw/GUI/grim"; +const TELEGRAM_URL: &'static str = "https://t.me/goblinfamily"; +/// Endpoint for project website. +const GIT_URL: &'static str = "https://goblin.st"; impl ChangelogContent { /// Create new content instance.