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:
2026-08-06 13:49:35 +02:00
parent ea15c0423c
commit a2d5a57aec
4 changed files with 4 additions and 4 deletions
@@ -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())
}
}