fix: 애니메이션 개선 및 APK 업데이트

- ViewPropertyAnimator 사용으로 더 부드러운 전환
- alpha 애니메이션 추가로 시각적 효과 개선
- APK URL 업데이트

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode)
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
2026-03-13 00:50:38 +09:00
parent 7462656c15
commit cce9c48345
8 changed files with 39 additions and 53 deletions

View File

@@ -108,11 +108,4 @@ class ShiftRepository(private val context: Context) {
))
}
}
val annualLeave = dao.getAnnualLeave()
annualLeave?.let {
val usedDays = calculateUsedAnnualLeave()
val remainingDays = it.totalDays - usedDays
dao.insertAnnualLeave(it.copy(remainingDays = remainingDays))
}
}
}