mirror of
https://github.com/sudosylabs/vnidrop.git
synced 2026-08-05 02:29:55 +02:00
fix(app): standardize branding and disable telemetry
This commit is contained in:
@@ -77,7 +77,7 @@ fun main(args: Array<String>) {
|
||||
Window(
|
||||
onCloseRequest = ::exitApplication,
|
||||
state = windowState,
|
||||
title = "vnidrop",
|
||||
title = "VniDrop",
|
||||
// Compose keeps edge resizers active for this client-decorated Linux window.
|
||||
undecorated = linux,
|
||||
) {
|
||||
@@ -166,7 +166,7 @@ private fun WindowScope.MacOsTitleBar() {
|
||||
) {
|
||||
Box(modifier = Modifier.fillMaxSize().padding(end = MacOsTrafficLightsWidth)) {
|
||||
BasicText(
|
||||
text = "vnidrop",
|
||||
text = "VniDrop",
|
||||
modifier = Modifier.align(Alignment.Center),
|
||||
style = TextStyle(
|
||||
color = colors.foregroundDefault,
|
||||
@@ -195,7 +195,7 @@ private fun WindowScope.LinuxTitleBar(
|
||||
.background(colors.backgroundSurface200),
|
||||
) {
|
||||
BasicText(
|
||||
text = "vnidrop",
|
||||
text = "VniDrop",
|
||||
modifier = Modifier.align(Alignment.Center),
|
||||
style = TextStyle(
|
||||
color = colors.foregroundDefault,
|
||||
|
||||
Reference in New Issue
Block a user