Skip to content

Commit

Permalink
Bump version (#113)
Browse files Browse the repository at this point in the history
* Minor improvements
* Bump version
---------
Signed-off-by: starry-shivam <[email protected]>
  • Loading branch information
starry-shivam authored May 1, 2024
1 parent f66b792 commit fa819c9
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 26 deletions.
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.

0 comments on commit fa819c9

Please sign in to comment.