Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deploy: v.1.3.0 배포(new) #627 #629

Merged
merged 4 commits into from
Feb 13, 2025

Conversation

Junyoung-WON
Copy link
Contributor

⭐️ Issue Number

🚩 Summary

배포 실패한 v.1.3.0을 다시 시도합니다 😟

배포 전 사소한 리팩터링과 출시노트의 내용을 수정했습니다.

  • WebViewActivity를 시작하는 로직을 수정했습니다.
    • WebViewActivity를 시작하는 launch 메서드 생성
      // WebViewActivity
      companion object {
          fun launch(
              context: Context,
              url: String,
              toolbarTitle: String,
          ) {
              val intent = Intent(context, WebViewActivity::class.java)
                  .putExtra(EXTRA_URL, url)
                  .putExtra(EXTRA_TOOLBAR_TITLE, toolbarTitle)
              context.startActivity(intent)
          }
      }
      
      // MyPageActivity
      override fun onPrivacyPolicyClicked() {
          WebViewActivity.launch(this, PRIVACY_POLICY_URL, getString(R.string.mypage_privacy_policy))
      }
  • 출시노트 내용을 아래와 같이 수정했습니다.
    <ko-KR>
    [1.3.0] 버전 업데이트 내용 (2025.02.06)
    이제 "추억"의 이름이 "카테고리"로 변경되었어요!
    걱정마세요! 이전에 기록했던 추억과 스타카토는 그대로 남아있어요.
    
    [UI 개선]
    스타카토를 생성하고 수정하는 화면을 개선했어요.
     - 방문 일시와 카테고리를 선택하는 버튼의 순서를 바꾸었어요.
    
    [버그 수정]
    스타카토에 사진을 첨부하는 버튼의 버그를 수정했어요.
     - 스타카토 사진 첨부 버튼을 꾹 누르면 앱이 종료되는 버그를 수정했어요.
    </ko-KR>
    

🙂 To Reviewer

  • 같이 기도해주세요

📋 To Do

  • CD 확인하기

- 기능 변경에 대한 내용을 사용자 입장에서 더 이해하기 쉽게 수정
- WebViewActivity를 실행할 context와 url, 페이지 제목을 전달한다.
@Junyoung-WON Junyoung-WON added android We are android>< refactor 리팩토링 (변수 및 메서드 네이밍 변경) 📜 docs 문서 (문서 추가, 수정, 삭제) deploy 배포 labels Feb 12, 2025
@Junyoung-WON Junyoung-WON added this to the sprint-9 milestone Feb 12, 2025
@Junyoung-WON Junyoung-WON self-assigned this Feb 12, 2025
@Junyoung-WON Junyoung-WON requested review from hxeyexn and s6m1n and removed request for hxeyexn February 13, 2025 05:48
Copy link
Member

@s6m1n s6m1n left a comment

Choose a reason for hiding this comment

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

같이 기도해주세요

하드디스크에 계시는 우리 프로그램이시여,
디버그를 거룩하게 하옵시고,
컴파일에 임하옵시며,
명령이 키보드에서 이루어진것과 같이,
모니터에서도 이루어지게 하옵소서.
일용할 데이터를 주시옵고,
우리가 프로그램의 오류를 용서한 것과 같이,
우리의 오타를 사하여 주옵시고,
우리를 버그에 들게 하지 마옵시며,
다만 불시의 에러에서 구하옵서서.
대개 속도와, 파워와, 안정성이,
프로그램에게 영원히 있사옵나이다.

엔터

Copy link
Contributor

@hxeyexn hxeyexn left a comment

Choose a reason for hiding this comment

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

배포 준비하느라 고생하셨습니다~~
이번엔 제발 🙏🙏🙏🙏🙏


[UI 개선]
스타카토를 생성하고 수정하는 화면을 개선했어요.
- 방문 일시와 카테고리를 선택하는 창을 분리했어요.
- 방문 일시와 카테고리를 선택하는 버튼의 순서를 바꾸었어요.
Copy link
Contributor

Choose a reason for hiding this comment

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

이제 더 이상 사용자가 혼란스럽지 않겠네요 👍

Comment on lines +58 to +69

fun launch(
context: Context,
url: String,
toolbarTitle: String,
) {
val intent =
Intent(context, WebViewActivity::class.java)
.putExtra(EXTRA_URL, url)
.putExtra(EXTRA_TOOLBAR_TITLE, toolbarTitle)
context.startActivity(intent)
}
Copy link
Contributor

Choose a reason for hiding this comment

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

WebViewActivity가 activity를 launch하는 책임을 가지게 되었네요! 굳굳 👍

@Junyoung-WON Junyoung-WON changed the title deploy: v.1.3.0 배포(new) deploy: v.1.3.0 배포(new) #627 Feb 13, 2025
@Junyoung-WON Junyoung-WON merged commit e582d2d into develop Feb 13, 2025
1 check passed
@hxeyexn hxeyexn linked an issue Feb 15, 2025 that may be closed by this pull request
4 tasks
@Junyoung-WON Junyoung-WON deleted the feature/#613-deploy-v.1.3.0-new branch February 27, 2025 06:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
android We are android>< deploy 배포 📜 docs 문서 (문서 추가, 수정, 삭제) refactor 리팩토링 (변수 및 메서드 네이밍 변경)
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

deploy: v.1.3.0 배포(new)
3 participants