Skip to content

Commit

Permalink
Merge pull request #47 from Team-Shaka/temp-Develop
Browse files Browse the repository at this point in the history
2.0.1 Release
  • Loading branch information
Jeonhui committed Jan 4, 2024
2 parents 99190c8 + 2ced724 commit 1473bba
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 28 deletions.
8 changes: 4 additions & 4 deletions Briefing.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1086,7 +1086,7 @@
CODE_SIGN_ENTITLEMENTS = Briefing/Briefing.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
CURRENT_PROJECT_VERSION = 2;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEVELOPMENT_TEAM = XB6KV776A2;
GENERATE_INFOPLIST_FILE = YES;
Expand All @@ -1103,7 +1103,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 2.0.0;
MARKETING_VERSION = 2.0.1;
PRODUCT_BUNDLE_IDENTIFIER = com.bmlee.briefing;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand All @@ -1123,7 +1123,7 @@
CODE_SIGN_ENTITLEMENTS = Briefing/Briefing.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
CURRENT_PROJECT_VERSION = 2;
DEVELOPMENT_TEAM = XB6KV776A2;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = Briefing/Resources/Info.plist;
Expand All @@ -1139,7 +1139,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 2.0.0;
MARKETING_VERSION = 2.0.1;
PRODUCT_BUNDLE_IDENTIFIER = com.bmlee.briefing;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,7 @@ extension BriefingNetworkManager {
url: url,
method: .get,
path: .keywords,
query: [.date: date.dateToString(),
.type: type.rawValue,
.timeOfDay: morning.rawValue]) else {
query: [.type: type.rawValue]) else {
return Single.error(BFNetworkError.wrongURLRequestError)
}
return response(urlRequest,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -376,23 +376,6 @@ class BriefingCardViewController: UIViewController {
make.top.equalTo(topicLabel.snp.bottom).offset(8)
}

// dateInformationLabel.snp.makeConstraints{ make in
//
// }
//
// categoryInformationLabel.snp.makeConstraints{ make in
//
// }
//
// generateInformationLabel.snp.makeConstraints{ make in
//
// }
//
// informationStackView.snp.makeConstraints{ make in
// make.leading.equalTo(topicLabel)
// make.top.equalTo(topicLabel.snp.bottom).offset(8)
// }

lineSeparatorView1.snp.makeConstraints{ make in
make.top.equalTo(informationLabel.snp.bottom).offset(20)
make.leading.equalToSuperview().offset(-10)
Expand Down Expand Up @@ -448,13 +431,13 @@ class BriefingCardViewController: UIViewController {
}

@objc func openSecondArticleURL() {
if let secondArticleURL = self.briefingData?.articles[0].url {
if let secondArticleURL = self.briefingData?.articles[1].url {
openURLInSafari(secondArticleURL)
}
}

@objc func openThirdArticleURL() {
if let thirdArticleURL = self.briefingData?.articles[0].url {
if let thirdArticleURL = self.briefingData?.articles[2].url {
openURLInSafari(thirdArticleURL)
}
}
Expand Down
4 changes: 2 additions & 2 deletions Briefing/Scenes/HomeScenes/HomeViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ final class HomeViewController: UIViewController {

let categories: [BriefingCategory] = [
.social,
.science,
.global,
.economy
.economy,
.science
]
let disposeBag: DisposeBag = DisposeBag()

Expand Down

0 comments on commit 1473bba

Please sign in to comment.