Skip to content

Commit ef8a53f

Browse files
authored
Merge pull request #253 from teamterning/fix/#252-homeFix
[Fix] #252 - ํ™ˆ ํ™”๋ฉด ๊ฐœ์ˆ˜๊ฐ€ 1000๊ฐœ๊ฐ€ ๋„˜์–ด๊ฐˆ ์‹œ ๋ฌธ๊ตฌ ๋ณ€๊ฒฝ | v1.1.1 ๋ฒ„์ „ ์—…๋ฐ์ดํŠธ
2 parents 3ae9155 + 0f6d2ae commit ef8a53f

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

โ€ŽTerning-iOS/Terning-iOS.xcodeproj/project.pbxprojโ€Ž

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1914,7 +1914,7 @@
19141914
CODE_SIGN_ENTITLEMENTS = "Terning-iOS/Terning-iOS.entitlements";
19151915
CODE_SIGN_IDENTITY = "Apple Development";
19161916
CODE_SIGN_STYLE = Automatic;
1917-
CURRENT_PROJECT_VERSION = 2025.0119.1759;
1917+
CURRENT_PROJECT_VERSION = 2025.0203.2314;
19181918
DEVELOPMENT_TEAM = 8Q4H7X3Q58;
19191919
ENABLE_USER_SCRIPT_SANDBOXING = NO;
19201920
GENERATE_INFOPLIST_FILE = YES;
@@ -1931,7 +1931,7 @@
19311931
"$(inherited)",
19321932
"@executable_path/Frameworks",
19331933
);
1934-
MARKETING_VERSION = 1.1.0;
1934+
MARKETING_VERSION = 1.1.1;
19351935
OTHER_LDFLAGS = (
19361936
"-Xlinker",
19371937
"-interposable",
@@ -1958,7 +1958,7 @@
19581958
CODE_SIGN_ENTITLEMENTS = "Terning-iOS/Terning-iOS.entitlements";
19591959
CODE_SIGN_IDENTITY = "Apple Development";
19601960
CODE_SIGN_STYLE = Automatic;
1961-
CURRENT_PROJECT_VERSION = 2025.0119.1759;
1961+
CURRENT_PROJECT_VERSION = 2025.0203.2314;
19621962
DEVELOPMENT_TEAM = 8Q4H7X3Q58;
19631963
ENABLE_USER_SCRIPT_SANDBOXING = NO;
19641964
GENERATE_INFOPLIST_FILE = YES;
@@ -1975,7 +1975,7 @@
19751975
"$(inherited)",
19761976
"@executable_path/Frameworks",
19771977
);
1978-
MARKETING_VERSION = 1.1.0;
1978+
MARKETING_VERSION = 1.1.1;
19791979
PRODUCT_BUNDLE_IDENTIFIER = "com.terning.Terning-iOS";
19801980
PRODUCT_NAME = "$(TARGET_NAME)";
19811981
PROVISIONING_PROFILE_SPECIFIER = "";

โ€ŽTerning-iOS/Terning-iOS/Info.plistโ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
<key>CFBundleDisplayName</key>
88
<string>terning</string>
99
<key>CFBundleShortVersionString</key>
10-
<string>1.1.0</string>
10+
<string>1.1.1</string>
1111
<key>CFBundleVersion</key>
12-
<string>2025.0119.1759</string>
12+
<string>2025.0203.2314</string>
1313
<key>CFBundleName</key>
1414
<string>$(PRODUCT_NAME)</string>
1515
<key>CFBundleURLTypes</key>

โ€ŽTerning-iOS/Terning-iOS/Source/Presentation/Home/Cell/StickyHeaderCell.swiftโ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ final class StickyHeaderCell: UICollectionViewCell {
2020
// MARK: - Properties
2121

2222
private var count: Int = 0
23-
23+
2424
weak var delegate: StickyHeaderCellDelegate?
2525

2626
// MARK: - UIComponents
@@ -151,6 +151,6 @@ extension StickyHeaderCell {
151151
titleLabel.text = "\(name)๋‹˜์—๊ฒŒ ๋”ฑ ๋งž๋Š” ๋Œ€ํ•™์ƒ ์ธํ„ด ๊ณต๊ณ "
152152
}
153153

154-
totalCountLabel.text = "\(totalCount)"
154+
totalCountLabel.text = totalCount >= 999 ? "999+" : "\(totalCount)"
155155
}
156156
}

0 commit comments

Comments
ย (0)