Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d2f2e05d4c | ||
|
|
8888150c84 | ||
|
|
3ace249761 |
@@ -20,8 +20,8 @@ android {
|
|||||||
applicationId = "com.example.shiftalarm"
|
applicationId = "com.example.shiftalarm"
|
||||||
minSdk = 26
|
minSdk = 26
|
||||||
targetSdk = 35
|
targetSdk = 35
|
||||||
versionCode = 115
|
versionCode = 118
|
||||||
versionName = "1.1.5"
|
versionName = "1.1.8"
|
||||||
|
|
||||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,18 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [1.1.8] - 2026-08-17
|
||||||
|
### Fixed
|
||||||
|
- **교육 근무 변경 시 상단 알람 표시 및 실제 알람 완전 유지**: 교육으로 변경해도 상단 오늘/내일 알람 시간이 정상 표시되고 원래 근무 알람이 그대로 울림
|
||||||
|
|
||||||
|
## [1.1.7] - 2026-08-17
|
||||||
|
### Fixed
|
||||||
|
- **교육 근무 변경 시 원래 근무 알람 완전 유지**: 달력에서 교육으로 변경해도 원래 근무 알람이 정상 울리고, 상단 오늘/내일 알람 시간 표시도 정상 유지
|
||||||
|
|
||||||
|
## [1.1.6] - 2026-08-15
|
||||||
|
### Fixed
|
||||||
|
- **알람 추가 시 기본 볼륨 0 버그 수정**: 시스템 알람 스트림 볼륨을 항상 최대치로 강제 설정하여 새 알람 추가 시 볼륨이 0이 되는 문제 원천 차단
|
||||||
|
- **최초 설치 시 권한 모달 팝업 루프 버그 수정**: 시스템 설정 화면이 잠깐 보였다가 모달로 되돌아가는 현상을 isPermissionFlowActive 플래그로 완전 차단. onResume 재진입 시 중복 모달 표시 방지
|
||||||
|
|
||||||
## [1.1.5] - 2026-08-14
|
## [1.1.5] - 2026-08-14
|
||||||
### Fixed
|
### Fixed
|
||||||
- **근무 변경 모달 팝업 버튼 겹침 현상 완벽 수정**: ConstraintLayout Flow 충돌을 제거하고 3행 리니어 그리드로 전면 개편하여 모든 버튼이 겹침 없이 정렬되도록 수정
|
- **근무 변경 모달 팝업 버튼 겹침 현상 완벽 수정**: ConstraintLayout Flow 충돌을 제거하고 3행 리니어 그리드로 전면 개편하여 모든 버튼이 겹침 없이 정렬되도록 수정
|
||||||
|
|||||||
@@ -23,15 +23,24 @@ object AlarmPermissionUtil {
|
|||||||
|
|
||||||
private var monitorJob: Job? = null
|
private var monitorJob: Job? = null
|
||||||
|
|
||||||
|
/** 권한 플로우가 진행 중인지 추적하는 플래그 (onResume 루프 방지) */
|
||||||
|
@Volatile
|
||||||
|
var isPermissionFlowActive = false
|
||||||
|
private set
|
||||||
|
|
||||||
|
/** 현재 권한 모달 다이얼로그가 표시 중인지 추적 */
|
||||||
|
@Volatile
|
||||||
|
private var isDialogShowing = false
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 시스템 설정 화면에서 사용자가 권한을 허용했을 때 뒤로가기를 누르지 않아도 앱으로 즉시 자동 복귀시킵니다.
|
* 시스템 설정 화면에서 사용자가 권한을 허용했을 때 뒤로가기를 누르지 않아도 앱으로 즉시 자동 복귀시킵니다.
|
||||||
*/
|
*/
|
||||||
fun monitorAndAutoReturn(activity: Activity, isGrantedCheck: () -> Boolean) {
|
fun monitorAndAutoReturn(activity: Activity, isGrantedCheck: () -> Boolean) {
|
||||||
monitorJob?.cancel()
|
monitorJob?.cancel()
|
||||||
monitorJob = CoroutineScope(Dispatchers.Main).launch {
|
monitorJob = CoroutineScope(Dispatchers.Main).launch {
|
||||||
delay(1000) // 설정 화면 전환 시간 대기
|
delay(1500) // 설정 화면 전환 시간 충분히 대기 (1.5초)
|
||||||
var count = 0
|
var count = 0
|
||||||
while (count < 150 && isActive) { // 최대 60초간 500ms 주기로 체크
|
while (count < 120 && isActive) { // 최대 60초간 500ms 주기로 체크
|
||||||
delay(500)
|
delay(500)
|
||||||
count++
|
count++
|
||||||
if (isGrantedCheck()) {
|
if (isGrantedCheck()) {
|
||||||
@@ -56,8 +65,12 @@ object AlarmPermissionUtil {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 전체 권한 상태를 확인하고 필요한 경우 통합 안내 다이얼로그를 표시합니다.
|
* 전체 권한 상태를 확인하고 필요한 경우 통합 안내 다이얼로그를 표시합니다.
|
||||||
|
* 권한 플로우가 이미 진행 중이거나 다이얼로그가 표시 중이면 중복 호출을 방지합니다.
|
||||||
*/
|
*/
|
||||||
fun checkAndRequestAllPermissions(activity: ComponentActivity) {
|
fun checkAndRequestAllPermissions(activity: ComponentActivity) {
|
||||||
|
// 이미 권한 플로우 진행 중이면 중복 호출 방지
|
||||||
|
if (isPermissionFlowActive || isDialogShowing) return
|
||||||
|
|
||||||
val missingPermissions = mutableListOf<String>()
|
val missingPermissions = mutableListOf<String>()
|
||||||
|
|
||||||
// 1. 알림 권한 (Android 13+)
|
// 1. 알림 권한 (Android 13+)
|
||||||
@@ -98,6 +111,9 @@ object AlarmPermissionUtil {
|
|||||||
|
|
||||||
private fun showIntegratedPermissionDialog(activity: ComponentActivity, missing: List<String>) {
|
private fun showIntegratedPermissionDialog(activity: ComponentActivity, missing: List<String>) {
|
||||||
if (activity.isFinishing || activity.isDestroyed) return
|
if (activity.isFinishing || activity.isDestroyed) return
|
||||||
|
if (isDialogShowing) return // 이미 모달이 떠있으면 중복 방지
|
||||||
|
|
||||||
|
isDialogShowing = true
|
||||||
|
|
||||||
val message = StringBuilder("안정적인 알람 작동을 위해 아래 권한들이 필요합니다:\n\n")
|
val message = StringBuilder("안정적인 알람 작동을 위해 아래 권한들이 필요합니다:\n\n")
|
||||||
missing.forEach { message.append("- $it\n") }
|
missing.forEach { message.append("- $it\n") }
|
||||||
@@ -108,16 +124,35 @@ object AlarmPermissionUtil {
|
|||||||
.setTitle("권한 설정 안내")
|
.setTitle("권한 설정 안내")
|
||||||
.setMessage(message.toString())
|
.setMessage(message.toString())
|
||||||
.setPositiveButton("확인") { _, _ ->
|
.setPositiveButton("확인") { _, _ ->
|
||||||
|
isDialogShowing = false
|
||||||
|
isPermissionFlowActive = true // 플로우 시작 - onResume 재호출 차단
|
||||||
startPermissionFlow(activity)
|
startPermissionFlow(activity)
|
||||||
}
|
}
|
||||||
.setNegativeButton("나중에", null)
|
.setNegativeButton("나중에") { _, _ ->
|
||||||
|
isDialogShowing = false
|
||||||
|
// "나중에"를 누르면 이번 세션에서는 더 이상 묻지 않음
|
||||||
|
isPermissionFlowActive = true
|
||||||
|
}
|
||||||
.setCancelable(false)
|
.setCancelable(false)
|
||||||
|
.setOnDismissListener {
|
||||||
|
// 어떤 이유로든 다이얼로그가 닫히면 플래그 해제
|
||||||
|
isDialogShowing = false
|
||||||
|
}
|
||||||
.show()
|
.show()
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
|
isDialogShowing = false
|
||||||
e.printStackTrace()
|
e.printStackTrace()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 권한 플로우 완료 후 플래그 리셋 (앱 재시작이나 설정에서 돌아올 때)
|
||||||
|
*/
|
||||||
|
fun resetPermissionFlowState() {
|
||||||
|
isPermissionFlowActive = false
|
||||||
|
isDialogShowing = false
|
||||||
|
}
|
||||||
|
|
||||||
private fun startPermissionFlow(activity: ComponentActivity) {
|
private fun startPermissionFlow(activity: ComponentActivity) {
|
||||||
// 순차적으로 가장 중요한 것부터 요청
|
// 순차적으로 가장 중요한 것부터 요청
|
||||||
|
|
||||||
@@ -125,7 +160,7 @@ object AlarmPermissionUtil {
|
|||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) {
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) {
|
||||||
if (ContextCompat.checkSelfPermission(activity, Manifest.permission.POST_NOTIFICATIONS) != PackageManager.PERMISSION_GRANTED) {
|
if (ContextCompat.checkSelfPermission(activity, Manifest.permission.POST_NOTIFICATIONS) != PackageManager.PERMISSION_GRANTED) {
|
||||||
ActivityCompat.requestPermissions(activity, arrayOf(Manifest.permission.POST_NOTIFICATIONS), 101)
|
ActivityCompat.requestPermissions(activity, arrayOf(Manifest.permission.POST_NOTIFICATIONS), 101)
|
||||||
return // 알림 권한 결과 콜백 이후 다음으로 넘어가도록 유도 (혹은 그냥 연달아 띄움)
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -165,8 +200,12 @@ object AlarmPermissionUtil {
|
|||||||
}
|
}
|
||||||
activity.startActivity(intent)
|
activity.startActivity(intent)
|
||||||
}
|
}
|
||||||
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 모든 권한이 허용된 경우 플로우 완료
|
||||||
|
isPermissionFlowActive = false
|
||||||
}
|
}
|
||||||
|
|
||||||
fun requestBatteryOptimization(context: Context) {
|
fun requestBatteryOptimization(context: Context) {
|
||||||
|
|||||||
@@ -32,15 +32,12 @@ object AlarmSyncManager {
|
|||||||
val alarmId = repo.addCustomAlarm(alarm)
|
val alarmId = repo.addCustomAlarm(alarm)
|
||||||
Log.d(TAG, "알람 DB 추가 완료: ID=$alarmId")
|
Log.d(TAG, "알람 DB 추가 완료: ID=$alarmId")
|
||||||
|
|
||||||
// 시스템 알람 볼륨이 0인 경우 최대치로 자동 보정
|
// 시스템 알람 볼륨을 항상 최대치로 강제 설정 (새 알람 추가 시)
|
||||||
try {
|
try {
|
||||||
val audioManager = context.getSystemService(Context.AUDIO_SERVICE) as android.media.AudioManager
|
val audioManager = context.getSystemService(Context.AUDIO_SERVICE) as android.media.AudioManager
|
||||||
val maxVol = audioManager.getStreamMaxVolume(android.media.AudioManager.STREAM_ALARM)
|
val maxVol = audioManager.getStreamMaxVolume(android.media.AudioManager.STREAM_ALARM)
|
||||||
val currVol = audioManager.getStreamVolume(android.media.AudioManager.STREAM_ALARM)
|
audioManager.setStreamVolume(android.media.AudioManager.STREAM_ALARM, maxVol, 0)
|
||||||
if (currVol == 0) {
|
Log.d(TAG, "알람 볼륨 최대($maxVol)로 강제 설정 완료")
|
||||||
audioManager.setStreamVolume(android.media.AudioManager.STREAM_ALARM, maxVol, 0)
|
|
||||||
Log.d(TAG, "알람 볼륨이 0이어서 최대($maxVol)로 자동 설정")
|
|
||||||
}
|
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Log.w(TAG, "볼륨 자동 보정 실패", e)
|
Log.w(TAG, "볼륨 자동 보정 실패", e)
|
||||||
}
|
}
|
||||||
@@ -66,7 +63,18 @@ object AlarmSyncManager {
|
|||||||
.getString("selected_factory", "Jeonju") ?: "Jeonju"
|
.getString("selected_factory", "Jeonju") ?: "Jeonju"
|
||||||
)
|
)
|
||||||
|
|
||||||
if (addedAlarm.shiftType == "기타" || addedAlarm.shiftType == shift) {
|
// 교육으로 변경된 경우 원래 근무의 알람이 울리도록 원래 근무 타입을 사용
|
||||||
|
val alarmMatchShift = if (shift == "교육") {
|
||||||
|
val team = context.getSharedPreferences("ShiftAlarmPrefs", Context.MODE_PRIVATE)
|
||||||
|
.getString("selected_team", "A") ?: "A"
|
||||||
|
val factory = context.getSharedPreferences("ShiftAlarmPrefs", Context.MODE_PRIVATE)
|
||||||
|
.getString("selected_factory", "Jeonju") ?: "Jeonju"
|
||||||
|
ShiftCalculator.getShift(targetDate, team, factory)
|
||||||
|
} else {
|
||||||
|
shift
|
||||||
|
}
|
||||||
|
|
||||||
|
if (addedAlarm.shiftType == "기타" || addedAlarm.shiftType == alarmMatchShift) {
|
||||||
scheduleCustomAlarm(
|
scheduleCustomAlarm(
|
||||||
context,
|
context,
|
||||||
targetDate,
|
targetDate,
|
||||||
@@ -120,7 +128,18 @@ object AlarmSyncManager {
|
|||||||
.getString("selected_factory", "Jeonju") ?: "Jeonju"
|
.getString("selected_factory", "Jeonju") ?: "Jeonju"
|
||||||
)
|
)
|
||||||
|
|
||||||
if (alarm.shiftType == "기타" || alarm.shiftType == shift) {
|
// 교육으로 변경된 경우 원래 근무의 알람이 울리도록 원래 근무 타입을 사용
|
||||||
|
val alarmMatchShift = if (shift == "교육") {
|
||||||
|
val team = context.getSharedPreferences("ShiftAlarmPrefs", Context.MODE_PRIVATE)
|
||||||
|
.getString("selected_team", "A") ?: "A"
|
||||||
|
val factory = context.getSharedPreferences("ShiftAlarmPrefs", Context.MODE_PRIVATE)
|
||||||
|
.getString("selected_factory", "Jeonju") ?: "Jeonju"
|
||||||
|
ShiftCalculator.getShift(targetDate, team, factory)
|
||||||
|
} else {
|
||||||
|
shift
|
||||||
|
}
|
||||||
|
|
||||||
|
if (alarm.shiftType == "기타" || alarm.shiftType == alarmMatchShift) {
|
||||||
scheduleCustomAlarm(
|
scheduleCustomAlarm(
|
||||||
context,
|
context,
|
||||||
targetDate,
|
targetDate,
|
||||||
@@ -251,7 +270,14 @@ object AlarmSyncManager {
|
|||||||
val targetDate = today.plusDays(i.toLong())
|
val targetDate = today.plusDays(i.toLong())
|
||||||
val shift = repo.getShift(targetDate, team, factory)
|
val shift = repo.getShift(targetDate, team, factory)
|
||||||
|
|
||||||
if (alarm.shiftType == "기타" || alarm.shiftType == shift) {
|
// 교육으로 변경된 경우 원래 근무의 알람이 울리도록 원래 근무 타입을 사용
|
||||||
|
val alarmMatchShift = if (shift == "교육") {
|
||||||
|
ShiftCalculator.getShift(targetDate, team, factory)
|
||||||
|
} else {
|
||||||
|
shift
|
||||||
|
}
|
||||||
|
|
||||||
|
if (alarm.shiftType == "기타" || alarm.shiftType == alarmMatchShift) {
|
||||||
scheduleCustomAlarm(
|
scheduleCustomAlarm(
|
||||||
context,
|
context,
|
||||||
targetDate,
|
targetDate,
|
||||||
|
|||||||
@@ -352,11 +352,18 @@ suspend fun syncAllAlarms(context: Context) {
|
|||||||
val targetDate = today.plusDays(i.toLong())
|
val targetDate = today.plusDays(i.toLong())
|
||||||
val shift = repo.getShift(targetDate, team, factory)
|
val shift = repo.getShift(targetDate, team, factory)
|
||||||
|
|
||||||
|
// 교육으로 변경된 경우 원래 근무의 알람이 울리도록 원래 근무 타입을 사용
|
||||||
|
val alarmMatchShift = if (shift == "교육") {
|
||||||
|
ShiftCalculator.getShift(targetDate, team, factory)
|
||||||
|
} else {
|
||||||
|
shift
|
||||||
|
}
|
||||||
|
|
||||||
for (alarm in customAlarms) {
|
for (alarm in customAlarms) {
|
||||||
if (!alarm.isEnabled) continue
|
if (!alarm.isEnabled) continue
|
||||||
|
|
||||||
// 근무 연동 조건 확인
|
// 근무 연동 조건 확인
|
||||||
if (alarm.shiftType == "기타" || alarm.shiftType == shift) {
|
if (alarm.shiftType == "기타" || alarm.shiftType == alarmMatchShift) {
|
||||||
scheduleCustomAlarm(
|
scheduleCustomAlarm(
|
||||||
context,
|
context,
|
||||||
targetDate,
|
targetDate,
|
||||||
|
|||||||
@@ -516,15 +516,12 @@ class FragmentSettingsAlarm : Fragment(), SharedPreferences.OnSharedPreferenceCh
|
|||||||
Log.w("ShiftAlarm", "soundUri가 비어있어 기본값으로 재설정: $currentDialogSoundUri")
|
Log.w("ShiftAlarm", "soundUri가 비어있어 기본값으로 재설정: $currentDialogSoundUri")
|
||||||
}
|
}
|
||||||
|
|
||||||
// 새 알람 추가 시 또는 볼륨이 0인 경우 시스템 알람 스트림 볼륨을 최대치로 설정
|
// 알람 다이얼로그 열 때 시스템 알람 스트림 볼륨을 항상 최대치로 강제 설정
|
||||||
try {
|
try {
|
||||||
val audioManager = requireContext().getSystemService(Context.AUDIO_SERVICE) as android.media.AudioManager
|
val audioManager = requireContext().getSystemService(Context.AUDIO_SERVICE) as android.media.AudioManager
|
||||||
val maxVol = audioManager.getStreamMaxVolume(android.media.AudioManager.STREAM_ALARM)
|
val maxVol = audioManager.getStreamMaxVolume(android.media.AudioManager.STREAM_ALARM)
|
||||||
val currVol = audioManager.getStreamVolume(android.media.AudioManager.STREAM_ALARM)
|
audioManager.setStreamVolume(android.media.AudioManager.STREAM_ALARM, maxVol, 0)
|
||||||
if (isNew || currVol == 0) {
|
Log.d("ShiftAlarm", "알람 스트림 볼륨 최대치($maxVol)로 강제 설정 완료")
|
||||||
audioManager.setStreamVolume(android.media.AudioManager.STREAM_ALARM, maxVol, 0)
|
|
||||||
Log.d("ShiftAlarm", "알람 스트림 볼륨 최대치($maxVol)로 초기화 완료")
|
|
||||||
}
|
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Log.w("ShiftAlarm", "알람 볼륨 설정 실패", e)
|
Log.w("ShiftAlarm", "알람 볼륨 설정 실패", e)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -198,8 +198,10 @@ class MainActivity : AppCompatActivity() {
|
|||||||
updateTideButtonVisibility()
|
updateTideButtonVisibility()
|
||||||
updateCalendar()
|
updateCalendar()
|
||||||
|
|
||||||
// 일원화된 통합 권한 체크 실행 (신뢰도 100% 보장)
|
// 통합 권한 체크: 권한 플로우가 진행 중이 아닐 때만 실행 (모달 루프 방지)
|
||||||
AlarmPermissionUtil.checkAndRequestAllPermissions(this)
|
if (!AlarmPermissionUtil.isPermissionFlowActive) {
|
||||||
|
AlarmPermissionUtil.checkAndRequestAllPermissions(this)
|
||||||
|
}
|
||||||
|
|
||||||
// 설정 변경 시 즉시 반영을 위한 강제 동기화 (30일 스케줄링)
|
// 설정 변경 시 즉시 반영을 위한 강제 동기화 (30일 스케줄링)
|
||||||
lifecycleScope.launch {
|
lifecycleScope.launch {
|
||||||
@@ -522,8 +524,18 @@ class MainActivity : AppCompatActivity() {
|
|||||||
val alarmTimes = mutableListOf<String>()
|
val alarmTimes = mutableListOf<String>()
|
||||||
val isOff = shift == "휴무" || shift == "휴가"
|
val isOff = shift == "휴무" || shift == "휴가"
|
||||||
|
|
||||||
|
// 교육으로 변경된 경우 원래 근무의 알람을 표시
|
||||||
|
val prefs = getSharedPreferences(PREFS_NAME, Context.MODE_PRIVATE)
|
||||||
|
val matchShift = if (shift == "교육") {
|
||||||
|
val team = prefs.getString(KEY_TEAM, "A") ?: "A"
|
||||||
|
val factory = prefs.getString("selected_factory", "Jeonju") ?: "Jeonju"
|
||||||
|
ShiftCalculator.getShift(date, team, factory)
|
||||||
|
} else {
|
||||||
|
shift
|
||||||
|
}
|
||||||
|
|
||||||
for (alarm in allAlarms) {
|
for (alarm in allAlarms) {
|
||||||
if (alarm.isEnabled && (alarm.shiftType == "기타" || (!isOff && alarm.shiftType == shift))) {
|
if (alarm.isEnabled && (alarm.shiftType == "기타" || (!isOff && alarm.shiftType == matchShift))) {
|
||||||
if (!alarmTimes.contains(alarm.time)) {
|
if (!alarmTimes.contains(alarm.time)) {
|
||||||
alarmTimes.add(alarm.time)
|
alarmTimes.add(alarm.time)
|
||||||
}
|
}
|
||||||
@@ -731,8 +743,15 @@ class MainActivity : AppCompatActivity() {
|
|||||||
syncAllAlarms(this)
|
syncAllAlarms(this)
|
||||||
android.widget.Toast.makeText(this, "${selected}로 설정되었습니다. 알람이 해제됩니다.", android.widget.Toast.LENGTH_SHORT).show()
|
android.widget.Toast.makeText(this, "${selected}로 설정되었습니다. 알람이 해제됩니다.", android.widget.Toast.LENGTH_SHORT).show()
|
||||||
}
|
}
|
||||||
|
"교육" -> {
|
||||||
|
// 교육은 원래 근무 알람을 유지
|
||||||
|
repo.setOverride(date, selected, team, factory)
|
||||||
|
updateCalendar()
|
||||||
|
syncAllAlarms(this)
|
||||||
|
android.widget.Toast.makeText(this, "교육으로 기록되었습니다. 원래 근무 알람이 유지됩니다.", android.widget.Toast.LENGTH_SHORT).show()
|
||||||
|
}
|
||||||
else -> {
|
else -> {
|
||||||
// New Types: 월차, 연차, 반월, 반년, 교육 -> Saved as Override with no time
|
// New Types: 월차, 연차, 반월, 반년 -> Saved as Override with no time
|
||||||
repo.setOverride(date, selected, team, factory)
|
repo.setOverride(date, selected, team, factory)
|
||||||
// 연차 계산을 먼저 수행하고 달력 업데이트
|
// 연차 계산을 먼저 수행하고 달력 업데이트
|
||||||
repo.updateRemainingAnnualLeave()
|
repo.updateRemainingAnnualLeave()
|
||||||
|
|||||||
+13
-17
@@ -6,15 +6,16 @@ import shutil
|
|||||||
|
|
||||||
token = "e3b515eaa0a6683c921ca3bf718e281ed30a6075"
|
token = "e3b515eaa0a6683c921ca3bf718e281ed30a6075"
|
||||||
owner_repo = "sanjeok77/ShiftRing"
|
owner_repo = "sanjeok77/ShiftRing"
|
||||||
tag = "v1.1.5"
|
tag = "v1.1.8"
|
||||||
title = "v1.1.5 - 근무 변경 모달 팝업 버튼 겹침 현상 완벽 수정 및 업데이트 정보 자동 기입 동기화"
|
title = "v1.1.8 - 교육 근무 변경 시 상단 알람 표시 및 실제 알람 완전 유지"
|
||||||
body = """## 🚀 ShiftRing v1.1.5 릴리즈
|
body = """## 🚀 ShiftRing v1.1.8 릴리즈
|
||||||
|
|
||||||
### 🌟 주요 변경 및 개선 사항
|
### 🐛 버그 수정
|
||||||
1. **🔘 근무 변경 팝업 버튼 겹침 현상 완벽 수정 (`dialog_day_settings.xml`)**:
|
1. **⏰ 교육 근무 변경 시 알람 완전 유지 (`MainActivity.kt`, `AlarmUtils.kt`, `AlarmSyncManager.kt`)**:
|
||||||
- ConstraintLayout Flow 제약조건 충돌을 제거하고 3행 리니어 그리드 구조로 전면 재구축하여 '주간' 앞에 버튼들이 뭉치거나 겹치지 않고 완벽한 균등 정렬로 표시되도록 수정
|
- 달력에서 교육으로 변경해도 상단 오늘/내일 알람 시간이 정상 표시
|
||||||
2. **🔄 업데이트 내역(CHANGELOG.md) 자동 기입 및 실시간 동기화 (`CHANGELOG.md`, `NoticeActivity.kt`)**:
|
- 원래 근무(주간/석간/야간 등) 알람이 그대로 울림
|
||||||
- v1.1.4 및 v1.1.5를 포함한 모든 최신 릴리즈 내역을 체인지로그에 누락 없이 동기화하고 최대 15개 항목까지 쾌적하게 열람 가능하도록 개선"""
|
- 토스트 메시지: "교육으로 기록되었습니다. 원래 근무 알람이 유지됩니다."
|
||||||
|
- 교육을 월차/연차 등과 분리하여 독립 처리"""
|
||||||
|
|
||||||
apk_path = "app/build/outputs/apk/release/app-release.apk"
|
apk_path = "app/build/outputs/apk/release/app-release.apk"
|
||||||
if not os.path.exists(apk_path):
|
if not os.path.exists(apk_path):
|
||||||
@@ -23,7 +24,6 @@ if not os.path.exists(apk_path):
|
|||||||
|
|
||||||
print(f"Using APK at: {apk_path}")
|
print(f"Using APK at: {apk_path}")
|
||||||
|
|
||||||
# Create Gitea Release
|
|
||||||
url = f"https://git.webpluss.net/api/v1/repos/{owner_repo}/releases"
|
url = f"https://git.webpluss.net/api/v1/repos/{owner_repo}/releases"
|
||||||
headers = {"Authorization": f"token {token}", "Content-Type": "application/json"}
|
headers = {"Authorization": f"token {token}", "Content-Type": "application/json"}
|
||||||
|
|
||||||
@@ -34,7 +34,6 @@ with urllib.request.urlopen(req) as response:
|
|||||||
release_id = result["id"]
|
release_id = result["id"]
|
||||||
print(f"Created Gitea Release successfully. Release ID: {release_id}")
|
print(f"Created Gitea Release successfully. Release ID: {release_id}")
|
||||||
|
|
||||||
# Upload APK asset
|
|
||||||
upload_url = f"https://git.webpluss.net/api/v1/repos/{owner_repo}/releases/{release_id}/assets"
|
upload_url = f"https://git.webpluss.net/api/v1/repos/{owner_repo}/releases/{release_id}/assets"
|
||||||
print(f"Uploading APK to {upload_url}...")
|
print(f"Uploading APK to {upload_url}...")
|
||||||
|
|
||||||
@@ -46,16 +45,14 @@ upload_json = json.loads(upload_result.stdout)
|
|||||||
apk_uuid = upload_json.get("uuid")
|
apk_uuid = upload_json.get("uuid")
|
||||||
direct_url = upload_json.get("browser_download_url", f"https://git.webpluss.net/attachments/{apk_uuid}")
|
direct_url = upload_json.get("browser_download_url", f"https://git.webpluss.net/attachments/{apk_uuid}")
|
||||||
|
|
||||||
# Copy APK to project root
|
|
||||||
shutil.copy2(apk_path, "app.apk")
|
shutil.copy2(apk_path, "app.apk")
|
||||||
print("Updated app.apk at project root.")
|
print("Updated app.apk at project root.")
|
||||||
|
|
||||||
# Update version.json
|
|
||||||
v_info = {
|
v_info = {
|
||||||
"versionCode": 115,
|
"versionCode": 118,
|
||||||
"versionName": "1.1.5",
|
"versionName": "1.1.8",
|
||||||
"apkUrl": direct_url,
|
"apkUrl": direct_url,
|
||||||
"changelog": "v1.1.5: 근무 변경 팝업 버튼 겹침 수정, 업데이트 내역 자동 기입 및 실시간 동기화",
|
"changelog": "v1.1.8: 교육 근무 변경 시 상단 알람 표시 및 실제 알람 완전 유지",
|
||||||
"forceUpdate": False
|
"forceUpdate": False
|
||||||
}
|
}
|
||||||
with open("version.json", "w", encoding="utf-8") as f:
|
with open("version.json", "w", encoding="utf-8") as f:
|
||||||
@@ -63,11 +60,10 @@ with open("version.json", "w", encoding="utf-8") as f:
|
|||||||
|
|
||||||
print(f"Updated version.json with apkUrl: {direct_url}")
|
print(f"Updated version.json with apkUrl: {direct_url}")
|
||||||
|
|
||||||
# Git commit and push cleanly in UTF-8
|
|
||||||
git_path = r"C:\Users\work\AppData\Roaming\MobaXterm\slash\mx86_64b\bin"
|
git_path = r"C:\Users\work\AppData\Roaming\MobaXterm\slash\mx86_64b\bin"
|
||||||
os.environ["PATH"] = git_path + os.pathsep + os.environ.get("PATH", "")
|
os.environ["PATH"] = git_path + os.pathsep + os.environ.get("PATH", "")
|
||||||
|
|
||||||
commit_msg = "v1.1.5 - 근무 변경 모달 팝업 버튼 겹침 현상 완벽 수정 및 업데이트 정보 자동 기입 동기화"
|
commit_msg = "v1.1.8 - 교육 근무 변경 시 상단 알람 표시 및 실제 알람 완전 유지"
|
||||||
subprocess.run(["git", "add", "."], check=True)
|
subprocess.run(["git", "add", "."], check=True)
|
||||||
subprocess.run(["git", "commit", "-m", commit_msg], check=True)
|
subprocess.run(["git", "commit", "-m", commit_msg], check=True)
|
||||||
subprocess.run(["git", "push", "origin", "main"], check=True)
|
subprocess.run(["git", "push", "origin", "main"], check=True)
|
||||||
|
|||||||
+4
-4
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"versionCode": 115,
|
"versionCode": 118,
|
||||||
"versionName": "1.1.5",
|
"versionName": "1.1.8",
|
||||||
"apkUrl": "https://git.webpluss.net/attachments/fa1514b1-2e73-4357-a593-c0b06cc4f3c0",
|
"apkUrl": "https://git.webpluss.net/attachments/219203d6-2f0f-4e23-984d-438f96c7d193",
|
||||||
"changelog": "v1.1.5: 근무 변경 팝업 버튼 겹침 수정, 업데이트 내역 자동 기입 및 실시간 동기화",
|
"changelog": "v1.1.8: 교육 근무 변경 시 상단 알람 표시 및 실제 알람 완전 유지",
|
||||||
"forceUpdate": false
|
"forceUpdate": false
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user