Skip to content

Commit

Permalink
Merge branch 'hotfix/v1.2.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
87kangsw committed Feb 19, 2020
2 parents f3cf593 + fec4fe6 commit e215e14
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions GitTime.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1469,7 +1469,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 2;
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEVELOPMENT_TEAM = R46Q3HW9V3;
INFOPLIST_FILE = "GitTime/Supporting Files/Info.plist";
Expand All @@ -1478,7 +1478,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.2.1;
MARKETING_VERSION = 1.2.2;
PRODUCT_BUNDLE_IDENTIFIER = io.github.87kangsw.GitTime;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
Expand All @@ -1492,15 +1492,15 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 2;
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_TEAM = R46Q3HW9V3;
INFOPLIST_FILE = "GitTime/Supporting Files/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.2.1;
MARKETING_VERSION = 1.2.2;
PRODUCT_BUNDLE_IDENTIFIER = io.github.87kangsw.GitTime;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
Expand Down
3 changes: 2 additions & 1 deletion GitTime/Sources/ViewControllers/Trend/TrendViewReactor.swift
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,9 @@ final class TrendViewReactor: Reactor {
let name = item.xpath(".//div[@class='d-sm-flex flex-auto']/div[@class='col-sm-8 d-md-flex']/div[@class='col-md-6'][1]/h1")
let username = item.xpath(".//div[@class='d-sm-flex flex-auto']/div[@class='col-sm-8 d-md-flex']/div[@class='col-md-6'][1]/p")
let url = "https://github.com"
let avatar = item.xpath(".//div[@class='mx-3']/a[@class='d-inline-block']/img[@class='rounded-1']/@src")

let avatar = item.xpath(".//div[@class='mx-3']/a/img[@class='rounded-1']/@src")

let repoName = item.xpath(".//h1[@class='h4 lh-condensed']")
let repoURL = item.xpath(".//h1[@class='h4 lh-condensed']/a/@href")
let repoDescription = item.xpath(".//div[@class='f6 text-gray mt-1']")
Expand Down

0 comments on commit e215e14

Please sign in to comment.