Bump version to 0.8.0
This commit is contained in:
parent
238ee347a1
commit
8410d11799
4 changed files with 10 additions and 5 deletions
|
|
@ -31,7 +31,7 @@ android {
|
||||||
applicationId = "com.pixelized.rplexicon"
|
applicationId = "com.pixelized.rplexicon"
|
||||||
minSdk = 26
|
minSdk = 26
|
||||||
targetSdk = 34
|
targetSdk = 34
|
||||||
versionName = "0.7.1"
|
versionName = "0.8.0"
|
||||||
|
|
||||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
vectorDrawables {
|
vectorDrawables {
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,6 @@ package com.pixelized.rplexicon.ui.screens.lexicon.list
|
||||||
|
|
||||||
import android.content.res.Configuration.UI_MODE_NIGHT_NO
|
import android.content.res.Configuration.UI_MODE_NIGHT_NO
|
||||||
import android.content.res.Configuration.UI_MODE_NIGHT_YES
|
import android.content.res.Configuration.UI_MODE_NIGHT_YES
|
||||||
import android.util.Log
|
|
||||||
import androidx.compose.animation.AnimatedVisibility
|
import androidx.compose.animation.AnimatedVisibility
|
||||||
import androidx.compose.animation.fadeIn
|
import androidx.compose.animation.fadeIn
|
||||||
import androidx.compose.animation.fadeOut
|
import androidx.compose.animation.fadeOut
|
||||||
|
|
@ -73,7 +72,9 @@ fun LexiconScreen(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Surface {
|
Surface(
|
||||||
|
modifier = Modifier.fillMaxSize(),
|
||||||
|
) {
|
||||||
LexiconScreenContent(
|
LexiconScreenContent(
|
||||||
items = viewModel.items,
|
items = viewModel.items,
|
||||||
lazyColumnState = lazyListState,
|
lazyColumnState = lazyListState,
|
||||||
|
|
|
||||||
|
|
@ -72,7 +72,9 @@ fun LocationScreen(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Surface {
|
Surface(
|
||||||
|
modifier = Modifier.fillMaxSize(),
|
||||||
|
) {
|
||||||
LocationContent(
|
LocationContent(
|
||||||
items = viewModel.items,
|
items = viewModel.items,
|
||||||
lazyColumnState = lazyListState,
|
lazyColumnState = lazyListState,
|
||||||
|
|
|
||||||
|
|
@ -72,7 +72,9 @@ fun QuestListScreen(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Surface {
|
Surface(
|
||||||
|
modifier = Modifier.fillMaxSize(),
|
||||||
|
) {
|
||||||
QuestListContent(
|
QuestListContent(
|
||||||
items = viewModel.items,
|
items = viewModel.items,
|
||||||
lazyColumnState = lazyListState,
|
lazyColumnState = lazyListState,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue