Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version #113

Merged
merged 2 commits into from
May 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 1 addition & 14 deletions .idea/deploymentTargetDropDown.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ android {
applicationId "com.starry.greenstash"
minSdk 24
targetSdk 34
versionCode 340
versionName "3.4.0"
versionCode 350
versionName "3.5.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ fun HomeScreen(navController: NavController) {
) {
val showTapTargets = remember { mutableStateOf(false) }
LaunchedEffect(key1 = viewModel.showOnboardingTapTargets.value) {
delay(300) // Delay to prevent flickering
delay(800) // Delay to prevent flickering
showTapTargets.value = viewModel.showOnboardingTapTargets.value
}
TapTargetCoordinator(
Expand Down Expand Up @@ -221,13 +221,15 @@ fun HomeScreen(navController: NavController) {
) {
if (allGoalState.value.isEmpty()) {
var showNoGoalsAnimation by remember { mutableStateOf(false) }

LaunchedEffect(key1 = true, block = {
delay(200)
showNoGoalsAnimation = true
})

if (showNoGoalsAnimation) {
AnimatedVisibility(
visible = showNoGoalsAnimation,
enter = fadeIn(),
exit = fadeOut()
) {
NoGoalAnimation()
}
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ import androidx.compose.ui.unit.dp
@Composable
fun PriorityIndicator(modifier: Modifier = Modifier, color: Color) {
val value by rememberInfiniteTransition(label = "value").animateFloat(
initialValue = 0.6f,
initialValue = 0.8f,
targetValue = 1f,
animationSpec = infiniteRepeatable(
animation = tween(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ private fun LockIconCard() {
.clip(CircleShape)
.animateContentSize(),
colors = CardDefaults.cardColors(
containerColor = MaterialTheme.colorScheme.surfaceColorAtElevation(2.dp)
containerColor = MaterialTheme.colorScheme.surfaceColorAtElevation(5.dp)
)
) {
Box(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ private fun ThemeBottomSheet(
Row(
modifier = Modifier
.fillMaxWidth()
.padding(top = 4.dp, bottom = 20.dp, end = 14.dp)
.padding(top = 8.dp, bottom = 20.dp, end = 14.dp)
) {
Spacer(modifier = Modifier.weight(1f))
TextButton(onClick = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ class PreferenceUtil(context: Context) {
// Onboarding preferences
const val HOME_SCREEN_ONBOARDING_BOOL = "show_home_screen_onboarding"
const val INPUT_SCREEN_ONBOARDING_BOOL = "show_input_onboarding"
const val INPUT_REMOVE_DEADLINE_TIP_BOOL = "show_input_remove_deadline_tip"
const val INFO_TRANSACTION_SWIPE_TIP_BOOL = "show_info_transaction_swipe_tip"
const val INPUT_REMOVE_DEADLINE_TIP_BOOL = "input_remove_deadline_tip"
const val INFO_TRANSACTION_SWIPE_TIP_BOOL = "info_transaction_swipe_tip"
}

private var prefs: SharedPreferences
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ buildscript {
ext {
kotlin_version = '1.9.23'
gradle_version = '8.3.2'
hilt_version = '2.49'
hilt_version = '2.50'
room_version = '2.6.1'
}
repositories {
Expand Down
7 changes: 7 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/350.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
- Added black amoled theme.
- Add soft haptic feedbacks for better user experience.
- Improved navigation animations for smoother transitions between screens.
- Improved icon picker and filter dialogs.
- Improved UI of tip card.
- Improved default color scheme.
- Some other minor improvements and bug fixes.
Loading