Skip to content

Commit

Permalink
Update dependencies and metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksey-saenko committed Dec 14, 2023
1 parent cf8f5b8 commit 1bac4ec
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 9 deletions.
2 changes: 2 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/10.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* Added buttons for Web and Wikipedia search
* Minor UI changes
2 changes: 2 additions & 0 deletions fastlane/metadata/android/ru/changelogs/10.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* Добавлены кнопки для веб-поиска информации о треке
* Незначительные изменения внешнего вида
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import androidx.compose.ui.input.nestedscroll.nestedScroll
import androidx.compose.ui.platform.LocalContext
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.text.style.TextAlign
import androidx.compose.ui.unit.dp
import com.mrsep.musicrecognizer.core.common.util.getAppVersion
Expand Down Expand Up @@ -77,7 +78,8 @@ internal fun AboutScreen(
Text(
text = version,
textAlign = TextAlign.Center,
modifier = Modifier.padding(top = 4.dp)
fontWeight = FontWeight.SemiBold,
modifier = Modifier.padding(top = 2.dp)
)
PreferenceGroup(
title = stringResource(StringsR.string.powered_by),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import androidx.compose.material3.Text
import androidx.compose.material3.TextButton
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.draw.alpha
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.unit.dp
import com.mrsep.musicrecognizer.core.ui.components.DialogSwitch
Expand Down Expand Up @@ -46,10 +45,7 @@ internal fun FontStyleDialog(
)
Text(
text = stringResource(StringsR.string.make_text_bigger_or_smaller),
style = MaterialTheme.typography.bodyMedium,
modifier = Modifier
.alpha(0.9f)
.padding(top = 8.dp)
modifier = Modifier.padding(top = 8.dp)
)
Slider(
value = fontStyle.fontSize.ordinal.toFloat(),
Expand All @@ -58,7 +54,8 @@ internal fun FontStyleDialog(
onFontStyleChanged(fontStyle.copy(fontSize = fontSize))
},
valueRange = 0f..3f,
steps = 2
steps = 2,
modifier = Modifier.padding(top = 8.dp)
)
Column(
verticalArrangement = Arrangement.spacedBy(2.dp),
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ sdkTarget = "34"

accompanist = "0.32.0"
androidGradlePlugin = "8.2.0"
androidxActivity = "1.8.1"
androidxActivity = "1.8.2"
androidxComposeBom = "2023.10.01"
androidxComposeCompiler = "1.5.6"
androidxCore = "1.12.0"
Expand All @@ -15,7 +15,7 @@ androidxEspresso = "3.5.1"
#androidxGlance = "1.0.0"
androidxLifecycle = "2.6.2"
androidxLifecycleViewmodelCompose = "2.6.2"
androidxNavigation = "2.7.5"
androidxNavigation = "2.7.6"
androidxWindowManager = "1.2.0"
androidxWork = "2.9.0"
coil = "2.5.0"
Expand Down

0 comments on commit 1bac4ec

Please sign in to comment.