Skip to content

Commit 0d55dbd

Browse files
committed
Merge branch 'develop' into feat/#78-trying-to-merge
2 parents 89a32be + b2f442e commit 0d55dbd

File tree

8 files changed

+39
-27
lines changed

8 files changed

+39
-27
lines changed

โ€ŽEATSSU_MVC/EATSSU_MVC/Resources/Assets/Images.xcassets/version2/KakaoLoginButton.imageset/Contents.json

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,8 @@
11
{
22
"images" : [
3-
{
4-
"idiom" : "universal",
5-
"scale" : "1x"
6-
},
73
{
84
"filename" : "KakaoLoginButton.svg",
9-
"idiom" : "universal",
10-
"scale" : "2x"
11-
},
12-
{
13-
"idiom" : "universal",
14-
"scale" : "3x"
5+
"idiom" : "universal"
156
}
167
],
178
"info" : {

โ€ŽEATSSU_MVC/EATSSU_MVC/Resources/Assets/Images.xcassets/version2/LookAroundButton.imageset/Contents.json

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,8 @@
11
{
22
"images" : [
3-
{
4-
"idiom" : "universal",
5-
"scale" : "1x"
6-
},
73
{
84
"filename" : "LookAroundButton.svg",
9-
"idiom" : "universal",
10-
"scale" : "2x"
11-
},
12-
{
13-
"idiom" : "universal",
14-
"scale" : "3x"
5+
"idiom" : "universal"
156
}
167
],
178
"info" : {

โ€ŽEATSSU_MVC/EATSSU_MVC/Sources/Data/Firebase/NoticeViewController.swift

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

1010
import SnapKit
1111

12-
class NoticeViewController:BaseViewController {
12+
/// FirebaseRemoteConfig ๊ด€๋ จ ViewController
13+
class NoticeViewController: BaseViewController {
1314

1415
// MARK: - Properties
1516
var noticeMessage: String

โ€ŽEATSSU_MVC/EATSSU_MVC/Sources/Presentation/Home/ViewController/HomeViewController.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ final class HomeViewController: BaseViewController {
6666
navigationItem.titleView = UIImageView(image: EATSSUAsset.Images.Version2.mainLogoSmall.image)
6767

6868
let rightButton = UIBarButtonItem(
69-
image: EATSSUAsset.Images.myPageIcon.image,
69+
// FIXME: myPageIcon์€ Version 1 ์†Œ์† ์ด๋ฏธ์ง€ ํŒŒ์ผ์ž…๋‹ˆ๋‹ค. ์•ž์œผ๋กœ๋„ ์‚ฌ์šฉํ•œ๋‹ค๋ฉด Version 2๋กœ ์˜ฎ๊ฒจ์ฃผ์„ธ์š”.
70+
image: EATSSUAsset.Images.Version1.myPageIcon.image,
7071
style: .plain, target: self,
7172
action: #selector(rightBarButtonTapped))
7273
navigationItem.rightBarButtonItem = rightButton
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
//
2+
// DummyModel.swift
3+
// EatSSU-iOS
4+
//
5+
// Created by ์ตœ์ง€์šฐ on 2023/07/16.
6+
//
7+
8+
import UIKit
9+
10+
// TODO: ํ•ด๋‹น ํŒŒ์ผ์„ ๋‚จ๊ฒจ๋‘˜์ง€ ์•ž์œผ๋กœ ์œ ์ง€ ๊ด€๋ จํ•ด์„œ ๋ช…์„ธํ•ด์ฃผ์„ธ์š”.
11+
12+
struct DummyModel: AppData {
13+
14+
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
//
2+
// DataTypeProtocol.swift
3+
// EatSSU-iOS
4+
//
5+
// Created by ์ตœ์ง€์šฐ on 2023/07/16.
6+
//
7+
8+
import Foundation
9+
10+
// TODO: ํ•ด๋‹น ํ”„๋กœํ† ์ฝœ์ด ์™œ ํ•„์š”ํ•œ ์ง€ ๋งˆํฌ์—… ์ฃผ์„์œผ๋กœ ๋ช…์„ธ๋ฅผ ๋‚จ๊ฒจ์ฃผ์„ธ์š”.
11+
12+
protocol AppData {
13+
14+
}

โ€ŽTuist/Package.resolved

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

โ€ŽTuist/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ let package = Package(
2727
.package(url: "https://github.com/onevcat/Kingfisher", from: "7.12.0"),
2828
.package(url: "https://github.com/firebase/firebase-ios-sdk", from: "11.1.0"),
2929
.package(url: "https://github.com/google/GoogleAppMeasurement", from: "11.1.0"),
30-
.package(url: "https://github.com/realm/realm-swift", from: "10.54.0"),
30+
.package(url: "https://github.com/realm/realm-swift", from: "20.0.0"),
3131
.package(url: "https://github.com/ReactiveX/RxSwift", from: "6.7.1"),
3232
]
3333
)

0 commit comments

Comments
ย (0)