From 4144794a0a7fa1cafb44434f7efbc41a720a84a8 Mon Sep 17 00:00:00 2001 From: KIM CHANHEE Date: Fri, 3 May 2024 17:20:00 +0900 Subject: [PATCH 1/3] fix: change GuideView url --- iBox/Sources/Settings/Guide/GuideViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iBox/Sources/Settings/Guide/GuideViewController.swift b/iBox/Sources/Settings/Guide/GuideViewController.swift index bc393b5..47af004 100644 --- a/iBox/Sources/Settings/Guide/GuideViewController.swift +++ b/iBox/Sources/Settings/Guide/GuideViewController.swift @@ -16,7 +16,7 @@ class GuideViewController: BaseViewController, BaseViewControllerProt setupNavigationBar() guard let contentView = contentView as? GuideView else { return } - contentView.guideUrl = URL(string: "https://github.com/42Box/iOS/tree/develop?tab=readme-ov-file#%EF%B8%8F%EF%B8%8F-introduction") + contentView.guideUrl = URL(string: "https://42box.github.io/iOSIntroduction") } // MARK: - BaseViewControllerProtocol From 2a23fc4ccab47b07e928036de01e8d81ee8d7613 Mon Sep 17 00:00:00 2001 From: KIM CHANHEE Date: Fri, 3 May 2024 17:31:05 +0900 Subject: [PATCH 2/3] chore: update versioning --- Project.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.swift b/Project.swift index 9a62933..47ebc4e 100644 --- a/Project.swift +++ b/Project.swift @@ -14,7 +14,7 @@ protocol ProjectFactory { extension Plist.Value { static var displayName: Plist.Value = "42Box" static var displayShareExtensionName: Plist.Value = "42Box.Share" - static var appVersion: Plist.Value = "1.0.2" + static var appVersion: Plist.Value = "1.0.3" } // MARK: - iBox Factory From 8cf969624143bfc94131c288b0857107fc056254 Mon Sep 17 00:00:00 2001 From: KIM CHANHEE Date: Fri, 3 May 2024 17:57:33 +0900 Subject: [PATCH 3/3] chore: delete --- iBox/Sources/Initializer/DefaultDataModel.swift | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/iBox/Sources/Initializer/DefaultDataModel.swift b/iBox/Sources/Initializer/DefaultDataModel.swift index d740e67..db44fd4 100644 --- a/iBox/Sources/Initializer/DefaultDataModel.swift +++ b/iBox/Sources/Initializer/DefaultDataModel.swift @@ -20,15 +20,4 @@ struct BookmarkData: Codable { struct DefaultDataLoader { static var defaultURL = URL(string: "https://42box.github.io/iOSHowToUse/")! - static var defaultData: [Folder]? = [ - Folder(id: UUID(), name: "42Box", bookmarks: [ - Bookmark(id: UUID(), name: "How to use 42Box", url: URL(string: "https://42box.github.io/iOSHowToUse/")!), -// Bookmark(id: UUID(), name: "42 Intra", url: URL(string: "https://profile.intra.42.fr/")!), -// Bookmark(id: UUID(), name: "42Where", url: URL(string: "https://www.where42.kr/")! ), -// Bookmark(id: UUID(), name: "42Stat", url: URL(string: "https://stat.42seoul.kr/")!), -// Bookmark(id: UUID(), name: "집현전", url: URL(string: "https://42library.kr/")!), -// Bookmark(id: UUID(), name: "42gg", url: URL(string: "https://gg.42seoul.kr/")!), -// Bookmark(id: UUID(), name: "24HANE", url: URL(string: "https://24hoursarenotenough.42seoul.kr/")!) - ]) - ] }