Conversation
* feat(1.0.21): 버전 업데이트 * Merge pull request #52 from ApptiveDev/hotifx/51 hotfix(ProfileSettingSection): iPad대응 * feat - 데모로그인 추가 (#54) * feat(Login): 테스터 로그인 체험하기 버튼 추가 * feat(1.0.22): 버전 업데이트 * Feat - 유튜브 리다이렉팅 이벤트 추가 (#56) * feat(YoutubePlayer): 웹 리다이렉팅 추가 * feat(1.0.23): 버전 업데이트 * fix - QA 반영 (#59) * fix(YoutubePlayer): 유튜브 자동재생 기능 오류 수정 * fix(MyTabView): topToggleTabs 내부 텍스트 및 여백 UI 수정 * feat(1.0.24): 버전 업데이트
There was a problem hiding this comment.
Pull request overview
QA 반영을 위해 유튜브 자동 재생 안정화와 마이 탭 상단 토글(세그먼트) UI를 조정한 PR입니다.
Changes:
- YouTube 플레이어 자동재생 실패 시 mute fallback 및 재시도/음소거 복구 로직 보강
- 마이 탭 상단 세그먼트 탭 폰트 스타일(두께/크기) 조정 및 여백 변경
- 앱 버전/빌드 넘버 증가 (1.0.23 → 1.0.24)
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| KillingPart/Views/Screens/Main/My/MyTabView.swift | 마이 탭 상단 segmented Picker 폰트 및 레이아웃 조정 |
| KillingPart/Views/Screens/Main/Add/AddSearchDetail/components/YoutubePlayerView.swift | 유튜브 자동재생 재시도 + muted fallback 및 재생 상태 전환 처리 강화 |
| KillingPart.xcodeproj/project.pbxproj | MARKETING_VERSION / CURRENT_PROJECT_VERSION 증가 |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| ForEach(MyTopTab.allCases, id: \.self) { tab in | ||
| Text(tab.title) | ||
| .font(AppFont.paperlogy6SemiBold(size: 16)) | ||
| .font(AppFont.paperlogy4Regular(size: 11)) |
There was a problem hiding this comment.
The segmented control font is configured globally via UISegmentedControl.appearance() (currently size 13 / Paperlogy-4Regular), but the Text(tab.title) inside the segmented Picker is set to size 11. In practice the .font on the Text may be ignored by UISegmentedControl, so this can be confusing and/or lead to inconsistent sizing. Consider using a single source of truth: either remove the per-Text .font and rely on the appearance font, or align both to the same font/size.
| .font(AppFont.paperlogy4Regular(size: 11)) |
작업내용