Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ android {
applicationId = "com.eatssu.android"
minSdk = 28
targetSdk = 35
versionCode = 61
versionName = "3.2.8"
versionCode = 62
versionName = "3.2.9"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

PR 설명에 따르면 새로운 기능('[Feat] 나만아니면돼 가리기')이 이번 릴리즈에 포함되었습니다. 시맨틱 버저닝(SemVer) 원칙에 따르면, 단순 버그 수정이 아닌 새로운 기능이 추가된 경우 패치 버전(3.2.9)이 아닌 마이너 버전(예: 3.3.0)을 올리는 것이 적절합니다. 버전을 변경할 경우 관련 파일명(release-notes/v3.2.9.yml)도 함께 업데이트해야 함을 유의해 주세요.

        versionName = "3.3.0"


testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
6 changes: 6 additions & 0 deletions release-notes/v3.2.9.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
ko: |
- 원하지 않는 나만아니면돼 메뉴를 목록에서 숨길 수 있게 되었어요.
- 앱의 안정성과 사용성을 높이기 위해 내부 구조를 개선했어요.
en: |
- You can now hide menus you do not want to see in the Not Me menu list.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

영어 번역에서 'menus'라는 복수형을 사용했으나, 한국어 원문('나만아니면돼 메뉴를')과 PR 내용을 고려할 때 '나만아니면돼'라는 특정 메뉴 항목을 지칭하는 것으로 보입니다. 사용자에게 더 명확한 정보를 제공하기 위해 단수형을 사용하고 항목을 명확히 표시하는 것을 권장합니다.

  - You can now hide the 'Not Me' menu from the list if you do not want to see it.

- We improved internal app structure to provide better stability and usability.
Loading