From ff384fc81da0daad46f045eb4a647f3401254f3b Mon Sep 17 00:00:00 2001 From: Jonathan Tzeng Date: Thu, 23 Jul 2026 15:26:44 -0700 Subject: [PATCH] Add Maestro build tag to Help scene version number Appends a -m suffix to the version string shown in the Help modal when the app is a Maestro test build, so QA/devs can tell at a glance that a Maestro build is installed. --- CHANGELOG.md | 2 ++ src/components/modals/HelpModal.tsx | 5 ++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a81bda8397..8f8061f101f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased (develop) +- added: "-m" tag on the version number in the Help scene for Maestro test builds + ## 4.50.0 (2026-07-21) - added: Changelly swap provider diff --git a/src/components/modals/HelpModal.tsx b/src/components/modals/HelpModal.tsx index c46b405b897..5a2719c2936 100644 --- a/src/components/modals/HelpModal.tsx +++ b/src/components/modals/HelpModal.tsx @@ -11,6 +11,7 @@ import { lstrings } from '../../locales/strings' import { config } from '../../theme/appConfig' import { useSelector } from '../../types/reactRedux' import type { NavigationBase } from '../../types/routerTypes' +import { isMaestro } from '../../util/maestro' import { openBrowserUri } from '../../util/WebUtils' import { ChatBubblesIcon } from '../icons/ThemedIcons' import { Airship } from '../services/AirshipInstance' @@ -60,7 +61,9 @@ export const HelpModal: React.FC = (props: Props) => { }, []) const styles = getStyles(theme) - const versionText = `${lstrings.help_version} ${versionNumber}` + const versionText = `${lstrings.help_version} ${versionNumber}${ + isMaestro() ? '-m' : '' + }` const buildText = `${lstrings.help_build} ${buildNumber}` const helpModalTitle = sprintf( lstrings.help_modal_title_thanks,