Skip to content

Commit 37ddf94

Browse files
committed
Merge tag 'v1.2.2' into develop
v1.2.2
2 parents 5c917c1 + afbada2 commit 37ddf94

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

GitTime.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1469,7 +1469,7 @@
14691469
buildSettings = {
14701470
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
14711471
CODE_SIGN_STYLE = Automatic;
1472-
CURRENT_PROJECT_VERSION = 2;
1472+
CURRENT_PROJECT_VERSION = 1;
14731473
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
14741474
DEVELOPMENT_TEAM = R46Q3HW9V3;
14751475
INFOPLIST_FILE = "GitTime/Supporting Files/Info.plist";
@@ -1478,7 +1478,7 @@
14781478
"$(inherited)",
14791479
"@executable_path/Frameworks",
14801480
);
1481-
MARKETING_VERSION = 1.2.1;
1481+
MARKETING_VERSION = 1.2.2;
14821482
PRODUCT_BUNDLE_IDENTIFIER = io.github.87kangsw.GitTime;
14831483
PRODUCT_NAME = "$(TARGET_NAME)";
14841484
SWIFT_VERSION = 5.0;
@@ -1492,15 +1492,15 @@
14921492
buildSettings = {
14931493
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
14941494
CODE_SIGN_STYLE = Automatic;
1495-
CURRENT_PROJECT_VERSION = 2;
1495+
CURRENT_PROJECT_VERSION = 1;
14961496
DEVELOPMENT_TEAM = R46Q3HW9V3;
14971497
INFOPLIST_FILE = "GitTime/Supporting Files/Info.plist";
14981498
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
14991499
LD_RUNPATH_SEARCH_PATHS = (
15001500
"$(inherited)",
15011501
"@executable_path/Frameworks",
15021502
);
1503-
MARKETING_VERSION = 1.2.1;
1503+
MARKETING_VERSION = 1.2.2;
15041504
PRODUCT_BUNDLE_IDENTIFIER = io.github.87kangsw.GitTime;
15051505
PRODUCT_NAME = "$(TARGET_NAME)";
15061506
SWIFT_VERSION = 5.0;

GitTime/Sources/ViewControllers/Trend/TrendViewReactor.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,8 +214,9 @@ final class TrendViewReactor: Reactor {
214214
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")
215215
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")
216216
let url = "https://github.com"
217-
let avatar = item.xpath(".//div[@class='mx-3']/a[@class='d-inline-block']/img[@class='rounded-1']/@src")
218217

218+
let avatar = item.xpath(".//div[@class='mx-3']/a/img[@class='rounded-1']/@src")
219+
219220
let repoName = item.xpath(".//h1[@class='h4 lh-condensed']")
220221
let repoURL = item.xpath(".//h1[@class='h4 lh-condensed']/a/@href")
221222
let repoDescription = item.xpath(".//div[@class='f6 text-gray mt-1']")

0 commit comments

Comments
 (0)