Skip to content

Commit f92bc81

Browse files
authored
Merge pull request #278 from thingineeer/feature/v2.4.1-ux-improvements
feat: 코스 발견 성능 최적화 및 UX 개선 (v2.4.1)
2 parents 99eedec + 47dcf87 commit f92bc81

File tree

20 files changed

+311
-104
lines changed

20 files changed

+311
-104
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ iOSInjectionProject/
123123
# End of https://www.toptal.com/developers/gitignore/api/xcode,swift,cocoapods
124124
.DS_Store
125125
Config.swift
126+
AdConfig.swift
126127
Gemfile.lock
127128
report.xml
128129

Runnect-iOS/Runnect-iOS.xcodeproj/project.pbxproj

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
71288ED32B26ED2500D6C921 /* UserUploadedLabelCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71288ED22B26ED2500D6C921 /* UserUploadedLabelCell.swift */; };
2020
712DB0702B443ACC0013FD79 /* GAEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 712DB06F2B443ACC0013FD79 /* GAEvent.swift */; };
2121
712F661D2A7B7BAB00D9539B /* Config.swift in Sources */ = {isa = PBXBuildFile; fileRef = 712F661C2A7B7BAB00D9539B /* Config.swift */; };
22+
D1508343A884565BF31ECB04 /* AdConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = B60580146C4D0444DCFA48DF /* AdConfig.swift */; };
2223
7136BF8A2AF921A900679364 /* CustomBottomSheetVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7136BF892AF921A900679364 /* CustomBottomSheetVC.swift */; };
2324
715D36E82B2CC64000CAA9D6 /* MyUploadedCourseResponseDto.swift in Sources */ = {isa = PBXBuildFile; fileRef = 715D36E72B2CC64000CAA9D6 /* MyUploadedCourseResponseDto.swift */; };
2425
71773C8E2B6BDF3B0041605E /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 71773C8D2B6BDF3B0041605E /* GoogleService-Info.plist */; };
@@ -219,6 +220,7 @@
219220
71288ED22B26ED2500D6C921 /* UserUploadedLabelCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserUploadedLabelCell.swift; sourceTree = "<group>"; };
220221
712DB06F2B443ACC0013FD79 /* GAEvent.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GAEvent.swift; sourceTree = "<group>"; };
221222
712F661C2A7B7BAB00D9539B /* Config.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Config.swift; sourceTree = "<group>"; };
223+
B60580146C4D0444DCFA48DF /* AdConfig.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AdConfig.swift; sourceTree = "<group>"; };
222224
7136BF892AF921A900679364 /* CustomBottomSheetVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CustomBottomSheetVC.swift; sourceTree = "<group>"; };
223225
715D36E72B2CC64000CAA9D6 /* MyUploadedCourseResponseDto.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MyUploadedCourseResponseDto.swift; sourceTree = "<group>"; };
224226
71773C8D2B6BDF3B0041605E /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = "<group>"; };
@@ -1082,6 +1084,7 @@
10821084
CE40BB1D2968054F0030ABCA /* BaseResponse.swift */,
10831085
CE5875A1296015A2005D967E /* NetworkLoggerPlugin.swift */,
10841086
712F661C2A7B7BAB00D9539B /* Config.swift */,
1087+
B60580146C4D0444DCFA48DF /* AdConfig.swift */,
10851088
);
10861089
path = Foundation;
10871090
sourceTree = "<group>";
@@ -1681,6 +1684,7 @@
16811684
CE6655CA295D84DD00C64E12 /* UserDefaultKeyList.swift in Sources */,
16821685
71802C5C2B3364C2008DBCEE /* CourseDetailScrapCountDto.swift in Sources */,
16831686
712F661D2A7B7BAB00D9539B /* Config.swift in Sources */,
1687+
D1508343A884565BF31ECB04 /* AdConfig.swift in Sources */,
16841688
23EE06CB2AC2AF3E00CB3FF8 /* KakaoAddressSearchingResponseDto.swift in Sources */,
16851689
CE6655F2295D894D00C64E12 /* UIView+.swift in Sources */,
16861690
CE9291252965C9FB0010959C /* CourseDetailInfoView.swift in Sources */,
@@ -1927,7 +1931,7 @@
19271931
"$(inherited)",
19281932
"@executable_path/Frameworks",
19291933
);
1930-
MARKETING_VERSION = 2.3.0;
1934+
MARKETING_VERSION = 2.4.1;
19311935
PRODUCT_BUNDLE_IDENTIFIER = "com.runnect.Runnect-iOS";
19321936
PRODUCT_NAME = "$(TARGET_NAME)";
19331937
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -1968,7 +1972,7 @@
19681972
"$(inherited)",
19691973
"@executable_path/Frameworks",
19701974
);
1971-
MARKETING_VERSION = 2.3.0;
1975+
MARKETING_VERSION = 2.4.1;
19721976
PRODUCT_BUNDLE_IDENTIFIER = "com.runnect.Runnect-iOS";
19731977
PRODUCT_NAME = "$(TARGET_NAME)";
19741978
PROVISIONING_PROFILE_SPECIFIER = "";

Runnect-iOS/Runnect-iOS/Global/Extension/UIKit+/UITabBar+.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import UIKit
99

1010
extension UITabBar {
11-
11+
1212
static func clearShadow() {
1313
UITabBar.appearance().shadowImage = UIImage()
1414
UITabBar.appearance().backgroundImage = UIImage()

Runnect-iOS/Runnect-iOS/Global/Resource/Assets.xcassets/ic_course_discove_fill.imageset/Contents.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
"version" : 1
2222
},
2323
"properties" : {
24-
"template-rendering-intent" : "original"
24+
"template-rendering-intent" : "template"
2525
}
2626
}

Runnect-iOS/Runnect-iOS/Global/Resource/Assets.xcassets/ic_course_discover.imageset/Contents.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
"version" : 1
2222
},
2323
"properties" : {
24-
"template-rendering-intent" : "original"
24+
"template-rendering-intent" : "template"
2525
}
2626
}

Runnect-iOS/Runnect-iOS/Global/Resource/Assets.xcassets/ic_course_draw.imageset/Contents.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
"version" : 1
2222
},
2323
"properties" : {
24-
"template-rendering-intent" : "original"
24+
"template-rendering-intent" : "template"
2525
}
2626
}

Runnect-iOS/Runnect-iOS/Global/Resource/Assets.xcassets/ic_course_draw_fill.imageset/Contents.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
"version" : 1
2222
},
2323
"properties" : {
24-
"template-rendering-intent" : "original"
24+
"template-rendering-intent" : "template"
2525
}
2626
}

Runnect-iOS/Runnect-iOS/Global/Resource/Assets.xcassets/ic_mypage.imageset/Contents.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
"version" : 1
2222
},
2323
"properties" : {
24-
"template-rendering-intent" : "original"
24+
"template-rendering-intent" : "template"
2525
}
2626
}

Runnect-iOS/Runnect-iOS/Global/Resource/Assets.xcassets/ic_mypage_fill.imageset/Contents.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
"version" : 1
2222
},
2323
"properties" : {
24-
"template-rendering-intent" : "original"
24+
"template-rendering-intent" : "template"
2525
}
2626
}

Runnect-iOS/Runnect-iOS/Global/Resource/Assets.xcassets/ic_storage.imageset/Contents.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
"version" : 1
2222
},
2323
"properties" : {
24-
"template-rendering-intent" : "original"
24+
"template-rendering-intent" : "template"
2525
}
2626
}

0 commit comments

Comments
 (0)