Skip to content

Commit

Permalink
Release Version 1.7.1 (#372)
Browse files Browse the repository at this point in the history
  • Loading branch information
wngus4296 authored Oct 21, 2024
2 parents bd62ca6 + d8c1b61 commit 498a039
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
8 changes: 4 additions & 4 deletions Boolti/Boolti.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -3022,7 +3022,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 = 1;
DEVELOPMENT_TEAM = "";
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = 83B9Y749K7;
GENERATE_INFOPLIST_FILE = YES;
Expand All @@ -3039,7 +3039,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.7.0;
MARKETING_VERSION = 1.7.1;
OTHER_LDFLAGS = "-ObjC";
PRODUCT_BUNDLE_IDENTIFIER = com.nexters.boolti;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -3064,7 +3064,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 = 1;
DEVELOPMENT_TEAM = "";
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = 83B9Y749K7;
GENERATE_INFOPLIST_FILE = YES;
Expand All @@ -3081,7 +3081,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.7.0;
MARKETING_VERSION = 1.7.1;
OTHER_LDFLAGS = "-ObjC";
PRODUCT_BUNDLE_IDENTIFIER = com.nexters.boolti;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ import Foundation
struct GiftCardImageEntity {
let id: Int
let path: String
let thumbnailPath: String
let previewPath: String
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ struct GiftCardImagesResponseDTOElement: Decodable {
let thumbnailPath: String
let invite_path: String?
let invite_thumbnail: String?
let preview_path: String?
let sequence: Int
let createdAt: String
let modifiedAt: String?
Expand All @@ -27,7 +28,7 @@ extension GiftCardImagesResponseDTO {
return self.map { image in
return GiftCardImageEntity(id: image.id,
path: image.path,
thumbnailPath: image.thumbnailPath)
previewPath: image.preview_path ?? image.path)
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ extension GiftingDetailViewController {
.items(cellIdentifier: CardImageCollectionViewCell.className,
cellType: CardImageCollectionViewCell.self)
) { index, entity, cell in
cell.setData(with: entity.thumbnailPath)
cell.setData(with: entity.previewPath)
}
.disposed(by: self.disposeBag)

Expand Down Expand Up @@ -233,7 +233,7 @@ extension GiftingDetailViewController {
guard let concertInfo = entity else { return }
let ticketInfo = owner.viewModel.selectedTicket

owner.concertTicketInfoView.setData(posterURL: concertInfo.posters.first!.thumbnailPath,
owner.concertTicketInfoView.setData(posterURL: concertInfo.posters.first!.path,
title: concertInfo.name,
datetime: concertInfo.date,
ticketInfo: ticketInfo)
Expand Down

0 comments on commit 498a039

Please sign in to comment.