Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 4 additions & 1 deletion src/components/modals/HelpModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -60,7 +61,9 @@ export const HelpModal: React.FC<Props> = (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,
Expand Down
Loading