Skip to content

Commit

Permalink
Release Version 1.3.1 (#165)
Browse files Browse the repository at this point in the history
  • Loading branch information
wngus4296 authored Mar 4, 2024
2 parents 72f5231 + 2227e9f commit 9e53f26
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 15 deletions.
8 changes: 4 additions & 4 deletions Boolti/Boolti.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -2252,7 +2252,7 @@
CODE_SIGN_ENTITLEMENTS = Boolti/Boolti.entitlements;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 4;
CURRENT_PROJECT_VERSION = 2;
DEVELOPMENT_TEAM = "";
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = 83B9Y749K7;
GENERATE_INFOPLIST_FILE = YES;
Expand All @@ -2269,7 +2269,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.3.0;
MARKETING_VERSION = 1.3.1;
PRODUCT_BUNDLE_IDENTIFIER = com.nexters.boolti;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand All @@ -2293,7 +2293,7 @@
CODE_SIGN_ENTITLEMENTS = Boolti/Boolti.entitlements;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 4;
CURRENT_PROJECT_VERSION = 2;
DEVELOPMENT_TEAM = "";
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = 83B9Y749K7;
GENERATE_INFOPLIST_FILE = YES;
Expand All @@ -2310,7 +2310,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.3.0;
MARKETING_VERSION = 1.3.1;
PRODUCT_BUNDLE_IDENTIFIER = com.nexters.boolti;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ extension ConcertListViewController {
private func bindOutputs() {
self.viewModel.output.checkingTicketCount
.skip(1)
.distinctUntilChanged()
.asDriver(onErrorJustReturn: 0)
.drive(with: self) { owner, concerts in
owner.mainCollectionView.reloadSections([0, 1], animationStyle: .automatic)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ extension LoginViewController {
self.kakaoLoginButton.rx.tap
.asDriver()
.map { OAuthProvider.kakao }
.throttle(.seconds(2), latest: false)
.drive(with: self) { owner, provider in
owner.viewModel.input.loginButtonDidTapEvent.onNext(provider)
}
Expand All @@ -133,6 +134,7 @@ extension LoginViewController {
self.appleLoginButton.rx.tap
.asDriver()
.map { OAuthProvider.apple }
.throttle(.seconds(2), latest: false)
.drive(with: self) { owner, provider in
owner.viewModel.input.loginButtonDidTapEvent.onNext(provider)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,11 @@ extension TermsAgreementViewController {

private func bindInputs() {
self.agreementButton.rx.tap
.bind(to: self.viewModel.input.didAgreementButtonTapEvent)
.asDriver()
.throttle(.seconds(2), latest: false)
.drive(with: self, onNext: { owner, _ in
owner.viewModel.input.didAgreementButtonTapEvent.onNext(())
})
.disposed(by: self.disposeBag)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ final class TicketDetailView: UIView {

self.posterImageView.snp.makeConstraints { make in
make.top.equalTo(self.upperTagView.snp.bottom).offset(20)
make.height.equalTo(screenHeight * 0.44)
make.height.equalTo(screenHeight * 0.47)
make.horizontalEdges.equalToSuperview().inset(20)
}

Expand All @@ -226,7 +226,7 @@ final class TicketDetailView: UIView {
self.backgroundImageView.snp.makeConstraints { make in
make.top.equalToSuperview()
make.horizontalEdges.equalToSuperview()
make.height.equalTo(screenHeight * 0.44 + 169)
make.height.equalTo(screenHeight * 0.47 + 169)
}

self.rightCircleView.snp.makeConstraints { make in
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -216,13 +216,13 @@ final class TicketListCollectionViewCell: UICollectionViewCell {

self.ticketInformationView.snp.makeConstraints { make in
make.horizontalEdges.equalToSuperview().inset(self.bounds.width * 0.06)
make.bottom.equalToSuperview().inset(self.bounds.height * 0.05)
make.bottom.equalToSuperview().inset(self.bounds.height * 0.04)
}

self.posterImageView.snp.makeConstraints { make in
make.horizontalEdges.equalToSuperview().inset(self.bounds.width * 0.06)
make.top.equalTo(self.upperTagView.snp.bottom).offset(self.bounds.height * 0.04)
make.height.equalToSuperview().multipliedBy(0.65)
make.height.equalToSuperview().multipliedBy(0.67)
}

self.upperTagLabelStackView.snp.makeConstraints { make in
Expand All @@ -237,20 +237,20 @@ final class TicketListCollectionViewCell: UICollectionViewCell {

self.rightCircleView.snp.makeConstraints { make in
make.width.height.equalTo(self.bounds.height * 0.035)
make.centerY.equalTo(self.snp.top).offset(self.bounds.height * 0.79)
make.centerY.equalTo(self.snp.top).offset(self.bounds.height * 0.805)
make.centerX.equalTo(self.snp.right)
}

self.leftCircleView.snp.makeConstraints { make in
make.width.height.equalTo(self.bounds.height * 0.035)
make.centerY.equalTo(self.snp.top).offset(self.bounds.height * 0.79)
make.centerY.equalTo(self.snp.top).offset(self.bounds.height * 0.805)
make.centerX.equalTo(self.snp.left)
}
}

private func configureSeperateLine() {
let path = CGMutablePath()
let height = self.bounds.height * 0.79
let height = self.bounds.height * 0.805
let width = self.bounds.width * 0.053

path.move(to: CGPoint(x: width, y: height))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ final class TicketListViewController: BooltiViewController {
trailing: 6
)

let groupSize = NSCollectionLayoutSize(widthDimension: .fractionalWidth(0.9), heightDimension: .fractionalWidth(1.61))
let groupSize = NSCollectionLayoutSize(widthDimension: .fractionalWidth(0.9), heightDimension: .fractionalWidth(1.66))

let group = NSCollectionLayoutGroup.horizontal(
layoutSize: groupSize,
Expand All @@ -159,7 +159,7 @@ final class TicketListViewController: BooltiViewController {
let section = NSCollectionLayoutSection(group: group)
section.boundarySupplementaryItems = [footer]
section.orthogonalScrollingBehavior = .groupPagingCentered
section.contentInsets = NSDirectionalEdgeInsets(top: 0, leading: 0, bottom: 10, trailing: 0)
section.contentInsets = NSDirectionalEdgeInsets(top: 0, leading: 0, bottom: 7, trailing: 0)

self.configureCollectionViewCarousel(of: section)

Expand Down

0 comments on commit 9e53f26

Please sign in to comment.