Skip to content

fix - QA 반영#59

Merged
mark77234 merged 3 commits intodevfrom
fix/58
Mar 29, 2026
Merged

fix - QA 반영#59
mark77234 merged 3 commits intodevfrom
fix/58

Conversation

@mark77234
Copy link
Copy Markdown
Collaborator

작업내용

  • 유튜브 자동 재생 이슈 개선
  • 마이 탭 상단 토글 UI 개선

Copilot AI review requested due to automatic review settings March 29, 2026 08:13
@mark77234 mark77234 linked an issue Mar 29, 2026 that may be closed by this pull request
2 tasks
@mark77234 mark77234 merged commit 9161dd6 into dev Mar 29, 2026
2 checks passed
@mark77234 mark77234 deleted the fix/58 branch March 29, 2026 08:13
mark77234 added a commit that referenced this pull request Mar 29, 2026
* 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): 버전 업데이트
Copy link
Copy Markdown

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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))
Copy link

Copilot AI Mar 29, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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.

Suggested change
.font(AppFont.paperlogy4Regular(size: 11))

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

fix - QA 반영

2 participants