diff --git a/app/build.gradle.kts b/app/build.gradle.kts index cf93013..55a6862 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -24,8 +24,8 @@ android { applicationId = "com.hotdeal.alarm" minSdk = 31 targetSdk = 35 - versionCode = 15 - versionName = "1.9.0" + versionCode = 16 + versionName = "1.10.0" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" vectorDrawables { diff --git a/app/src/main/java/com/hotdeal/alarm/presentation/deallist/DealListScreen.kt b/app/src/main/java/com/hotdeal/alarm/presentation/deallist/DealListScreen.kt index d1feeae..2f5f5a1 100644 --- a/app/src/main/java/com/hotdeal/alarm/presentation/deallist/DealListScreen.kt +++ b/app/src/main/java/com/hotdeal/alarm/presentation/deallist/DealListScreen.kt @@ -46,9 +46,9 @@ fun DealListScreen( val uiState by viewModel.uiState.collectAsStateWithLifecycle() val context = LocalContext.current - // Pull to Refresh 상태 - 감도 증가를 위해 threshold 값 감소 + // Pull to Refresh 상태 - 민감도 대폭 향상 val pullToRefreshState = rememberPullToRefreshState( - positionalThreshold = 60.dp // 기본값(120.dp)의 절반으로 설정하여 더 쉽게 새로고침 + positionalThreshold = 40.dp // 기본값의 1/3로 설정하여 매우 쉽게 새로고침 ) var isRefreshing by remember { mutableStateOf(false) } diff --git a/version.json b/version.json index 0d8316f..9ecf085 100644 --- a/version.json +++ b/version.json @@ -1,14 +1,12 @@ { - "version": "1.9.0", - "versionCode": 15, + "version": "1.10.0", + "versionCode": 16, "minSdk": 31, "targetSdk": 35, "forceUpdate": false, "updateUrl": "https://git.webpluss.net/attachments/c033eeb6-a8fd-4402-9d3a-adaa1226664b", "changelog": [ - "EdgeToEdge 색상 개선 - 시스템 바가 앱 테마와 일치", - "화면 공간 최적화 - 불필요한 패딩 제거", - "TopAppBar가 시스템 바 영역까지 확장", - "하단 네비게이션 영역 패딩 최적화" + "Pull to Refresh 민감도 대폭 향상 - 1/3 거리로 조정", + "새로고침이 훨씬 쉽고 빠르게 작동" ] }