├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md ├── scripts │ ├── Commit_Guardian.sh │ └── Format.sh └── workflows │ ├── BUILD_APP_TARGET_iOS17.yml │ ├── BUILD_PACKAGE.yml │ ├── MERGE_PR.yml │ ├── TEST_APP_TARGET_iOS17.yml │ └── TEST_PACKAGE_TARGET_iOS17.yml ├── .gitignore ├── .mise.toml ├── .package.resolved ├── App ├── Configurations │ ├── Debug.xcconfig │ ├── PrivacyInfo.xcprivacy │ └── Release.xcconfig ├── KuringApp.entitlements ├── Project.swift ├── Resources │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon-kuring-app-blueprint.appiconset │ │ │ ├── Contents.json │ │ │ └── kuring_app_blueprint.png │ │ ├── AppIcon-kuring-app-classic.appiconset │ │ │ ├── Contents.json │ │ │ └── kuring_app_classic.png │ │ ├── AppIcon-kuring-app-sketch.appiconset │ │ │ ├── Contents.json │ │ │ └── kuring_app_sketch.png │ │ ├── AppIcon-kuring-app.appiconset │ │ │ ├── Contents.json │ │ │ └── kuring.app.png │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ └── kuring.app.png │ │ ├── AppIcon_Debug.appiconset │ │ │ ├── Contents.json │ │ │ └── kuring.app.debug.png │ │ ├── Contents.json │ │ ├── Popup.icon.imageset │ │ │ ├── Contents.json │ │ │ ├── Group 212.png │ │ │ ├── Group 213.png │ │ │ └── popup.png │ │ ├── TabBar │ │ │ ├── Contents.json │ │ │ ├── calendar-fill.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── calendar-fill 1.svg │ │ │ │ └── calendar-fill.svg │ │ │ ├── calendar.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── calendar.svg │ │ │ ├── list-fill.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Exclude.svg │ │ │ │ └── list-fill.svg │ │ │ ├── list.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── list.svg │ │ │ ├── map-pin-fill.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── map-pin-fill 1.svg │ │ │ │ └── map-pin-fill.svg │ │ │ ├── map-pin.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── map-pin.svg │ │ │ ├── more-horizontal-fill.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── more-horizontal 1.svg │ │ │ │ └── more-horizontal.svg │ │ │ └── more-horizontal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── more-horizontal.svg │ │ ├── kuring.label.imageset │ │ │ ├── Contents.json │ │ │ ├── appIconLabel.png │ │ │ ├── appIconLabel@2x.png │ │ │ └── appIconLabel@3x.png │ │ └── kuring.logo.imageset │ │ │ ├── Contents.json │ │ │ ├── kuring.logo.png │ │ │ ├── kuring.logo@2x.png │ │ │ └── kuring.logo@3x.png │ └── Preview Content │ │ └── Preview Assets.xcassets │ │ └── Contents.json ├── Sources │ ├── AppDelegate │ │ ├── AppDelegate+MessagingDelegate.swift │ │ ├── AppDelegate+UIApplicationDelegate.swift │ │ ├── AppDelegate+UNUserNotificationCenterDelegate.swift │ │ └── AppDelegate.swift │ ├── BottomTabView.swift │ ├── ContentView.swift │ ├── KuringApp.swift │ ├── LaunchScreen.swift │ ├── PopupView.swift │ └── WillBeRemoved │ │ └── Department.swift └── Tests │ ├── BookmarkFeaturesTests │ └── BookmarkListTests.swift │ ├── LabsTests │ └── LabAppTests.swift │ ├── NetworksTests │ └── AppSupportClientTests.swift │ ├── NoticeFeaturesTests │ ├── NoticeAppTests.swift │ └── NoticeDetailTests.swift │ └── SubscriptionFeaturesTests │ ├── SubscriptionAppTests.swift │ └── SubscriptionTests.swift ├── FIRST_ACTION.sh ├── Features ├── AcademicCalendarFeatures │ ├── Project.swift │ └── Sources │ │ ├── AcademicCalendar.swift │ │ └── CalendarKuringError.swift ├── BotFeatures │ ├── Project.swift │ └── Sources │ │ └── BotFeature.swift ├── DepartmentFeatures │ ├── Project.swift │ └── Sources │ │ ├── DepartmentEditor.swift │ │ ├── DepartmentSearchEngine.swift │ │ └── DepartmentSelector.swift ├── LoginFeatures │ ├── Project.swift │ └── Sources │ │ ├── DeleteAccountFeature.swift │ │ ├── EmailVerificationFeature.Destination.swift │ │ ├── EmailVerificationFeature.swift │ │ ├── LoginAppFeature.swift │ │ ├── LoginKuringError.swift │ │ ├── SetPasswordFeature.swift │ │ ├── SignupCompleteFeature.swift │ │ └── WebViewFeature.swift ├── NoticeFeatures │ ├── Project.swift │ └── Sources │ │ ├── BookmarkApp.swift │ │ ├── BookmarkList.swift │ │ ├── Extensions │ │ └── ActivityItem.Equatable.swift │ │ ├── NoticeApp.Path.swift │ │ ├── NoticeApp.swift │ │ ├── NoticeDetail.swift │ │ ├── NoticeList.swift │ │ └── NoticeReportComment.swift ├── SearchFeatures │ ├── Project.swift │ └── Sources │ │ ├── Search.swift │ │ └── StaffDetail.swift ├── SettingsFeatures │ ├── Project.swift │ └── Sources │ │ ├── AppIconSelector.swift │ │ ├── Feedback.swift │ │ ├── InformationWebFeature.swift │ │ ├── OpenSourceListFeature.swift │ │ ├── SettingList.swift │ │ ├── SettingsApp.Destination.swift │ │ ├── SettingsApp.Path.swift │ │ └── SettingsApp.swift └── SubscriptionFeatures │ ├── Project.swift │ └── Sources │ ├── Subscription.swift │ ├── SubscriptionApp.Path.swift │ └── SubscriptionApp.swift ├── LICENSE ├── Labs ├── Project.swift └── Sources │ ├── Dependency │ ├── LeLabo.TestValue.swift │ └── LeLabo.swift │ ├── ExperimentList.swift │ ├── Experiments │ ├── AppIconDetail.swift │ └── BetaADetail.swift │ ├── LabApp.Path.swift │ └── LabApp.swift ├── Makefile ├── README.md ├── Shared ├── Caches │ ├── Project.swift │ └── Sources │ │ ├── Dependency │ │ ├── AcademicEvent.swift │ │ ├── ActiveTab.swift │ │ ├── AppIcons.swift │ │ ├── Auth.swift │ │ ├── Bookmarks.swift │ │ ├── Bots.swift │ │ ├── Commons.swift │ │ ├── Departments.swift │ │ ├── NoticeEKEventStore.swift │ │ ├── RecentSearch.swift │ │ ├── Spotlight.swift │ │ ├── Subscriptions.swift │ │ └── SwiftData.swift │ │ ├── Extensions │ │ ├── Array+.swift │ │ ├── Date+.swift │ │ └── Set+.swift │ │ └── Utils │ │ ├── StringSet.swift │ │ └── UserDefault.swift ├── Models │ ├── Project.swift │ └── Sources │ │ ├── AcademicEvent.swift │ │ ├── AcademicEventEntity.swift │ │ ├── AccessToken.swift │ │ ├── AuthRequest.swift │ │ ├── Bot.swift │ │ ├── Comments.swift │ │ ├── Email.swift │ │ ├── EmailPassword.swift │ │ ├── EmailVerification.swift │ │ ├── Feedback.swift │ │ ├── Notice.swift │ │ ├── NoticeProvider.swift │ │ ├── Staff.swift │ │ ├── Subscription.swift │ │ ├── UserInfo.swift │ │ └── VerificationButtonState.swift ├── Networks │ ├── Project.swift │ ├── Resources │ │ └── KuringLink-Info.plist │ └── Sources │ │ ├── AppSupport │ │ ├── AppSupport.swift │ │ └── AppSupportClient.swift │ │ ├── Depdencies │ │ ├── AppSupport.Dependency.swift │ │ ├── KuringLink.Dependency.swift │ │ └── SSEClient.swift │ │ └── KuringLink │ │ ├── API.Path.swift │ │ ├── API.Response.swift │ │ ├── KuringLink.swift │ │ └── Satelite+Extension.swift └── PushNotifications │ ├── Project.swift │ └── Sources │ ├── Errors │ └── MessageError.swift │ ├── Extensions │ └── DateComponents.swift │ ├── Message │ └── Message.swift │ └── Publishers │ └── Publishers.swift ├── Tuist.swift ├── Tuist ├── Package.resolved ├── Package.swift ├── ProjectDescriptionHelpers │ ├── Project+Helpers.swift │ ├── TargetDependency+KuringApp.swift │ ├── TargetType.swift │ └── Targets │ │ ├── KuringApp.swift │ │ ├── KuringAppDebug.swift │ │ └── KuringTests.swift └── Templates │ ├── Feature │ └── Feature.swift │ ├── Shared │ └── Shared.swift │ └── UI │ └── UI.swift ├── UIKit ├── AcademicCalendarUI │ ├── Example │ │ └── Example.swift │ ├── Project.swift │ └── Sources │ │ ├── AcademicCalendar.swift │ │ ├── AcademicEventCategory.swift │ │ ├── AcademicScheduleSheet.swift │ │ ├── CalendarMonthView.swift │ │ └── DateCellView.swift ├── BotUI │ ├── Project.swift │ ├── Resources │ │ └── Resources.xcassets │ │ │ ├── Contents.json │ │ │ ├── animation_loading.dataset │ │ │ ├── Contents.json │ │ │ └── animation_loading.json │ │ │ └── appIcon │ │ │ ├── Contents.json │ │ │ ├── kuring_app_circle.imageset │ │ │ ├── Contents.json │ │ │ ├── kuring.app.png │ │ │ ├── kuring.app2.png │ │ │ └── kuring.app3.png │ │ │ ├── kuring_app_gray.imageset │ │ │ ├── Component 1.png │ │ │ ├── Component 2.png │ │ │ ├── Component 3.png │ │ │ └── Contents.json │ │ │ └── kuring_app_white.imageset │ │ │ ├── Component 1.png │ │ │ ├── Component 2.png │ │ │ ├── Component 3.png │ │ │ └── Contents.json │ └── Sources │ │ ├── BotView.swift │ │ ├── Bundle.swift │ │ ├── ChatView.swift │ │ └── SendPopup.swift ├── CampusUI │ ├── Example │ │ └── Example.swift │ ├── Project.swift │ ├── Resources │ │ └── KuringMaps-Info.plist │ └── Sources │ │ └── CampusApp.swift ├── ColorSet │ ├── Project.swift │ └── Sources │ │ └── Color.UIKit.swift ├── CommonUI │ ├── Project.swift │ ├── Resources │ │ └── Resources.xcassets │ │ │ ├── Contents.json │ │ │ └── Popup.icon.imageset │ │ │ ├── Contents.json │ │ │ ├── Group 212.png │ │ │ ├── Group 213.png │ │ │ └── popup.png │ └── Sources │ │ ├── View.VersionUpdateAlert.swift │ │ ├── View.onChangedDebounce.swift │ │ ├── View.onFetchAllData.swift │ │ └── WebView.swift ├── DepartmentUI │ ├── Project.swift │ └── Sources │ │ ├── DepartmentEditor.swift │ │ ├── DepartmentRow.swift │ │ └── DepartmentSelector.swift ├── LoginUI │ ├── Project.swift │ ├── Resources │ │ └── Resources.xcassets │ │ │ ├── Contents.json │ │ │ ├── kuring.logo.imageset │ │ │ ├── Contents.json │ │ │ ├── kuring.logo.png │ │ │ ├── kuring.logo@2x.png │ │ │ └── kuring.logo@3x.png │ │ │ ├── preview_close.imageset │ │ │ ├── Contents.json │ │ │ ├── preview-close 1.png │ │ │ ├── preview-close 2.png │ │ │ └── preview-close.png │ │ │ ├── preview_open.imageset │ │ │ ├── Contents.json │ │ │ ├── preview-open 1.png │ │ │ ├── preview-open 2.png │ │ │ └── preview-open.png │ │ │ └── signup_complete.dataset │ │ │ ├── Contents.json │ │ │ └── signup_complete.json │ └── Sources │ │ ├── ChangePassword │ │ ├── ChangePasswordView.swift │ │ └── FindPasswordView.swift │ │ ├── Components │ │ ├── ActionButton.swift │ │ ├── EmailTextField.swift │ │ ├── EmailVerification.swift │ │ ├── HeaderView.swift │ │ ├── LoginErrorMessage.swift │ │ ├── LoginWebView.swift │ │ ├── PasswordTextField.swift │ │ └── SetUpPassword.swift │ │ ├── DeleteAccount │ │ ├── DeleteAccountCompleteView.swift │ │ └── DeleteAccountView.swift │ │ ├── LoginView.swift │ │ └── Signup │ │ ├── LoginTermsAndConditionsView.swift │ │ ├── SetPasswordView.swift │ │ ├── SignupCompleteView.swift │ │ └── SignupView.swift ├── NoticeEKEventUI │ ├── Project.swift │ └── Sources │ │ └── EKEventView.swift ├── NoticeUI │ ├── Example │ │ └── Example.swift │ ├── Project.swift │ ├── Resources │ │ └── Symbols.xcassets │ │ │ ├── Contents.json │ │ │ ├── appIconLabel.imageset │ │ │ ├── Contents.json │ │ │ ├── appIconLabel.png │ │ │ ├── appIconLabel@2x.png │ │ │ └── appIconLabel@3x.png │ │ │ ├── comment │ │ │ ├── Contents.json │ │ │ ├── arrow_up.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── arrow-up 1.png │ │ │ │ ├── arrow-up 2.png │ │ │ │ └── arrow-up.png │ │ │ ├── comment_circle.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── message-circle 1.png │ │ │ │ ├── message-circle 2.png │ │ │ │ └── message-circle.png │ │ │ ├── comment_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── comment_icon 1.png │ │ │ │ ├── comment_icon 2.png │ │ │ │ └── comment_icon.png │ │ │ ├── more_vertical.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── more-vertical 1.png │ │ │ │ ├── more-vertical 2.png │ │ │ │ └── more-vertical.png │ │ │ ├── reply_arrow.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── reply_arrow1.png │ │ │ │ ├── reply_arrow2.png │ │ │ │ └── reply_arrow3.png │ │ │ ├── report_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── report_1.png │ │ │ │ ├── report_2.png │ │ │ │ └── report_3.png │ │ │ ├── siren.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── siren 1.png │ │ │ │ ├── siren 2.png │ │ │ │ └── siren.png │ │ │ └── user.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── user 1.png │ │ │ │ ├── user 2.png │ │ │ │ └── user.png │ │ │ └── navigation │ │ │ ├── Contents.json │ │ │ ├── archive-fill.imageset │ │ │ ├── Contents.json │ │ │ ├── archive-fill 1.svg │ │ │ └── archive-fill.svg │ │ │ ├── archive.imageset │ │ │ ├── Contents.json │ │ │ └── archive.svg │ │ │ ├── bell.imageset │ │ │ ├── Contents.json │ │ │ └── bell-dark.svg │ │ │ ├── bookmark-fill.imageset │ │ │ ├── Contents.json │ │ │ ├── bookmark-fill-dark.svg │ │ │ └── bookmark-fill.svg │ │ │ ├── bookmark.imageset │ │ │ ├── Contents.json │ │ │ ├── bookmark-dark.svg │ │ │ └── bookmark.svg │ │ │ ├── magnifyingglass.imageset │ │ │ ├── Contents.json │ │ │ ├── mag-dark.svg │ │ │ └── mag.svg │ │ │ └── share.imageset │ │ │ ├── Contents.json │ │ │ ├── share-dark.svg │ │ │ └── share.svg │ └── Sources │ │ ├── Bookmark │ │ ├── BookmarkApp.swift │ │ └── BookmarkList.swift │ │ ├── BotFloatButton.swift │ │ ├── Bundle.swift │ │ ├── Comments │ │ ├── CommentContent.swift │ │ ├── CommentMenu.swift │ │ ├── CommentRow.swift │ │ ├── CommentTextField.swift │ │ ├── CommentView.swift │ │ ├── Extensions │ │ │ ├── Comment+Extension.swift │ │ │ └── DateFormatter+Extension.swift │ │ ├── ReportCommentView.swift │ │ └── SubCommentRow.swift │ │ ├── DepartmentSelectorLink.swift │ │ ├── NoticeApp.swift │ │ ├── NoticeContentView.NoDepartment.swift │ │ ├── NoticeContentView.swift │ │ ├── NoticeDetailView.swift │ │ ├── NoticeList.swift │ │ ├── NoticeRow.swift │ │ ├── NoticeTypeColumn.swift │ │ └── NoticeTypePicker.swift ├── OnboardingUI │ ├── Project.swift │ ├── Resources │ │ └── Symbols.xcassets │ │ │ ├── Contents.json │ │ │ ├── bell.notice.alert.new.3d.imageset │ │ │ ├── Contents.json │ │ │ ├── bell.notice.alert.new.3d.png │ │ │ ├── bell.notice.alert.new.3d@2x.png │ │ │ └── bell.notice.alert.new.3d@3x.png │ │ │ ├── magnifyingglass.3d.imageset │ │ │ ├── Contents.json │ │ │ ├── magnifyingglass.3d.png │ │ │ ├── magnifyingglass.3d@2x.png │ │ │ └── magnifyingglass.3d@3x.png │ │ │ ├── smartphone.with.hand.3d.imageset │ │ │ ├── Contents.json │ │ │ ├── smartphone.with.hand.3d.png │ │ │ ├── smartphone.with.hand.3d@2x.png │ │ │ └── smartphone.with.hand.3d@3x.png │ │ │ └── success.dataset │ │ │ ├── Contents.json │ │ │ └── success.json │ └── Sources │ │ ├── Bundle.swift │ │ ├── Common │ │ ├── KuringButtonStyle.swift │ │ └── StringSet.swift │ │ ├── MyDepartmentSelector │ │ ├── CompletionView.swift │ │ ├── ConfirmationView.swift │ │ ├── DepartmentSelector.swift │ │ ├── MyDepartmentSelector.Step.swift │ │ └── MyDepartmentSelector.swift │ │ └── OnboardingView │ │ ├── OnboardingView.Guidance.swift │ │ ├── OnboardingView.GuidanceView.swift │ │ └── OnboardingView.swift ├── SearchUI │ ├── Project.swift │ └── Sources │ │ ├── SearchDetailView.swift │ │ ├── SearchView.swift │ │ └── StaffRow.swift ├── SettingsUI │ ├── Example │ │ └── Example.swift │ ├── Project.swift │ ├── Resources │ │ └── Resources.xcassets │ │ │ ├── Contents.json │ │ │ ├── appIcon │ │ │ ├── AppIcon-kuring-app-blueprint.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── kuring_app_blueprint.png │ │ │ ├── AppIcon-kuring-app-classic.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── kuring_app_classic.png │ │ │ ├── AppIcon-kuring-app-sketch.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── kuring_app_sketch.png │ │ │ ├── AppIcon-kuring-app.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── kuring_app.png │ │ │ └── Contents.json │ │ │ ├── feedback.imageset │ │ │ ├── Contents.json │ │ │ ├── feedback.png │ │ │ ├── feedback@2x.png │ │ │ └── feedback@3x.png │ │ │ └── setting │ │ │ ├── Contents.json │ │ │ ├── chevron.imageset │ │ │ ├── Contents.json │ │ │ ├── chevron.png │ │ │ ├── chevron@2x.png │ │ │ └── chevron@3x.png │ │ │ ├── icon_bell.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_bell.png │ │ │ ├── notice@2x.png │ │ │ └── notice@3x.png │ │ │ ├── icon_checkmark_circle.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_checkmark_circle.png │ │ │ ├── icon_checkmark_circle@2x.png │ │ │ └── icon_checkmark_circle@3x.png │ │ │ ├── icon_external_link.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_external_link.png │ │ │ ├── icon_external_link@2x.png │ │ │ └── icon_external_link@3x.png │ │ │ ├── icon_feedback.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_feedback.png │ │ │ ├── icon_feedback@2x.png │ │ │ └── icon_feedback@3x.png │ │ │ ├── icon_guard.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_guard.png │ │ │ ├── icon_guard@2x.png │ │ │ └── icon_guard@3x.png │ │ │ ├── icon_instagram.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_instagram.png │ │ │ ├── icon_instagram@2x.png │ │ │ └── icon_instagram@3x.png │ │ │ ├── icon_opensource.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_opensource.png │ │ │ ├── icon_opensource@2x.png │ │ │ └── icon_opensource@3x.png │ │ │ ├── icon_rocket.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_app_version.png │ │ │ ├── icon_app_vserion@2x.png │ │ │ └── icon_app_vserion@3x.png │ │ │ ├── icon_star.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_new.png │ │ │ ├── icon_new@2x.png │ │ │ └── icon_new@3x.png │ │ │ ├── icon_team.imageset │ │ │ ├── Contents.json │ │ │ ├── icon_team.png │ │ │ ├── icon_team@2x.png │ │ │ └── icon_team@3x.png │ │ │ ├── trash-2.imageset │ │ │ ├── Contents.json │ │ │ ├── trash-2 1.png │ │ │ ├── trash-2 2.png │ │ │ └── trash-2.png │ │ │ ├── user-x.imageset │ │ │ ├── Contents.json │ │ │ ├── user-x 1.png │ │ │ ├── user-x 2.png │ │ │ └── user-x.png │ │ │ └── user.imageset │ │ │ ├── Contents.json │ │ │ ├── user 1.png │ │ │ ├── user 2.png │ │ │ └── user.png │ └── Sources │ │ ├── AppIconSelector.swift │ │ ├── Bundle.swift │ │ ├── FeedbackView.swift │ │ ├── InformationWebView.swift │ │ ├── OpenSourceList.swift │ │ ├── SettingList.swift │ │ ├── SettingsApp.swift │ │ └── WebView.swift └── SubscriptionUI │ ├── Project.swift │ ├── Resources │ └── Symbols.xcassets │ │ ├── Contents.json │ │ ├── bachelor.imageset │ │ ├── Contents.json │ │ ├── bachelor.png │ │ ├── bachelor@2x.png │ │ └── bachelor@3x.png │ │ ├── employment.imageset │ │ ├── Contents.json │ │ ├── employment.png │ │ ├── employment@2x.png │ │ └── employment@3x.png │ │ ├── industry_university.imageset │ │ ├── Contents.json │ │ ├── industry_university.png │ │ ├── industry_university@2x.png │ │ └── industry_university@3x.png │ │ ├── library.imageset │ │ ├── Contents.json │ │ ├── student.png │ │ ├── student@2x.png │ │ └── student@3x.png │ │ ├── national.imageset │ │ ├── Contents.json │ │ ├── national.png │ │ ├── national@2x.png │ │ └── national@3x.png │ │ ├── normal.imageset │ │ ├── Contents.json │ │ ├── normal.png │ │ ├── normal@2x.png │ │ └── normal@3x.png │ │ ├── scholarship.imageset │ │ ├── Contents.json │ │ ├── scholarship.png │ │ ├── scholarship@2x.png │ │ └── scholarship@3x.png │ │ └── student.imageset │ │ ├── Contents.json │ │ ├── library.png │ │ ├── library@2x.png │ │ └── library@3x.png │ └── Sources │ ├── Bundle.swift │ ├── SubscriptionApp.swift │ ├── SubscriptionSegment.swift │ └── SubscriptionView.swift ├── Workspace.swift └── XcodeSnippets ├── FeatureSnippet.codesnippet └── TestCodeSnippet.codesnippet /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/scripts/Commit_Guardian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/.github/scripts/Commit_Guardian.sh -------------------------------------------------------------------------------- /.github/scripts/Format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/.github/scripts/Format.sh -------------------------------------------------------------------------------- /.github/workflows/BUILD_APP_TARGET_iOS17.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/.github/workflows/BUILD_APP_TARGET_iOS17.yml -------------------------------------------------------------------------------- /.github/workflows/BUILD_PACKAGE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/.github/workflows/BUILD_PACKAGE.yml -------------------------------------------------------------------------------- /.github/workflows/MERGE_PR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/.github/workflows/MERGE_PR.yml -------------------------------------------------------------------------------- /.github/workflows/TEST_APP_TARGET_iOS17.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/.github/workflows/TEST_APP_TARGET_iOS17.yml -------------------------------------------------------------------------------- /.github/workflows/TEST_PACKAGE_TARGET_iOS17.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/.github/workflows/TEST_PACKAGE_TARGET_iOS17.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.mise.toml: -------------------------------------------------------------------------------- 1 | [tools] 2 | tuist = "4.54.3" 3 | -------------------------------------------------------------------------------- /.package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/.package.resolved -------------------------------------------------------------------------------- /App/Configurations/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | APP_DISPLAY_NAME = 쿠링(Debug) 2 | -------------------------------------------------------------------------------- /App/Configurations/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Configurations/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /App/Configurations/Release.xcconfig: -------------------------------------------------------------------------------- 1 | APP_DISPLAY_NAME = 쿠링 2 | -------------------------------------------------------------------------------- /App/KuringApp.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/KuringApp.entitlements -------------------------------------------------------------------------------- /App/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Project.swift -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/AppIcon-kuring-app-blueprint.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/AppIcon-kuring-app-blueprint.appiconset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/AppIcon-kuring-app-blueprint.appiconset/kuring_app_blueprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/AppIcon-kuring-app-blueprint.appiconset/kuring_app_blueprint.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/AppIcon-kuring-app-classic.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/AppIcon-kuring-app-classic.appiconset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/AppIcon-kuring-app-classic.appiconset/kuring_app_classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/AppIcon-kuring-app-classic.appiconset/kuring_app_classic.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/AppIcon-kuring-app-sketch.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/AppIcon-kuring-app-sketch.appiconset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/AppIcon-kuring-app-sketch.appiconset/kuring_app_sketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/AppIcon-kuring-app-sketch.appiconset/kuring_app_sketch.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/AppIcon-kuring-app.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/AppIcon-kuring-app.appiconset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/AppIcon-kuring-app.appiconset/kuring.app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/AppIcon-kuring-app.appiconset/kuring.app.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/AppIcon.appiconset/kuring.app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/AppIcon.appiconset/kuring.app.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/AppIcon_Debug.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/AppIcon_Debug.appiconset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/AppIcon_Debug.appiconset/kuring.app.debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/AppIcon_Debug.appiconset/kuring.app.debug.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/Popup.icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/Popup.icon.imageset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/Popup.icon.imageset/Group 212.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/Popup.icon.imageset/Group 212.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/Popup.icon.imageset/Group 213.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/Popup.icon.imageset/Group 213.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/Popup.icon.imageset/popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/Popup.icon.imageset/popup.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/TabBar/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/TabBar/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/TabBar/calendar-fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/TabBar/calendar-fill.imageset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/TabBar/calendar-fill.imageset/calendar-fill 1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/TabBar/calendar-fill.imageset/calendar-fill 1.svg -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/TabBar/calendar-fill.imageset/calendar-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/TabBar/calendar-fill.imageset/calendar-fill.svg -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/TabBar/calendar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/TabBar/calendar.imageset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/TabBar/calendar.imageset/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/TabBar/calendar.imageset/calendar.svg -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/TabBar/list-fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/TabBar/list-fill.imageset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/TabBar/list-fill.imageset/Exclude.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/TabBar/list-fill.imageset/Exclude.svg -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/TabBar/list-fill.imageset/list-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/TabBar/list-fill.imageset/list-fill.svg -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/TabBar/list.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/TabBar/list.imageset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/TabBar/list.imageset/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/TabBar/list.imageset/list.svg -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/TabBar/map-pin-fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/TabBar/map-pin-fill.imageset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/TabBar/map-pin-fill.imageset/map-pin-fill 1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/TabBar/map-pin-fill.imageset/map-pin-fill 1.svg -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/TabBar/map-pin-fill.imageset/map-pin-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/TabBar/map-pin-fill.imageset/map-pin-fill.svg -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/TabBar/map-pin.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/TabBar/map-pin.imageset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/TabBar/map-pin.imageset/map-pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/TabBar/map-pin.imageset/map-pin.svg -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/TabBar/more-horizontal-fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/TabBar/more-horizontal-fill.imageset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/TabBar/more-horizontal-fill.imageset/more-horizontal 1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/TabBar/more-horizontal-fill.imageset/more-horizontal 1.svg -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/TabBar/more-horizontal-fill.imageset/more-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/TabBar/more-horizontal-fill.imageset/more-horizontal.svg -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/TabBar/more-horizontal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/TabBar/more-horizontal.imageset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/TabBar/more-horizontal.imageset/more-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/TabBar/more-horizontal.imageset/more-horizontal.svg -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/kuring.label.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/kuring.label.imageset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/kuring.label.imageset/appIconLabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/kuring.label.imageset/appIconLabel.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/kuring.label.imageset/appIconLabel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/kuring.label.imageset/appIconLabel@2x.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/kuring.label.imageset/appIconLabel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/kuring.label.imageset/appIconLabel@3x.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/kuring.logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/kuring.logo.imageset/Contents.json -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/kuring.logo.imageset/kuring.logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/kuring.logo.imageset/kuring.logo.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/kuring.logo.imageset/kuring.logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/kuring.logo.imageset/kuring.logo@2x.png -------------------------------------------------------------------------------- /App/Resources/Assets.xcassets/kuring.logo.imageset/kuring.logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Assets.xcassets/kuring.logo.imageset/kuring.logo@3x.png -------------------------------------------------------------------------------- /App/Resources/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Resources/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /App/Sources/AppDelegate/AppDelegate+MessagingDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Sources/AppDelegate/AppDelegate+MessagingDelegate.swift -------------------------------------------------------------------------------- /App/Sources/AppDelegate/AppDelegate+UIApplicationDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Sources/AppDelegate/AppDelegate+UIApplicationDelegate.swift -------------------------------------------------------------------------------- /App/Sources/AppDelegate/AppDelegate+UNUserNotificationCenterDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Sources/AppDelegate/AppDelegate+UNUserNotificationCenterDelegate.swift -------------------------------------------------------------------------------- /App/Sources/AppDelegate/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Sources/AppDelegate/AppDelegate.swift -------------------------------------------------------------------------------- /App/Sources/BottomTabView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Sources/BottomTabView.swift -------------------------------------------------------------------------------- /App/Sources/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Sources/ContentView.swift -------------------------------------------------------------------------------- /App/Sources/KuringApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Sources/KuringApp.swift -------------------------------------------------------------------------------- /App/Sources/LaunchScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Sources/LaunchScreen.swift -------------------------------------------------------------------------------- /App/Sources/PopupView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Sources/PopupView.swift -------------------------------------------------------------------------------- /App/Sources/WillBeRemoved/Department.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Sources/WillBeRemoved/Department.swift -------------------------------------------------------------------------------- /App/Tests/BookmarkFeaturesTests/BookmarkListTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Tests/BookmarkFeaturesTests/BookmarkListTests.swift -------------------------------------------------------------------------------- /App/Tests/LabsTests/LabAppTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Tests/LabsTests/LabAppTests.swift -------------------------------------------------------------------------------- /App/Tests/NetworksTests/AppSupportClientTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Tests/NetworksTests/AppSupportClientTests.swift -------------------------------------------------------------------------------- /App/Tests/NoticeFeaturesTests/NoticeAppTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Tests/NoticeFeaturesTests/NoticeAppTests.swift -------------------------------------------------------------------------------- /App/Tests/NoticeFeaturesTests/NoticeDetailTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Tests/NoticeFeaturesTests/NoticeDetailTests.swift -------------------------------------------------------------------------------- /App/Tests/SubscriptionFeaturesTests/SubscriptionAppTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Tests/SubscriptionFeaturesTests/SubscriptionAppTests.swift -------------------------------------------------------------------------------- /App/Tests/SubscriptionFeaturesTests/SubscriptionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/App/Tests/SubscriptionFeaturesTests/SubscriptionTests.swift -------------------------------------------------------------------------------- /FIRST_ACTION.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/FIRST_ACTION.sh -------------------------------------------------------------------------------- /Features/AcademicCalendarFeatures/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/AcademicCalendarFeatures/Project.swift -------------------------------------------------------------------------------- /Features/AcademicCalendarFeatures/Sources/AcademicCalendar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/AcademicCalendarFeatures/Sources/AcademicCalendar.swift -------------------------------------------------------------------------------- /Features/AcademicCalendarFeatures/Sources/CalendarKuringError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/AcademicCalendarFeatures/Sources/CalendarKuringError.swift -------------------------------------------------------------------------------- /Features/BotFeatures/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/BotFeatures/Project.swift -------------------------------------------------------------------------------- /Features/BotFeatures/Sources/BotFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/BotFeatures/Sources/BotFeature.swift -------------------------------------------------------------------------------- /Features/DepartmentFeatures/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/DepartmentFeatures/Project.swift -------------------------------------------------------------------------------- /Features/DepartmentFeatures/Sources/DepartmentEditor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/DepartmentFeatures/Sources/DepartmentEditor.swift -------------------------------------------------------------------------------- /Features/DepartmentFeatures/Sources/DepartmentSearchEngine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/DepartmentFeatures/Sources/DepartmentSearchEngine.swift -------------------------------------------------------------------------------- /Features/DepartmentFeatures/Sources/DepartmentSelector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/DepartmentFeatures/Sources/DepartmentSelector.swift -------------------------------------------------------------------------------- /Features/LoginFeatures/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/LoginFeatures/Project.swift -------------------------------------------------------------------------------- /Features/LoginFeatures/Sources/DeleteAccountFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/LoginFeatures/Sources/DeleteAccountFeature.swift -------------------------------------------------------------------------------- /Features/LoginFeatures/Sources/EmailVerificationFeature.Destination.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/LoginFeatures/Sources/EmailVerificationFeature.Destination.swift -------------------------------------------------------------------------------- /Features/LoginFeatures/Sources/EmailVerificationFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/LoginFeatures/Sources/EmailVerificationFeature.swift -------------------------------------------------------------------------------- /Features/LoginFeatures/Sources/LoginAppFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/LoginFeatures/Sources/LoginAppFeature.swift -------------------------------------------------------------------------------- /Features/LoginFeatures/Sources/LoginKuringError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/LoginFeatures/Sources/LoginKuringError.swift -------------------------------------------------------------------------------- /Features/LoginFeatures/Sources/SetPasswordFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/LoginFeatures/Sources/SetPasswordFeature.swift -------------------------------------------------------------------------------- /Features/LoginFeatures/Sources/SignupCompleteFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/LoginFeatures/Sources/SignupCompleteFeature.swift -------------------------------------------------------------------------------- /Features/LoginFeatures/Sources/WebViewFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/LoginFeatures/Sources/WebViewFeature.swift -------------------------------------------------------------------------------- /Features/NoticeFeatures/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/NoticeFeatures/Project.swift -------------------------------------------------------------------------------- /Features/NoticeFeatures/Sources/BookmarkApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/NoticeFeatures/Sources/BookmarkApp.swift -------------------------------------------------------------------------------- /Features/NoticeFeatures/Sources/BookmarkList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/NoticeFeatures/Sources/BookmarkList.swift -------------------------------------------------------------------------------- /Features/NoticeFeatures/Sources/Extensions/ActivityItem.Equatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/NoticeFeatures/Sources/Extensions/ActivityItem.Equatable.swift -------------------------------------------------------------------------------- /Features/NoticeFeatures/Sources/NoticeApp.Path.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/NoticeFeatures/Sources/NoticeApp.Path.swift -------------------------------------------------------------------------------- /Features/NoticeFeatures/Sources/NoticeApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/NoticeFeatures/Sources/NoticeApp.swift -------------------------------------------------------------------------------- /Features/NoticeFeatures/Sources/NoticeDetail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/NoticeFeatures/Sources/NoticeDetail.swift -------------------------------------------------------------------------------- /Features/NoticeFeatures/Sources/NoticeList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/NoticeFeatures/Sources/NoticeList.swift -------------------------------------------------------------------------------- /Features/NoticeFeatures/Sources/NoticeReportComment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/NoticeFeatures/Sources/NoticeReportComment.swift -------------------------------------------------------------------------------- /Features/SearchFeatures/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/SearchFeatures/Project.swift -------------------------------------------------------------------------------- /Features/SearchFeatures/Sources/Search.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/SearchFeatures/Sources/Search.swift -------------------------------------------------------------------------------- /Features/SearchFeatures/Sources/StaffDetail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/SearchFeatures/Sources/StaffDetail.swift -------------------------------------------------------------------------------- /Features/SettingsFeatures/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/SettingsFeatures/Project.swift -------------------------------------------------------------------------------- /Features/SettingsFeatures/Sources/AppIconSelector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/SettingsFeatures/Sources/AppIconSelector.swift -------------------------------------------------------------------------------- /Features/SettingsFeatures/Sources/Feedback.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/SettingsFeatures/Sources/Feedback.swift -------------------------------------------------------------------------------- /Features/SettingsFeatures/Sources/InformationWebFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/SettingsFeatures/Sources/InformationWebFeature.swift -------------------------------------------------------------------------------- /Features/SettingsFeatures/Sources/OpenSourceListFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/SettingsFeatures/Sources/OpenSourceListFeature.swift -------------------------------------------------------------------------------- /Features/SettingsFeatures/Sources/SettingList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/SettingsFeatures/Sources/SettingList.swift -------------------------------------------------------------------------------- /Features/SettingsFeatures/Sources/SettingsApp.Destination.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/SettingsFeatures/Sources/SettingsApp.Destination.swift -------------------------------------------------------------------------------- /Features/SettingsFeatures/Sources/SettingsApp.Path.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/SettingsFeatures/Sources/SettingsApp.Path.swift -------------------------------------------------------------------------------- /Features/SettingsFeatures/Sources/SettingsApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/SettingsFeatures/Sources/SettingsApp.swift -------------------------------------------------------------------------------- /Features/SubscriptionFeatures/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/SubscriptionFeatures/Project.swift -------------------------------------------------------------------------------- /Features/SubscriptionFeatures/Sources/Subscription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/SubscriptionFeatures/Sources/Subscription.swift -------------------------------------------------------------------------------- /Features/SubscriptionFeatures/Sources/SubscriptionApp.Path.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/SubscriptionFeatures/Sources/SubscriptionApp.Path.swift -------------------------------------------------------------------------------- /Features/SubscriptionFeatures/Sources/SubscriptionApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Features/SubscriptionFeatures/Sources/SubscriptionApp.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/LICENSE -------------------------------------------------------------------------------- /Labs/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Labs/Project.swift -------------------------------------------------------------------------------- /Labs/Sources/Dependency/LeLabo.TestValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Labs/Sources/Dependency/LeLabo.TestValue.swift -------------------------------------------------------------------------------- /Labs/Sources/Dependency/LeLabo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Labs/Sources/Dependency/LeLabo.swift -------------------------------------------------------------------------------- /Labs/Sources/ExperimentList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Labs/Sources/ExperimentList.swift -------------------------------------------------------------------------------- /Labs/Sources/Experiments/AppIconDetail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Labs/Sources/Experiments/AppIconDetail.swift -------------------------------------------------------------------------------- /Labs/Sources/Experiments/BetaADetail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Labs/Sources/Experiments/BetaADetail.swift -------------------------------------------------------------------------------- /Labs/Sources/LabApp.Path.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Labs/Sources/LabApp.Path.swift -------------------------------------------------------------------------------- /Labs/Sources/LabApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Labs/Sources/LabApp.swift -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/README.md -------------------------------------------------------------------------------- /Shared/Caches/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Caches/Project.swift -------------------------------------------------------------------------------- /Shared/Caches/Sources/Dependency/AcademicEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Caches/Sources/Dependency/AcademicEvent.swift -------------------------------------------------------------------------------- /Shared/Caches/Sources/Dependency/ActiveTab.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Caches/Sources/Dependency/ActiveTab.swift -------------------------------------------------------------------------------- /Shared/Caches/Sources/Dependency/AppIcons.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Caches/Sources/Dependency/AppIcons.swift -------------------------------------------------------------------------------- /Shared/Caches/Sources/Dependency/Auth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Caches/Sources/Dependency/Auth.swift -------------------------------------------------------------------------------- /Shared/Caches/Sources/Dependency/Bookmarks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Caches/Sources/Dependency/Bookmarks.swift -------------------------------------------------------------------------------- /Shared/Caches/Sources/Dependency/Bots.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Caches/Sources/Dependency/Bots.swift -------------------------------------------------------------------------------- /Shared/Caches/Sources/Dependency/Commons.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Caches/Sources/Dependency/Commons.swift -------------------------------------------------------------------------------- /Shared/Caches/Sources/Dependency/Departments.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Caches/Sources/Dependency/Departments.swift -------------------------------------------------------------------------------- /Shared/Caches/Sources/Dependency/NoticeEKEventStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Caches/Sources/Dependency/NoticeEKEventStore.swift -------------------------------------------------------------------------------- /Shared/Caches/Sources/Dependency/RecentSearch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Caches/Sources/Dependency/RecentSearch.swift -------------------------------------------------------------------------------- /Shared/Caches/Sources/Dependency/Spotlight.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Caches/Sources/Dependency/Spotlight.swift -------------------------------------------------------------------------------- /Shared/Caches/Sources/Dependency/Subscriptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Caches/Sources/Dependency/Subscriptions.swift -------------------------------------------------------------------------------- /Shared/Caches/Sources/Dependency/SwiftData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Caches/Sources/Dependency/SwiftData.swift -------------------------------------------------------------------------------- /Shared/Caches/Sources/Extensions/Array+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Caches/Sources/Extensions/Array+.swift -------------------------------------------------------------------------------- /Shared/Caches/Sources/Extensions/Date+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Caches/Sources/Extensions/Date+.swift -------------------------------------------------------------------------------- /Shared/Caches/Sources/Extensions/Set+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Caches/Sources/Extensions/Set+.swift -------------------------------------------------------------------------------- /Shared/Caches/Sources/Utils/StringSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Caches/Sources/Utils/StringSet.swift -------------------------------------------------------------------------------- /Shared/Caches/Sources/Utils/UserDefault.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Caches/Sources/Utils/UserDefault.swift -------------------------------------------------------------------------------- /Shared/Models/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Models/Project.swift -------------------------------------------------------------------------------- /Shared/Models/Sources/AcademicEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Models/Sources/AcademicEvent.swift -------------------------------------------------------------------------------- /Shared/Models/Sources/AcademicEventEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Models/Sources/AcademicEventEntity.swift -------------------------------------------------------------------------------- /Shared/Models/Sources/AccessToken.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Models/Sources/AccessToken.swift -------------------------------------------------------------------------------- /Shared/Models/Sources/AuthRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Models/Sources/AuthRequest.swift -------------------------------------------------------------------------------- /Shared/Models/Sources/Bot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Models/Sources/Bot.swift -------------------------------------------------------------------------------- /Shared/Models/Sources/Comments.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Models/Sources/Comments.swift -------------------------------------------------------------------------------- /Shared/Models/Sources/Email.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Models/Sources/Email.swift -------------------------------------------------------------------------------- /Shared/Models/Sources/EmailPassword.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Models/Sources/EmailPassword.swift -------------------------------------------------------------------------------- /Shared/Models/Sources/EmailVerification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Models/Sources/EmailVerification.swift -------------------------------------------------------------------------------- /Shared/Models/Sources/Feedback.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Models/Sources/Feedback.swift -------------------------------------------------------------------------------- /Shared/Models/Sources/Notice.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Models/Sources/Notice.swift -------------------------------------------------------------------------------- /Shared/Models/Sources/NoticeProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Models/Sources/NoticeProvider.swift -------------------------------------------------------------------------------- /Shared/Models/Sources/Staff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Models/Sources/Staff.swift -------------------------------------------------------------------------------- /Shared/Models/Sources/Subscription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Models/Sources/Subscription.swift -------------------------------------------------------------------------------- /Shared/Models/Sources/UserInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Models/Sources/UserInfo.swift -------------------------------------------------------------------------------- /Shared/Models/Sources/VerificationButtonState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Models/Sources/VerificationButtonState.swift -------------------------------------------------------------------------------- /Shared/Networks/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Networks/Project.swift -------------------------------------------------------------------------------- /Shared/Networks/Resources/KuringLink-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Networks/Resources/KuringLink-Info.plist -------------------------------------------------------------------------------- /Shared/Networks/Sources/AppSupport/AppSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Networks/Sources/AppSupport/AppSupport.swift -------------------------------------------------------------------------------- /Shared/Networks/Sources/AppSupport/AppSupportClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Networks/Sources/AppSupport/AppSupportClient.swift -------------------------------------------------------------------------------- /Shared/Networks/Sources/Depdencies/AppSupport.Dependency.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Networks/Sources/Depdencies/AppSupport.Dependency.swift -------------------------------------------------------------------------------- /Shared/Networks/Sources/Depdencies/KuringLink.Dependency.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Networks/Sources/Depdencies/KuringLink.Dependency.swift -------------------------------------------------------------------------------- /Shared/Networks/Sources/Depdencies/SSEClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Networks/Sources/Depdencies/SSEClient.swift -------------------------------------------------------------------------------- /Shared/Networks/Sources/KuringLink/API.Path.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Networks/Sources/KuringLink/API.Path.swift -------------------------------------------------------------------------------- /Shared/Networks/Sources/KuringLink/API.Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Networks/Sources/KuringLink/API.Response.swift -------------------------------------------------------------------------------- /Shared/Networks/Sources/KuringLink/KuringLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Networks/Sources/KuringLink/KuringLink.swift -------------------------------------------------------------------------------- /Shared/Networks/Sources/KuringLink/Satelite+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/Networks/Sources/KuringLink/Satelite+Extension.swift -------------------------------------------------------------------------------- /Shared/PushNotifications/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/PushNotifications/Project.swift -------------------------------------------------------------------------------- /Shared/PushNotifications/Sources/Errors/MessageError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/PushNotifications/Sources/Errors/MessageError.swift -------------------------------------------------------------------------------- /Shared/PushNotifications/Sources/Extensions/DateComponents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/PushNotifications/Sources/Extensions/DateComponents.swift -------------------------------------------------------------------------------- /Shared/PushNotifications/Sources/Message/Message.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/PushNotifications/Sources/Message/Message.swift -------------------------------------------------------------------------------- /Shared/PushNotifications/Sources/Publishers/Publishers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Shared/PushNotifications/Sources/Publishers/Publishers.swift -------------------------------------------------------------------------------- /Tuist.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Tuist.swift -------------------------------------------------------------------------------- /Tuist/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Tuist/Package.resolved -------------------------------------------------------------------------------- /Tuist/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Tuist/Package.swift -------------------------------------------------------------------------------- /Tuist/ProjectDescriptionHelpers/Project+Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Tuist/ProjectDescriptionHelpers/Project+Helpers.swift -------------------------------------------------------------------------------- /Tuist/ProjectDescriptionHelpers/TargetDependency+KuringApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Tuist/ProjectDescriptionHelpers/TargetDependency+KuringApp.swift -------------------------------------------------------------------------------- /Tuist/ProjectDescriptionHelpers/TargetType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Tuist/ProjectDescriptionHelpers/TargetType.swift -------------------------------------------------------------------------------- /Tuist/ProjectDescriptionHelpers/Targets/KuringApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Tuist/ProjectDescriptionHelpers/Targets/KuringApp.swift -------------------------------------------------------------------------------- /Tuist/ProjectDescriptionHelpers/Targets/KuringAppDebug.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Tuist/ProjectDescriptionHelpers/Targets/KuringAppDebug.swift -------------------------------------------------------------------------------- /Tuist/ProjectDescriptionHelpers/Targets/KuringTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Tuist/ProjectDescriptionHelpers/Targets/KuringTests.swift -------------------------------------------------------------------------------- /Tuist/Templates/Feature/Feature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Tuist/Templates/Feature/Feature.swift -------------------------------------------------------------------------------- /Tuist/Templates/Shared/Shared.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Tuist/Templates/Shared/Shared.swift -------------------------------------------------------------------------------- /Tuist/Templates/UI/UI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Tuist/Templates/UI/UI.swift -------------------------------------------------------------------------------- /UIKit/AcademicCalendarUI/Example/Example.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/AcademicCalendarUI/Example/Example.swift -------------------------------------------------------------------------------- /UIKit/AcademicCalendarUI/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/AcademicCalendarUI/Project.swift -------------------------------------------------------------------------------- /UIKit/AcademicCalendarUI/Sources/AcademicCalendar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/AcademicCalendarUI/Sources/AcademicCalendar.swift -------------------------------------------------------------------------------- /UIKit/AcademicCalendarUI/Sources/AcademicEventCategory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/AcademicCalendarUI/Sources/AcademicEventCategory.swift -------------------------------------------------------------------------------- /UIKit/AcademicCalendarUI/Sources/AcademicScheduleSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/AcademicCalendarUI/Sources/AcademicScheduleSheet.swift -------------------------------------------------------------------------------- /UIKit/AcademicCalendarUI/Sources/CalendarMonthView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/AcademicCalendarUI/Sources/CalendarMonthView.swift -------------------------------------------------------------------------------- /UIKit/AcademicCalendarUI/Sources/DateCellView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/AcademicCalendarUI/Sources/DateCellView.swift -------------------------------------------------------------------------------- /UIKit/BotUI/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/BotUI/Project.swift -------------------------------------------------------------------------------- /UIKit/BotUI/Resources/Resources.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/BotUI/Resources/Resources.xcassets/Contents.json -------------------------------------------------------------------------------- /UIKit/BotUI/Resources/Resources.xcassets/animation_loading.dataset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/BotUI/Resources/Resources.xcassets/animation_loading.dataset/Contents.json -------------------------------------------------------------------------------- /UIKit/BotUI/Resources/Resources.xcassets/animation_loading.dataset/animation_loading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/BotUI/Resources/Resources.xcassets/animation_loading.dataset/animation_loading.json -------------------------------------------------------------------------------- /UIKit/BotUI/Resources/Resources.xcassets/appIcon/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/BotUI/Resources/Resources.xcassets/appIcon/Contents.json -------------------------------------------------------------------------------- /UIKit/BotUI/Resources/Resources.xcassets/appIcon/kuring_app_circle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/BotUI/Resources/Resources.xcassets/appIcon/kuring_app_circle.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/BotUI/Resources/Resources.xcassets/appIcon/kuring_app_circle.imageset/kuring.app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/BotUI/Resources/Resources.xcassets/appIcon/kuring_app_circle.imageset/kuring.app.png -------------------------------------------------------------------------------- /UIKit/BotUI/Resources/Resources.xcassets/appIcon/kuring_app_circle.imageset/kuring.app2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/BotUI/Resources/Resources.xcassets/appIcon/kuring_app_circle.imageset/kuring.app2.png -------------------------------------------------------------------------------- /UIKit/BotUI/Resources/Resources.xcassets/appIcon/kuring_app_circle.imageset/kuring.app3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/BotUI/Resources/Resources.xcassets/appIcon/kuring_app_circle.imageset/kuring.app3.png -------------------------------------------------------------------------------- /UIKit/BotUI/Resources/Resources.xcassets/appIcon/kuring_app_gray.imageset/Component 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/BotUI/Resources/Resources.xcassets/appIcon/kuring_app_gray.imageset/Component 1.png -------------------------------------------------------------------------------- /UIKit/BotUI/Resources/Resources.xcassets/appIcon/kuring_app_gray.imageset/Component 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/BotUI/Resources/Resources.xcassets/appIcon/kuring_app_gray.imageset/Component 2.png -------------------------------------------------------------------------------- /UIKit/BotUI/Resources/Resources.xcassets/appIcon/kuring_app_gray.imageset/Component 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/BotUI/Resources/Resources.xcassets/appIcon/kuring_app_gray.imageset/Component 3.png -------------------------------------------------------------------------------- /UIKit/BotUI/Resources/Resources.xcassets/appIcon/kuring_app_gray.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/BotUI/Resources/Resources.xcassets/appIcon/kuring_app_gray.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/BotUI/Resources/Resources.xcassets/appIcon/kuring_app_white.imageset/Component 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/BotUI/Resources/Resources.xcassets/appIcon/kuring_app_white.imageset/Component 1.png -------------------------------------------------------------------------------- /UIKit/BotUI/Resources/Resources.xcassets/appIcon/kuring_app_white.imageset/Component 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/BotUI/Resources/Resources.xcassets/appIcon/kuring_app_white.imageset/Component 2.png -------------------------------------------------------------------------------- /UIKit/BotUI/Resources/Resources.xcassets/appIcon/kuring_app_white.imageset/Component 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/BotUI/Resources/Resources.xcassets/appIcon/kuring_app_white.imageset/Component 3.png -------------------------------------------------------------------------------- /UIKit/BotUI/Resources/Resources.xcassets/appIcon/kuring_app_white.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/BotUI/Resources/Resources.xcassets/appIcon/kuring_app_white.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/BotUI/Sources/BotView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/BotUI/Sources/BotView.swift -------------------------------------------------------------------------------- /UIKit/BotUI/Sources/Bundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/BotUI/Sources/Bundle.swift -------------------------------------------------------------------------------- /UIKit/BotUI/Sources/ChatView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/BotUI/Sources/ChatView.swift -------------------------------------------------------------------------------- /UIKit/BotUI/Sources/SendPopup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/BotUI/Sources/SendPopup.swift -------------------------------------------------------------------------------- /UIKit/CampusUI/Example/Example.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/CampusUI/Example/Example.swift -------------------------------------------------------------------------------- /UIKit/CampusUI/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/CampusUI/Project.swift -------------------------------------------------------------------------------- /UIKit/CampusUI/Resources/KuringMaps-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/CampusUI/Resources/KuringMaps-Info.plist -------------------------------------------------------------------------------- /UIKit/CampusUI/Sources/CampusApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/CampusUI/Sources/CampusApp.swift -------------------------------------------------------------------------------- /UIKit/ColorSet/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/ColorSet/Project.swift -------------------------------------------------------------------------------- /UIKit/ColorSet/Sources/Color.UIKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/ColorSet/Sources/Color.UIKit.swift -------------------------------------------------------------------------------- /UIKit/CommonUI/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/CommonUI/Project.swift -------------------------------------------------------------------------------- /UIKit/CommonUI/Resources/Resources.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/CommonUI/Resources/Resources.xcassets/Contents.json -------------------------------------------------------------------------------- /UIKit/CommonUI/Resources/Resources.xcassets/Popup.icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/CommonUI/Resources/Resources.xcassets/Popup.icon.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/CommonUI/Resources/Resources.xcassets/Popup.icon.imageset/Group 212.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/CommonUI/Resources/Resources.xcassets/Popup.icon.imageset/Group 212.png -------------------------------------------------------------------------------- /UIKit/CommonUI/Resources/Resources.xcassets/Popup.icon.imageset/Group 213.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/CommonUI/Resources/Resources.xcassets/Popup.icon.imageset/Group 213.png -------------------------------------------------------------------------------- /UIKit/CommonUI/Resources/Resources.xcassets/Popup.icon.imageset/popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/CommonUI/Resources/Resources.xcassets/Popup.icon.imageset/popup.png -------------------------------------------------------------------------------- /UIKit/CommonUI/Sources/View.VersionUpdateAlert.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/CommonUI/Sources/View.VersionUpdateAlert.swift -------------------------------------------------------------------------------- /UIKit/CommonUI/Sources/View.onChangedDebounce.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/CommonUI/Sources/View.onChangedDebounce.swift -------------------------------------------------------------------------------- /UIKit/CommonUI/Sources/View.onFetchAllData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/CommonUI/Sources/View.onFetchAllData.swift -------------------------------------------------------------------------------- /UIKit/CommonUI/Sources/WebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/CommonUI/Sources/WebView.swift -------------------------------------------------------------------------------- /UIKit/DepartmentUI/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/DepartmentUI/Project.swift -------------------------------------------------------------------------------- /UIKit/DepartmentUI/Sources/DepartmentEditor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/DepartmentUI/Sources/DepartmentEditor.swift -------------------------------------------------------------------------------- /UIKit/DepartmentUI/Sources/DepartmentRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/DepartmentUI/Sources/DepartmentRow.swift -------------------------------------------------------------------------------- /UIKit/DepartmentUI/Sources/DepartmentSelector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/DepartmentUI/Sources/DepartmentSelector.swift -------------------------------------------------------------------------------- /UIKit/LoginUI/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/LoginUI/Project.swift -------------------------------------------------------------------------------- /UIKit/LoginUI/Resources/Resources.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/LoginUI/Resources/Resources.xcassets/Contents.json -------------------------------------------------------------------------------- /UIKit/LoginUI/Resources/Resources.xcassets/kuring.logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/LoginUI/Resources/Resources.xcassets/kuring.logo.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/LoginUI/Resources/Resources.xcassets/kuring.logo.imageset/kuring.logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/LoginUI/Resources/Resources.xcassets/kuring.logo.imageset/kuring.logo.png -------------------------------------------------------------------------------- /UIKit/LoginUI/Resources/Resources.xcassets/kuring.logo.imageset/kuring.logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/LoginUI/Resources/Resources.xcassets/kuring.logo.imageset/kuring.logo@2x.png -------------------------------------------------------------------------------- /UIKit/LoginUI/Resources/Resources.xcassets/kuring.logo.imageset/kuring.logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/LoginUI/Resources/Resources.xcassets/kuring.logo.imageset/kuring.logo@3x.png -------------------------------------------------------------------------------- /UIKit/LoginUI/Resources/Resources.xcassets/preview_close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/LoginUI/Resources/Resources.xcassets/preview_close.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/LoginUI/Resources/Resources.xcassets/preview_close.imageset/preview-close 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/LoginUI/Resources/Resources.xcassets/preview_close.imageset/preview-close 1.png -------------------------------------------------------------------------------- /UIKit/LoginUI/Resources/Resources.xcassets/preview_close.imageset/preview-close 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/LoginUI/Resources/Resources.xcassets/preview_close.imageset/preview-close 2.png -------------------------------------------------------------------------------- /UIKit/LoginUI/Resources/Resources.xcassets/preview_close.imageset/preview-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/LoginUI/Resources/Resources.xcassets/preview_close.imageset/preview-close.png -------------------------------------------------------------------------------- /UIKit/LoginUI/Resources/Resources.xcassets/preview_open.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/LoginUI/Resources/Resources.xcassets/preview_open.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/LoginUI/Resources/Resources.xcassets/preview_open.imageset/preview-open 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/LoginUI/Resources/Resources.xcassets/preview_open.imageset/preview-open 1.png -------------------------------------------------------------------------------- /UIKit/LoginUI/Resources/Resources.xcassets/preview_open.imageset/preview-open 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/LoginUI/Resources/Resources.xcassets/preview_open.imageset/preview-open 2.png -------------------------------------------------------------------------------- /UIKit/LoginUI/Resources/Resources.xcassets/preview_open.imageset/preview-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/LoginUI/Resources/Resources.xcassets/preview_open.imageset/preview-open.png -------------------------------------------------------------------------------- /UIKit/LoginUI/Resources/Resources.xcassets/signup_complete.dataset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/LoginUI/Resources/Resources.xcassets/signup_complete.dataset/Contents.json -------------------------------------------------------------------------------- /UIKit/LoginUI/Resources/Resources.xcassets/signup_complete.dataset/signup_complete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/LoginUI/Resources/Resources.xcassets/signup_complete.dataset/signup_complete.json -------------------------------------------------------------------------------- /UIKit/LoginUI/Sources/ChangePassword/ChangePasswordView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/LoginUI/Sources/ChangePassword/ChangePasswordView.swift -------------------------------------------------------------------------------- /UIKit/LoginUI/Sources/ChangePassword/FindPasswordView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/LoginUI/Sources/ChangePassword/FindPasswordView.swift -------------------------------------------------------------------------------- /UIKit/LoginUI/Sources/Components/ActionButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/LoginUI/Sources/Components/ActionButton.swift -------------------------------------------------------------------------------- /UIKit/LoginUI/Sources/Components/EmailTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/LoginUI/Sources/Components/EmailTextField.swift -------------------------------------------------------------------------------- /UIKit/LoginUI/Sources/Components/EmailVerification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/LoginUI/Sources/Components/EmailVerification.swift -------------------------------------------------------------------------------- /UIKit/LoginUI/Sources/Components/HeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/LoginUI/Sources/Components/HeaderView.swift -------------------------------------------------------------------------------- /UIKit/LoginUI/Sources/Components/LoginErrorMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/LoginUI/Sources/Components/LoginErrorMessage.swift -------------------------------------------------------------------------------- /UIKit/LoginUI/Sources/Components/LoginWebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/LoginUI/Sources/Components/LoginWebView.swift -------------------------------------------------------------------------------- /UIKit/LoginUI/Sources/Components/PasswordTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/LoginUI/Sources/Components/PasswordTextField.swift -------------------------------------------------------------------------------- /UIKit/LoginUI/Sources/Components/SetUpPassword.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/LoginUI/Sources/Components/SetUpPassword.swift -------------------------------------------------------------------------------- /UIKit/LoginUI/Sources/DeleteAccount/DeleteAccountCompleteView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/LoginUI/Sources/DeleteAccount/DeleteAccountCompleteView.swift -------------------------------------------------------------------------------- /UIKit/LoginUI/Sources/DeleteAccount/DeleteAccountView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/LoginUI/Sources/DeleteAccount/DeleteAccountView.swift -------------------------------------------------------------------------------- /UIKit/LoginUI/Sources/LoginView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/LoginUI/Sources/LoginView.swift -------------------------------------------------------------------------------- /UIKit/LoginUI/Sources/Signup/LoginTermsAndConditionsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/LoginUI/Sources/Signup/LoginTermsAndConditionsView.swift -------------------------------------------------------------------------------- /UIKit/LoginUI/Sources/Signup/SetPasswordView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/LoginUI/Sources/Signup/SetPasswordView.swift -------------------------------------------------------------------------------- /UIKit/LoginUI/Sources/Signup/SignupCompleteView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/LoginUI/Sources/Signup/SignupCompleteView.swift -------------------------------------------------------------------------------- /UIKit/LoginUI/Sources/Signup/SignupView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/LoginUI/Sources/Signup/SignupView.swift -------------------------------------------------------------------------------- /UIKit/NoticeEKEventUI/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeEKEventUI/Project.swift -------------------------------------------------------------------------------- /UIKit/NoticeEKEventUI/Sources/EKEventView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeEKEventUI/Sources/EKEventView.swift -------------------------------------------------------------------------------- /UIKit/NoticeUI/Example/Example.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Example/Example.swift -------------------------------------------------------------------------------- /UIKit/NoticeUI/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Project.swift -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/Contents.json -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/appIconLabel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/appIconLabel.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/appIconLabel.imageset/appIconLabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/appIconLabel.imageset/appIconLabel.png -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/appIconLabel.imageset/appIconLabel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/appIconLabel.imageset/appIconLabel@2x.png -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/appIconLabel.imageset/appIconLabel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/appIconLabel.imageset/appIconLabel@3x.png -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/comment/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/comment/Contents.json -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/comment/arrow_up.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/comment/arrow_up.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/comment/arrow_up.imageset/arrow-up 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/comment/arrow_up.imageset/arrow-up 1.png -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/comment/arrow_up.imageset/arrow-up 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/comment/arrow_up.imageset/arrow-up 2.png -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/comment/arrow_up.imageset/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/comment/arrow_up.imageset/arrow-up.png -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/comment/comment_circle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/comment/comment_circle.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/comment/comment_circle.imageset/message-circle 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/comment/comment_circle.imageset/message-circle 1.png -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/comment/comment_circle.imageset/message-circle 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/comment/comment_circle.imageset/message-circle 2.png -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/comment/comment_circle.imageset/message-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/comment/comment_circle.imageset/message-circle.png -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/comment/comment_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/comment/comment_icon.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/comment/comment_icon.imageset/comment_icon 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/comment/comment_icon.imageset/comment_icon 1.png -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/comment/comment_icon.imageset/comment_icon 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/comment/comment_icon.imageset/comment_icon 2.png -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/comment/comment_icon.imageset/comment_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/comment/comment_icon.imageset/comment_icon.png -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/comment/more_vertical.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/comment/more_vertical.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/comment/more_vertical.imageset/more-vertical 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/comment/more_vertical.imageset/more-vertical 1.png -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/comment/more_vertical.imageset/more-vertical 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/comment/more_vertical.imageset/more-vertical 2.png -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/comment/more_vertical.imageset/more-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/comment/more_vertical.imageset/more-vertical.png -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/comment/reply_arrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/comment/reply_arrow.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/comment/reply_arrow.imageset/reply_arrow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/comment/reply_arrow.imageset/reply_arrow1.png -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/comment/reply_arrow.imageset/reply_arrow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/comment/reply_arrow.imageset/reply_arrow2.png -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/comment/reply_arrow.imageset/reply_arrow3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/comment/reply_arrow.imageset/reply_arrow3.png -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/comment/report_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/comment/report_icon.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/comment/report_icon.imageset/report_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/comment/report_icon.imageset/report_1.png -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/comment/report_icon.imageset/report_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/comment/report_icon.imageset/report_2.png -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/comment/report_icon.imageset/report_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/comment/report_icon.imageset/report_3.png -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/comment/siren.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/comment/siren.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/comment/siren.imageset/siren 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/comment/siren.imageset/siren 1.png -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/comment/siren.imageset/siren 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/comment/siren.imageset/siren 2.png -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/comment/siren.imageset/siren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/comment/siren.imageset/siren.png -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/comment/user.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/comment/user.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/comment/user.imageset/user 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/comment/user.imageset/user 1.png -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/comment/user.imageset/user 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/comment/user.imageset/user 2.png -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/comment/user.imageset/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/comment/user.imageset/user.png -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/Contents.json -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/archive-fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/archive-fill.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/archive-fill.imageset/archive-fill 1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/archive-fill.imageset/archive-fill 1.svg -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/archive-fill.imageset/archive-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/archive-fill.imageset/archive-fill.svg -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/archive.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/archive.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/archive.imageset/archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/archive.imageset/archive.svg -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/bell.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/bell.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/bell.imageset/bell-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/bell.imageset/bell-dark.svg -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/bookmark-fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/bookmark-fill.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/bookmark-fill.imageset/bookmark-fill-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/bookmark-fill.imageset/bookmark-fill-dark.svg -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/bookmark-fill.imageset/bookmark-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/bookmark-fill.imageset/bookmark-fill.svg -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/bookmark.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/bookmark.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/bookmark.imageset/bookmark-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/bookmark.imageset/bookmark-dark.svg -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/bookmark.imageset/bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/bookmark.imageset/bookmark.svg -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/magnifyingglass.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/magnifyingglass.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/magnifyingglass.imageset/mag-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/magnifyingglass.imageset/mag-dark.svg -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/magnifyingglass.imageset/mag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/magnifyingglass.imageset/mag.svg -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/share.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/share.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/share.imageset/share-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/share.imageset/share-dark.svg -------------------------------------------------------------------------------- /UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/share.imageset/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Resources/Symbols.xcassets/navigation/share.imageset/share.svg -------------------------------------------------------------------------------- /UIKit/NoticeUI/Sources/Bookmark/BookmarkApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Sources/Bookmark/BookmarkApp.swift -------------------------------------------------------------------------------- /UIKit/NoticeUI/Sources/Bookmark/BookmarkList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Sources/Bookmark/BookmarkList.swift -------------------------------------------------------------------------------- /UIKit/NoticeUI/Sources/BotFloatButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Sources/BotFloatButton.swift -------------------------------------------------------------------------------- /UIKit/NoticeUI/Sources/Bundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Sources/Bundle.swift -------------------------------------------------------------------------------- /UIKit/NoticeUI/Sources/Comments/CommentContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Sources/Comments/CommentContent.swift -------------------------------------------------------------------------------- /UIKit/NoticeUI/Sources/Comments/CommentMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Sources/Comments/CommentMenu.swift -------------------------------------------------------------------------------- /UIKit/NoticeUI/Sources/Comments/CommentRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Sources/Comments/CommentRow.swift -------------------------------------------------------------------------------- /UIKit/NoticeUI/Sources/Comments/CommentTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Sources/Comments/CommentTextField.swift -------------------------------------------------------------------------------- /UIKit/NoticeUI/Sources/Comments/CommentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Sources/Comments/CommentView.swift -------------------------------------------------------------------------------- /UIKit/NoticeUI/Sources/Comments/Extensions/Comment+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Sources/Comments/Extensions/Comment+Extension.swift -------------------------------------------------------------------------------- /UIKit/NoticeUI/Sources/Comments/Extensions/DateFormatter+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Sources/Comments/Extensions/DateFormatter+Extension.swift -------------------------------------------------------------------------------- /UIKit/NoticeUI/Sources/Comments/ReportCommentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Sources/Comments/ReportCommentView.swift -------------------------------------------------------------------------------- /UIKit/NoticeUI/Sources/Comments/SubCommentRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Sources/Comments/SubCommentRow.swift -------------------------------------------------------------------------------- /UIKit/NoticeUI/Sources/DepartmentSelectorLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Sources/DepartmentSelectorLink.swift -------------------------------------------------------------------------------- /UIKit/NoticeUI/Sources/NoticeApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Sources/NoticeApp.swift -------------------------------------------------------------------------------- /UIKit/NoticeUI/Sources/NoticeContentView.NoDepartment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Sources/NoticeContentView.NoDepartment.swift -------------------------------------------------------------------------------- /UIKit/NoticeUI/Sources/NoticeContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Sources/NoticeContentView.swift -------------------------------------------------------------------------------- /UIKit/NoticeUI/Sources/NoticeDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Sources/NoticeDetailView.swift -------------------------------------------------------------------------------- /UIKit/NoticeUI/Sources/NoticeList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Sources/NoticeList.swift -------------------------------------------------------------------------------- /UIKit/NoticeUI/Sources/NoticeRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Sources/NoticeRow.swift -------------------------------------------------------------------------------- /UIKit/NoticeUI/Sources/NoticeTypeColumn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Sources/NoticeTypeColumn.swift -------------------------------------------------------------------------------- /UIKit/NoticeUI/Sources/NoticeTypePicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/NoticeUI/Sources/NoticeTypePicker.swift -------------------------------------------------------------------------------- /UIKit/OnboardingUI/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/OnboardingUI/Project.swift -------------------------------------------------------------------------------- /UIKit/OnboardingUI/Resources/Symbols.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/OnboardingUI/Resources/Symbols.xcassets/Contents.json -------------------------------------------------------------------------------- /UIKit/OnboardingUI/Resources/Symbols.xcassets/bell.notice.alert.new.3d.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/OnboardingUI/Resources/Symbols.xcassets/bell.notice.alert.new.3d.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/OnboardingUI/Resources/Symbols.xcassets/bell.notice.alert.new.3d.imageset/bell.notice.alert.new.3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/OnboardingUI/Resources/Symbols.xcassets/bell.notice.alert.new.3d.imageset/bell.notice.alert.new.3d.png -------------------------------------------------------------------------------- /UIKit/OnboardingUI/Resources/Symbols.xcassets/bell.notice.alert.new.3d.imageset/bell.notice.alert.new.3d@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/OnboardingUI/Resources/Symbols.xcassets/bell.notice.alert.new.3d.imageset/bell.notice.alert.new.3d@2x.png -------------------------------------------------------------------------------- /UIKit/OnboardingUI/Resources/Symbols.xcassets/bell.notice.alert.new.3d.imageset/bell.notice.alert.new.3d@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/OnboardingUI/Resources/Symbols.xcassets/bell.notice.alert.new.3d.imageset/bell.notice.alert.new.3d@3x.png -------------------------------------------------------------------------------- /UIKit/OnboardingUI/Resources/Symbols.xcassets/magnifyingglass.3d.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/OnboardingUI/Resources/Symbols.xcassets/magnifyingglass.3d.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/OnboardingUI/Resources/Symbols.xcassets/magnifyingglass.3d.imageset/magnifyingglass.3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/OnboardingUI/Resources/Symbols.xcassets/magnifyingglass.3d.imageset/magnifyingglass.3d.png -------------------------------------------------------------------------------- /UIKit/OnboardingUI/Resources/Symbols.xcassets/magnifyingglass.3d.imageset/magnifyingglass.3d@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/OnboardingUI/Resources/Symbols.xcassets/magnifyingglass.3d.imageset/magnifyingglass.3d@2x.png -------------------------------------------------------------------------------- /UIKit/OnboardingUI/Resources/Symbols.xcassets/magnifyingglass.3d.imageset/magnifyingglass.3d@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/OnboardingUI/Resources/Symbols.xcassets/magnifyingglass.3d.imageset/magnifyingglass.3d@3x.png -------------------------------------------------------------------------------- /UIKit/OnboardingUI/Resources/Symbols.xcassets/smartphone.with.hand.3d.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/OnboardingUI/Resources/Symbols.xcassets/smartphone.with.hand.3d.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/OnboardingUI/Resources/Symbols.xcassets/smartphone.with.hand.3d.imageset/smartphone.with.hand.3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/OnboardingUI/Resources/Symbols.xcassets/smartphone.with.hand.3d.imageset/smartphone.with.hand.3d.png -------------------------------------------------------------------------------- /UIKit/OnboardingUI/Resources/Symbols.xcassets/smartphone.with.hand.3d.imageset/smartphone.with.hand.3d@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/OnboardingUI/Resources/Symbols.xcassets/smartphone.with.hand.3d.imageset/smartphone.with.hand.3d@2x.png -------------------------------------------------------------------------------- /UIKit/OnboardingUI/Resources/Symbols.xcassets/smartphone.with.hand.3d.imageset/smartphone.with.hand.3d@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/OnboardingUI/Resources/Symbols.xcassets/smartphone.with.hand.3d.imageset/smartphone.with.hand.3d@3x.png -------------------------------------------------------------------------------- /UIKit/OnboardingUI/Resources/Symbols.xcassets/success.dataset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/OnboardingUI/Resources/Symbols.xcassets/success.dataset/Contents.json -------------------------------------------------------------------------------- /UIKit/OnboardingUI/Resources/Symbols.xcassets/success.dataset/success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/OnboardingUI/Resources/Symbols.xcassets/success.dataset/success.json -------------------------------------------------------------------------------- /UIKit/OnboardingUI/Sources/Bundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/OnboardingUI/Sources/Bundle.swift -------------------------------------------------------------------------------- /UIKit/OnboardingUI/Sources/Common/KuringButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/OnboardingUI/Sources/Common/KuringButtonStyle.swift -------------------------------------------------------------------------------- /UIKit/OnboardingUI/Sources/Common/StringSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/OnboardingUI/Sources/Common/StringSet.swift -------------------------------------------------------------------------------- /UIKit/OnboardingUI/Sources/MyDepartmentSelector/CompletionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/OnboardingUI/Sources/MyDepartmentSelector/CompletionView.swift -------------------------------------------------------------------------------- /UIKit/OnboardingUI/Sources/MyDepartmentSelector/ConfirmationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/OnboardingUI/Sources/MyDepartmentSelector/ConfirmationView.swift -------------------------------------------------------------------------------- /UIKit/OnboardingUI/Sources/MyDepartmentSelector/DepartmentSelector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/OnboardingUI/Sources/MyDepartmentSelector/DepartmentSelector.swift -------------------------------------------------------------------------------- /UIKit/OnboardingUI/Sources/MyDepartmentSelector/MyDepartmentSelector.Step.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/OnboardingUI/Sources/MyDepartmentSelector/MyDepartmentSelector.Step.swift -------------------------------------------------------------------------------- /UIKit/OnboardingUI/Sources/MyDepartmentSelector/MyDepartmentSelector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/OnboardingUI/Sources/MyDepartmentSelector/MyDepartmentSelector.swift -------------------------------------------------------------------------------- /UIKit/OnboardingUI/Sources/OnboardingView/OnboardingView.Guidance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/OnboardingUI/Sources/OnboardingView/OnboardingView.Guidance.swift -------------------------------------------------------------------------------- /UIKit/OnboardingUI/Sources/OnboardingView/OnboardingView.GuidanceView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/OnboardingUI/Sources/OnboardingView/OnboardingView.GuidanceView.swift -------------------------------------------------------------------------------- /UIKit/OnboardingUI/Sources/OnboardingView/OnboardingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/OnboardingUI/Sources/OnboardingView/OnboardingView.swift -------------------------------------------------------------------------------- /UIKit/SearchUI/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SearchUI/Project.swift -------------------------------------------------------------------------------- /UIKit/SearchUI/Sources/SearchDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SearchUI/Sources/SearchDetailView.swift -------------------------------------------------------------------------------- /UIKit/SearchUI/Sources/SearchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SearchUI/Sources/SearchView.swift -------------------------------------------------------------------------------- /UIKit/SearchUI/Sources/StaffRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SearchUI/Sources/StaffRow.swift -------------------------------------------------------------------------------- /UIKit/SettingsUI/Example/Example.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Example/Example.swift -------------------------------------------------------------------------------- /UIKit/SettingsUI/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Project.swift -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/Contents.json -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/appIcon/AppIcon-kuring-app-blueprint.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/appIcon/AppIcon-kuring-app-blueprint.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/appIcon/AppIcon-kuring-app-blueprint.imageset/kuring_app_blueprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/appIcon/AppIcon-kuring-app-blueprint.imageset/kuring_app_blueprint.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/appIcon/AppIcon-kuring-app-classic.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/appIcon/AppIcon-kuring-app-classic.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/appIcon/AppIcon-kuring-app-classic.imageset/kuring_app_classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/appIcon/AppIcon-kuring-app-classic.imageset/kuring_app_classic.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/appIcon/AppIcon-kuring-app-sketch.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/appIcon/AppIcon-kuring-app-sketch.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/appIcon/AppIcon-kuring-app-sketch.imageset/kuring_app_sketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/appIcon/AppIcon-kuring-app-sketch.imageset/kuring_app_sketch.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/appIcon/AppIcon-kuring-app.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/appIcon/AppIcon-kuring-app.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/appIcon/AppIcon-kuring-app.imageset/kuring_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/appIcon/AppIcon-kuring-app.imageset/kuring_app.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/appIcon/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/appIcon/Contents.json -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/feedback.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/feedback.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/feedback.imageset/feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/feedback.imageset/feedback.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/feedback.imageset/feedback@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/feedback.imageset/feedback@2x.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/feedback.imageset/feedback@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/feedback.imageset/feedback@3x.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/Contents.json -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/chevron.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/chevron.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/chevron.imageset/chevron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/chevron.imageset/chevron.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/chevron.imageset/chevron@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/chevron.imageset/chevron@2x.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/chevron.imageset/chevron@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/chevron.imageset/chevron@3x.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_bell.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_bell.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_bell.imageset/icon_bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_bell.imageset/icon_bell.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_bell.imageset/notice@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_bell.imageset/notice@2x.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_bell.imageset/notice@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_bell.imageset/notice@3x.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_checkmark_circle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_checkmark_circle.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_checkmark_circle.imageset/icon_checkmark_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_checkmark_circle.imageset/icon_checkmark_circle.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_checkmark_circle.imageset/icon_checkmark_circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_checkmark_circle.imageset/icon_checkmark_circle@2x.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_checkmark_circle.imageset/icon_checkmark_circle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_checkmark_circle.imageset/icon_checkmark_circle@3x.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_external_link.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_external_link.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_external_link.imageset/icon_external_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_external_link.imageset/icon_external_link.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_external_link.imageset/icon_external_link@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_external_link.imageset/icon_external_link@2x.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_external_link.imageset/icon_external_link@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_external_link.imageset/icon_external_link@3x.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_feedback.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_feedback.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_feedback.imageset/icon_feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_feedback.imageset/icon_feedback.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_feedback.imageset/icon_feedback@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_feedback.imageset/icon_feedback@2x.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_feedback.imageset/icon_feedback@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_feedback.imageset/icon_feedback@3x.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_guard.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_guard.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_guard.imageset/icon_guard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_guard.imageset/icon_guard.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_guard.imageset/icon_guard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_guard.imageset/icon_guard@2x.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_guard.imageset/icon_guard@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_guard.imageset/icon_guard@3x.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_instagram.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_instagram.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_instagram.imageset/icon_instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_instagram.imageset/icon_instagram.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_instagram.imageset/icon_instagram@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_instagram.imageset/icon_instagram@2x.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_instagram.imageset/icon_instagram@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_instagram.imageset/icon_instagram@3x.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_opensource.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_opensource.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_opensource.imageset/icon_opensource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_opensource.imageset/icon_opensource.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_opensource.imageset/icon_opensource@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_opensource.imageset/icon_opensource@2x.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_opensource.imageset/icon_opensource@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_opensource.imageset/icon_opensource@3x.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_rocket.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_rocket.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_rocket.imageset/icon_app_version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_rocket.imageset/icon_app_version.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_rocket.imageset/icon_app_vserion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_rocket.imageset/icon_app_vserion@2x.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_rocket.imageset/icon_app_vserion@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_rocket.imageset/icon_app_vserion@3x.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_star.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_star.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_star.imageset/icon_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_star.imageset/icon_new.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_star.imageset/icon_new@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_star.imageset/icon_new@2x.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_star.imageset/icon_new@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_star.imageset/icon_new@3x.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_team.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_team.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_team.imageset/icon_team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_team.imageset/icon_team.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_team.imageset/icon_team@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_team.imageset/icon_team@2x.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_team.imageset/icon_team@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/icon_team.imageset/icon_team@3x.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/trash-2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/trash-2.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/trash-2.imageset/trash-2 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/trash-2.imageset/trash-2 1.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/trash-2.imageset/trash-2 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/trash-2.imageset/trash-2 2.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/trash-2.imageset/trash-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/trash-2.imageset/trash-2.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/user-x.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/user-x.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/user-x.imageset/user-x 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/user-x.imageset/user-x 1.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/user-x.imageset/user-x 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/user-x.imageset/user-x 2.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/user-x.imageset/user-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/user-x.imageset/user-x.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/user.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/user.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/user.imageset/user 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/user.imageset/user 1.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/user.imageset/user 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/user.imageset/user 2.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Resources/Resources.xcassets/setting/user.imageset/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Resources/Resources.xcassets/setting/user.imageset/user.png -------------------------------------------------------------------------------- /UIKit/SettingsUI/Sources/AppIconSelector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Sources/AppIconSelector.swift -------------------------------------------------------------------------------- /UIKit/SettingsUI/Sources/Bundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Sources/Bundle.swift -------------------------------------------------------------------------------- /UIKit/SettingsUI/Sources/FeedbackView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Sources/FeedbackView.swift -------------------------------------------------------------------------------- /UIKit/SettingsUI/Sources/InformationWebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Sources/InformationWebView.swift -------------------------------------------------------------------------------- /UIKit/SettingsUI/Sources/OpenSourceList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Sources/OpenSourceList.swift -------------------------------------------------------------------------------- /UIKit/SettingsUI/Sources/SettingList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Sources/SettingList.swift -------------------------------------------------------------------------------- /UIKit/SettingsUI/Sources/SettingsApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Sources/SettingsApp.swift -------------------------------------------------------------------------------- /UIKit/SettingsUI/Sources/WebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SettingsUI/Sources/WebView.swift -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Project.swift -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Resources/Symbols.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Resources/Symbols.xcassets/Contents.json -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Resources/Symbols.xcassets/bachelor.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Resources/Symbols.xcassets/bachelor.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Resources/Symbols.xcassets/bachelor.imageset/bachelor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Resources/Symbols.xcassets/bachelor.imageset/bachelor.png -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Resources/Symbols.xcassets/bachelor.imageset/bachelor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Resources/Symbols.xcassets/bachelor.imageset/bachelor@2x.png -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Resources/Symbols.xcassets/bachelor.imageset/bachelor@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Resources/Symbols.xcassets/bachelor.imageset/bachelor@3x.png -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Resources/Symbols.xcassets/employment.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Resources/Symbols.xcassets/employment.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Resources/Symbols.xcassets/employment.imageset/employment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Resources/Symbols.xcassets/employment.imageset/employment.png -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Resources/Symbols.xcassets/employment.imageset/employment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Resources/Symbols.xcassets/employment.imageset/employment@2x.png -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Resources/Symbols.xcassets/employment.imageset/employment@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Resources/Symbols.xcassets/employment.imageset/employment@3x.png -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Resources/Symbols.xcassets/industry_university.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Resources/Symbols.xcassets/industry_university.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Resources/Symbols.xcassets/industry_university.imageset/industry_university.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Resources/Symbols.xcassets/industry_university.imageset/industry_university.png -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Resources/Symbols.xcassets/industry_university.imageset/industry_university@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Resources/Symbols.xcassets/industry_university.imageset/industry_university@2x.png -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Resources/Symbols.xcassets/industry_university.imageset/industry_university@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Resources/Symbols.xcassets/industry_university.imageset/industry_university@3x.png -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Resources/Symbols.xcassets/library.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Resources/Symbols.xcassets/library.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Resources/Symbols.xcassets/library.imageset/student.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Resources/Symbols.xcassets/library.imageset/student.png -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Resources/Symbols.xcassets/library.imageset/student@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Resources/Symbols.xcassets/library.imageset/student@2x.png -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Resources/Symbols.xcassets/library.imageset/student@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Resources/Symbols.xcassets/library.imageset/student@3x.png -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Resources/Symbols.xcassets/national.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Resources/Symbols.xcassets/national.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Resources/Symbols.xcassets/national.imageset/national.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Resources/Symbols.xcassets/national.imageset/national.png -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Resources/Symbols.xcassets/national.imageset/national@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Resources/Symbols.xcassets/national.imageset/national@2x.png -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Resources/Symbols.xcassets/national.imageset/national@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Resources/Symbols.xcassets/national.imageset/national@3x.png -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Resources/Symbols.xcassets/normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Resources/Symbols.xcassets/normal.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Resources/Symbols.xcassets/normal.imageset/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Resources/Symbols.xcassets/normal.imageset/normal.png -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Resources/Symbols.xcassets/normal.imageset/normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Resources/Symbols.xcassets/normal.imageset/normal@2x.png -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Resources/Symbols.xcassets/normal.imageset/normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Resources/Symbols.xcassets/normal.imageset/normal@3x.png -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Resources/Symbols.xcassets/scholarship.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Resources/Symbols.xcassets/scholarship.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Resources/Symbols.xcassets/scholarship.imageset/scholarship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Resources/Symbols.xcassets/scholarship.imageset/scholarship.png -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Resources/Symbols.xcassets/scholarship.imageset/scholarship@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Resources/Symbols.xcassets/scholarship.imageset/scholarship@2x.png -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Resources/Symbols.xcassets/scholarship.imageset/scholarship@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Resources/Symbols.xcassets/scholarship.imageset/scholarship@3x.png -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Resources/Symbols.xcassets/student.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Resources/Symbols.xcassets/student.imageset/Contents.json -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Resources/Symbols.xcassets/student.imageset/library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Resources/Symbols.xcassets/student.imageset/library.png -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Resources/Symbols.xcassets/student.imageset/library@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Resources/Symbols.xcassets/student.imageset/library@2x.png -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Resources/Symbols.xcassets/student.imageset/library@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Resources/Symbols.xcassets/student.imageset/library@3x.png -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Sources/Bundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Sources/Bundle.swift -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Sources/SubscriptionApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Sources/SubscriptionApp.swift -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Sources/SubscriptionSegment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Sources/SubscriptionSegment.swift -------------------------------------------------------------------------------- /UIKit/SubscriptionUI/Sources/SubscriptionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/UIKit/SubscriptionUI/Sources/SubscriptionView.swift -------------------------------------------------------------------------------- /Workspace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/Workspace.swift -------------------------------------------------------------------------------- /XcodeSnippets/FeatureSnippet.codesnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/XcodeSnippets/FeatureSnippet.codesnippet -------------------------------------------------------------------------------- /XcodeSnippets/TestCodeSnippet.codesnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ku-ring/ios-app/HEAD/XcodeSnippets/TestCodeSnippet.codesnippet --------------------------------------------------------------------------------