diff --git a/README.md b/README.md index 1fe54dbf..e9ae7849 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/ft8cn/app/src/main/kotlin/radio/ks3ckc/ft8us/ui/settings/SettingsScreen.kt b/ft8cn/app/src/main/kotlin/radio/ks3ckc/ft8us/ui/settings/SettingsScreen.kt index e61e269f..c03c5768 100644 --- a/ft8cn/app/src/main/kotlin/radio/ks3ckc/ft8us/ui/settings/SettingsScreen.kt +++ b/ft8cn/app/src/main/kotlin/radio/ks3ckc/ft8us/ui/settings/SettingsScreen.kt @@ -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, diff --git a/ft8cn/app/src/main/kotlin/radio/ks3ckc/ft8us/ui/splash/SplashScreen.kt b/ft8cn/app/src/main/kotlin/radio/ks3ckc/ft8us/ui/splash/SplashScreen.kt index 58e20f47..6a4d29cd 100644 --- a/ft8cn/app/src/main/kotlin/radio/ks3ckc/ft8us/ui/splash/SplashScreen.kt +++ b/ft8cn/app/src/main/kotlin/radio/ks3ckc/ft8us/ui/splash/SplashScreen.kt @@ -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)) } }