feat(ui): Rename app from MyIce to MyIceK
Update the app display name in all user-visible locations: Android manifest label, desktop window title, login screen, and schedule screen top bar. Refs #2
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
|
||||
<application
|
||||
android:label="MyIce"
|
||||
android:label="MyIceK"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:supportsRtl="true"
|
||||
android:enableOnBackInvokedCallback="true"
|
||||
|
||||
@@ -66,7 +66,7 @@ fun LoginScreen(
|
||||
verticalArrangement = Arrangement.Center,
|
||||
) {
|
||||
Text(
|
||||
text = "MyIce",
|
||||
text = "MyIceK",
|
||||
style = MaterialTheme.typography.headlineLarge,
|
||||
fontWeight = FontWeight.Bold,
|
||||
)
|
||||
|
||||
@@ -80,7 +80,7 @@ fun ScheduleScreen(
|
||||
Scaffold(
|
||||
topBar = {
|
||||
TopAppBar(
|
||||
title = { Text("MyIce") },
|
||||
title = { Text("MyIceK") },
|
||||
actions = {
|
||||
val email = (authState as? ch.parano.myice.viewmodel.AuthState.Authenticated)?.email
|
||||
if (email != null) {
|
||||
|
||||
@@ -22,7 +22,7 @@ import androidx.compose.ui.window.application
|
||||
import ch.parano.myice.auth.DesktopOAuthClient
|
||||
|
||||
fun main() = application {
|
||||
Window(onCloseRequest = ::exitApplication, title = "MyIce") {
|
||||
Window(onCloseRequest = ::exitApplication, title = "MyIceK") {
|
||||
App(oauthClient = DesktopOAuthClient())
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user