Skip to content
Merged
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

**FT8 on Android β€” modernized.**

🌐 **[ft8af.app](https://ft8af.app)**

A fork of [FT8CN](https://github.com/N0BOY/FT8CN) that takes the excellent original and brings it forward: a Jetpack Compose UI, full English localization, dozens of bug fixes, and a pile of new operating features built for real on-the-air use.

Run FT8 natively on your Android phone or tablet, drive your radio over USB CAT, decode the band, and work the world from anywhere.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1842,6 +1842,21 @@ private fun AboutDialog(
},
)

Text(
text = "Website",
color = TextPrimary,
fontWeight = FontWeight.SemiBold,
fontSize = 14.sp,
)
Text(
text = "ft8af.app",
color = Accent,
fontSize = 14.sp,
modifier = Modifier
.fillMaxWidth()
.clickable { uriHandler.openUri("https://ft8af.app") },
)

Text(
text = "Built by",
color = TextPrimary,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,16 @@ fun FT8USplashScreen(
letterSpacing = 0.08.em,
)

Spacer(modifier = Modifier.height(4.dp))

Text(
text = "ft8af.app",
color = Color(0xFF8A96B1).copy(alpha = 0.45f),
fontSize = 10.sp,
fontFamily = GeistMonoFamily,
letterSpacing = 0.08.em,
)

Spacer(modifier = Modifier.height(96.dp))
}
}
Expand Down
Loading