Open
fix: About screen shows "FT8US" instead of "FT8AF"#448
Conversation
… in AboutSettings
Copilot
AI
changed the title
[WIP] Fix typo in app name on Settings > About screen
fix: About screen shows "FT8US" instead of "FT8AF"
Jul 6, 2026
There was a problem hiding this comment.
Pull request overview
Fixes the Settings → About screen app-name label by removing a hardcoded typo ("FT8US") and sourcing the label from the canonical Android string resource (R.string.app_name), plus adds a Robolectric regression test to prevent future regressions.
Changes:
- Replace hardcoded About screen app name label with
stringResource(R.string.app_name). - Add a Robolectric unit test asserting
R.string.app_nameresolves to"FT8AF".
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| ft8af/app/src/main/kotlin/radio/ks3ckc/ft8af/ui/settings/AboutSettings.kt | Uses R.string.app_name for the About screen label instead of a hardcoded string. |
| ft8af/app/src/test/kotlin/radio/ks3ckc/ft8af/ui/settings/AboutAppNameTest.kt | Adds a Robolectric regression test to ensure app_name resolves to the expected value. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #448 +/- ##
=========================================
Coverage 11.70% 11.70%
Complexity 113 113
=========================================
Files 85 85
Lines 11691 11691
Branches 2110 2110
=========================================
Hits 1369 1369
Misses 10191 10191
Partials 131 131
🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The Settings → About screen displayed the hardcoded typo
"FT8US"as the app name label instead of"FT8AF".Changes
AboutSettings.kt:91— replace hardcoded"FT8US"withstringResource(R.string.app_name)so the label stays in sync with the canonical app name:AboutAppNameTest.kt(new) — Robolectric regression test assertingR.string.app_nameresolves to"FT8AF", guarding against future resource renames or wrong ID references.