Skip to content

Commit

Permalink
release 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
yang1318 committed Dec 8, 2023
1 parent 846df84 commit b2d5f05
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
7 changes: 4 additions & 3 deletions AOS/app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import java.util.Properties
import java.io.FileInputStream
import java.util.Properties

plugins {
id("com.android.application")
id("org.jetbrains.kotlin.android")
Expand Down Expand Up @@ -28,8 +29,8 @@ android {
applicationId = "boostcamp.and07.mindsync"
minSdk = 26
targetSdk = 34
versionCode = 2
versionName = "0.3.1"
versionCode = 3
versionName = "0.3.2"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
buildConfigField("String", "BASE_URL", "$url")
buildConfigField("String", "GOOGLE_SERVER_CLIENT_ID", "$googleServerClientId")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class UsersAdapter : ListAdapter<UserData, UsersAdapter.UsersViewHolder>(DIFF_CA
oldItem: UserData,
newItem: UserData,
): Boolean {
return oldItem.userId == newItem.userId
return oldItem == newItem
}
}
}
Expand Down
1 change: 1 addition & 0 deletions AOS/release_note.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ version: 0.3.1
- μ‚¬μš©μžκ°€ λ§Žμ„ 경우 화면을 λ²—μ–΄λ‚˜λŠ” 버그 ν•΄κ²°
- λ³΄λ“œ μΆ”κ°€ 이미지 선택 μ•ˆν•  경우 λŒ€μ‘
- 슀페이슀 μΆ”κ°€ 사진 선택 μ•ˆν•  경우 λŒ€μ‘
- 본인의 ν”„λ‘œν•„ 사진이 μ—…λ°μ΄νŠΈκ°€ μ•ˆλ˜λŠ” 버그 λŒ€μ‘
πŸ’‘ Information
- λ™μ‹œμ— 같은 곡간(슀페이슀/λ³΄λ“œ)에 μ ‘μ†ν•΄μžˆλŠ” μ‚¬μš©μžλΌλ¦¬ μ„œλ‘œμ˜ νŽΈμ§‘ λ‚΄μš©μ„ μ‹€μ‹œκ°„μœΌλ‘œ 확인할 수 μžˆμŠ΅λ‹ˆλ‹€.
- λ‹€λ₯Έμ‚¬λžŒμ„ μžμ‹ μ˜ μŠ€νŽ˜μ΄μŠ€μ— μ΄ˆλŒ€ν•  수 μžˆμŠ΅λ‹ˆλ‹€.
Expand Down

0 comments on commit b2d5f05

Please sign in to comment.