Files
ShiftRing/scratch/release.py
T

96 lines
5.3 KiB
Python
Executable File

import urllib.request
import json
import os
import subprocess
import shutil
token = "e3b515eaa0a6683c921ca3bf718e281ed30a6075"
owner_repo = "sanjeok77/ShiftRing"
tag = "v2.3.0"
title = "v2.3.0 - One UI 8.5 전면 통일 & 법정 대체공휴일 수식 & 복합 연장근무 & 알람 그룹 순서 자동 정렬 대규모 완성 릴리즈"
body = """## 🚀 Shiftring v2.3.0 대규모 마이너 릴리즈
### 🌟 전면 통합 및 주요 개선 완료 사항
1. **설정 화면 4개 탭 One UI 8.5 전면 통일**:
- 기본설정, 알람설정, 부가기능, 근무관리 전체 탭에 24dp 라운드 카드(`bg_oneui_settings_card`) 및 36dp 스퀘어클 Soft-tint 아이콘(`bg_oneui_icon_container`) 시스템 완벽 적용
- 모든 드롭다운(Spinner)을 One UI 20dp 라운드 팝업(`bg_spinner_popup_oneui`), 12dp 알약 선택자 및 6dp 수직 오프셋으로 전면 통일
2. **대한민국 법정 대체공휴일 수식 100% 정밀화**:
- 대통령령 관공서 공휴일 개정안을 반영하여 현충일(6/6), 신정(1/1) 제외 및 설날/추석 일요일 겹침, 단일 공휴일 토/일 겹침 수식 완벽 적용
3. **이달의 누적 연장근무 복합 가산 수식**:
- 토요일 기본 특근(1일당 2h) + 달력 지정 '주맞'(+4h), '야맞'(+4h), '교육'(+2h) 자동 누적 정산
4. **알람 그룹 순서 자동 정렬 & 6개 근무 지원**:
- 알람 목록 그룹 순서를 `주간(주) -> 석간(석) -> 야간(야) -> 주간 맞교대(주맞) -> 야간 맞교대(야맞) -> 기타`로 고정 정렬
- 그룹 마스터 스위치 및 아코디언 접기/펼치기 유지
- 알람 추가/수정 시 6개 근무타입(주/석/야/주맞/야맞/기타) 비율 맞춤 선택 지원
5. **메인 달력 유체 모션 & 요약 칩 바**:
- 삼성 캘린더 `PathInterpolator(0.22, 1, 0.36, 1)` 기반 부드러운 수평 슬라이드 + 미세 페이드 + 미세 스케일 모션
- 상단 `주간 N일 | 석간 N일 | 야간 N일 | 연장 N시간` 실시간 요약 칩 바
- 하루 메모 3줄 직관 표시 및 달력 5줄 고정 / 6줄 스크롤 최적화
- 날짜 이동 모달 팝업 내부 취소/이동 버튼 및 근무 글자 20sp 대형화
6. **배터리 최적화 4-Tier 다중 폴백**:
- Samsung Device Care (`com.samsung.android.lool`) 연동으로 100% 이동 보장
7. **One UI 8.5 앱 업데이트 다이얼로그**:
- 32dp 라운드 카드, #007AFF 선명 블루 버튼, `bg_oneui_progressbar.xml` 실시간 퍼센트 채움 애니메이션
8. **Android 14/15 호환 및 정식 서명키(release.jks) 유지**:
- `need to declare` 오류 완전 방지 및 덮어쓰기 업데이트 100% 지원"""
apk_path = "app/build/outputs/apk/release/app-release.apk"
if not os.path.exists(apk_path):
print(f"APK not found at {apk_path}")
exit(1)
print(f"Using APK at: {apk_path}")
# Check if release already exists
url = f"https://git.webpluss.net/api/v1/repos/{owner_repo}/releases"
headers = {"Authorization": f"token {token}", "Content-Type": "application/json"}
try:
req = urllib.request.Request(f"{url}/tags/{tag}", headers=headers)
with urllib.request.urlopen(req) as resp:
existing = json.loads(resp.read())
release_id = existing["id"]
print(f"Existing release found with ID: {release_id}. Updating...")
# Update existing release
edit_url = f"{url}/{release_id}"
edit_data = json.dumps({"name": title, "body": body}).encode()
edit_req = urllib.request.Request(edit_url, data=edit_data, headers=headers, method="PATCH")
with urllib.request.urlopen(edit_req) as edit_resp:
print("Release details updated successfully.")
except Exception as e:
# Create new release
print("Creating new release...")
data = json.dumps({"tag_name": tag, "name": title, "body": body, "draft": False, "prerelease": False}).encode()
req = urllib.request.Request(url, data=data, headers=headers, method="POST")
with urllib.request.urlopen(req) as response:
result = json.loads(response.read())
release_id = result["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"
print(f"Uploading APK to {upload_url}...")
# Check existing assets and delete if present
try:
assets_req = urllib.request.Request(upload_url, headers=headers)
with urllib.request.urlopen(assets_req) as resp:
assets = json.loads(resp.read())
for asset in assets:
if asset["name"] == "app.apk":
del_url = f"https://git.webpluss.net/api/v1/repos/{owner_repo}/releases/{release_id}/assets/{asset['id']}"
del_req = urllib.request.Request(del_url, headers=headers, method="DELETE")
urllib.request.urlopen(del_req)
print(f"Deleted old asset {asset['id']}.")
except Exception as e:
print(f"Error checking assets: {e}")
curl_cmd = f'curl -s -X POST "{upload_url}?name=app.apk" -H "Authorization: token {token}" -F "attachment=@{apk_path}"'
upload_result = subprocess.run(curl_cmd, shell=True, capture_output=True, text=True)
print(f"Upload output: {upload_result.stdout}")
# Copy APK to project root
shutil.copy2(apk_path, "app.apk")
print("Updated app.apk at project root.")
print(f"Release {tag} process finished!")