Skip to content

Commit 1b44357

Browse files
Surjit Kumar SahooSurjit Kumar Sahoo
authored andcommitted
feat: update copyright in LICENSE and strings, and refine license footer UI by adjusting layout and font size.
1 parent 8553632 commit 1b44357

File tree

3 files changed

+9
-14
lines changed

3 files changed

+9
-14
lines changed

LICENSE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
MIT License
22

33
Copyright (c) 2024-2026 Max Grakov
4+
Copyright (c) 2025-2026 Surjit Sahoo
45

56
Permission is hereby granted, free of charge, to any person obtaining a copy
67
of this software and associated documentation files (the "Software"), to deal

app/src/main/kotlin/org/grakovne/lissen/ui/screens/settings/composable/LicenseFooterComposable.kt

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import androidx.compose.foundation.layout.Row
66
import androidx.compose.foundation.layout.Spacer
77
import androidx.compose.foundation.layout.fillMaxWidth
88
import androidx.compose.foundation.layout.height
9+
import androidx.compose.foundation.layout.offset
910
import androidx.compose.foundation.layout.padding
1011
import androidx.compose.foundation.layout.size
1112
import androidx.compose.foundation.layout.width
@@ -47,7 +48,11 @@ fun LicenseFooterComposable() {
4748
Row(
4849
verticalAlignment = Alignment.CenterVertically,
4950
horizontalArrangement = Arrangement.Center,
50-
modifier = Modifier.fillMaxWidth().padding(horizontal = Spacing.sm),
51+
modifier =
52+
Modifier
53+
.fillMaxWidth()
54+
.padding(horizontal = Spacing.sm)
55+
.offset(x = (-4).dp),
5156
) {
5257
Icon(
5358
painter = painterResource(id = R.drawable.ic_notification_silhouette),
@@ -76,24 +81,13 @@ fun LicenseFooterComposable() {
7681

7782
Spacer(modifier = Modifier.height(Spacing.sm))
7883

79-
// Original author copyright
80-
Text(
81-
text = stringResource(R.string.settings_screen_footer_copyright_original),
82-
style =
83-
TextStyle(
84-
textAlign = TextAlign.Center,
85-
fontSize = 10.sp,
86-
color = colorScheme.onSurfaceVariant.copy(alpha = 0.7f),
87-
),
88-
)
89-
9084
// Fork contributor copyright
9185
Text(
9286
text = stringResource(R.string.settings_screen_footer_copyright_fork),
9387
style =
9488
TextStyle(
9589
textAlign = TextAlign.Center,
96-
fontSize = 10.sp,
90+
fontSize = 11.sp,
9791
color = colorScheme.onSurfaceVariant.copy(alpha = 0.7f),
9892
),
9993
)

app/src/main/res/values/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@
207207
<string name="playback_preferences">Playback preferences</string>
208208
<string name="settings_screen_footer_app_name_pattern">%1$s %2$s</string>
209209
<string name="settings_screen_footer_copyright_original">© 2024–2026 Max Grakov</string>
210-
<string name="settings_screen_footer_copyright_fork">© 2026 Surjit Sahoo</string>
210+
<string name="settings_screen_footer_copyright_fork"2025–2026 Surjit Sahoo</string>
211211
<string name="settings_screen_footer_license">MIT License</string>
212212
<string name="donate_title">Donate to support us</string>
213213
<string name="donate_subtitle">Help keep this project alive</string>

0 commit comments

Comments
 (0)