├── .gitconfig ├── .githooks └── pre-commit ├── .github ├── ISSUE_TEMPLATE │ ├── ask.yml │ ├── bug.yml │ └── feature.yml ├── PULL_REQUEST_TEMPLATE.md ├── actions │ └── delete_branches │ │ ├── Dockerfile │ │ ├── action.yml │ │ ├── main.js │ │ ├── package-lock.json │ │ └── package.json └── workflows │ ├── AppStore.yml │ ├── AppStore │ ├── Decode.sh │ ├── Deploy.sh │ ├── Keychain.sh │ └── ReleasePR.sh │ ├── AutoAssign.yml │ ├── CI.yml │ ├── CleanupUploadBranches.yml │ ├── IssueToPRLabelSyncer.yml │ ├── SwiftLint.yml │ ├── TestFlight.yml │ └── TestFlight │ ├── BuildNumberIncreasePR.sh │ └── TestFlight.sh ├── .gitignore ├── .mise.toml ├── .swiftlint.yml ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Makefile ├── Package.resolved ├── Package.swift ├── Plugin ├── ConfigurationPlugin │ ├── Plugin.swift │ └── ProjectDescriptionHelpers │ │ ├── Configuration+Ext.swift │ │ ├── Path+XCConfig.swift │ │ └── ProjectDeployTarget.swift ├── DependencyPlugin │ ├── Plugin.swift │ └── ProjectDescriptionHelpers │ │ ├── Dependency+SPM.swift │ │ ├── ModulePaths.swift │ │ ├── PathExtension.swift │ │ └── TargetDependency+MicroFeatureTarget.swift ├── EnvironmentPlugin │ ├── Plugin.swift │ └── ProjectDescriptionHelpers │ │ └── ProjectEnvironment.swift └── TemplatePlugin │ ├── Plugin.swift │ └── Templates │ ├── Demo │ ├── Demo.swift │ ├── DemoResources.stencil │ └── DemoSources.stencil │ ├── Interface │ ├── Interface.stencil │ └── Interface.swift │ ├── Module │ ├── Module.swift │ ├── Project.stencil │ └── Sources.stencil │ ├── Sources │ ├── Sources.stencil │ └── Sources.swift │ ├── Testing │ ├── Testing.stencil │ └── Testing.swift │ ├── Tests │ ├── Tests.stencil │ └── Tests.swift │ └── UITests │ ├── UITests.stencil │ └── UITests.swift ├── Projects ├── App │ ├── Intents │ │ ├── MealPartTime.swift │ │ ├── MealPartTimeSelectionIntent.swift │ │ └── TodayWhatAppOpenIntent.swift │ ├── Project.swift │ ├── iOS-Widget │ │ ├── Resources │ │ │ └── Assets.xcassets │ │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── 1024.png │ │ │ │ └── Contents.json │ │ │ │ ├── BG.colorset │ │ │ │ └── Contents.json │ │ │ │ ├── CircularMeal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── meal-icon 1.svg │ │ │ │ ├── meal-icon 2.svg │ │ │ │ └── meal-icon.svg │ │ │ │ ├── Contents.json │ │ │ │ ├── DarkGray.colorset │ │ │ │ └── Contents.json │ │ │ │ ├── Gray.colorset │ │ │ │ └── Contents.json │ │ │ │ ├── LightGray.colorset │ │ │ │ └── Contents.json │ │ │ │ ├── MealControlCenter.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── rice_control_center.svg │ │ │ │ ├── Primary.colorset │ │ │ │ └── Contents.json │ │ │ │ ├── VeryLightGray.colorset │ │ │ │ └── Contents.json │ │ │ │ └── WidgetBackground.colorset │ │ │ │ └── Contents.json │ │ ├── Sources │ │ │ ├── DisplayMeal.intentdefinition │ │ │ ├── Meal │ │ │ │ ├── MealWidget.swift │ │ │ │ └── MealWidgetEntryView.swift │ │ │ ├── MealControlWidget │ │ │ │ └── MealControlWidget.swift │ │ │ ├── MealTimeTable │ │ │ │ ├── MealTimeTableWidget.swift │ │ │ │ └── MealTimeTableWidgetEntryView.swift │ │ │ ├── TimeTable │ │ │ │ ├── TimeTableWidget.swift │ │ │ │ └── TimeTableWidgetEntryView.swift │ │ │ ├── TimeTableControlWidget │ │ │ │ └── TimeTableControlWidget.swift │ │ │ └── TodayWhatWidget.swift │ │ └── Support │ │ │ ├── Info.plist │ │ │ └── TodayWhatWidget.entitlements │ ├── iOS │ │ ├── Resources │ │ │ ├── Assets.xcassets │ │ │ │ ├── AccentColor.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Allergy │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── beef.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── beef.svg │ │ │ │ │ ├── buckwheat.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── buckwheat.svg │ │ │ │ │ ├── chicken.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── chicken.svg │ │ │ │ │ ├── crab.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── crab.svg │ │ │ │ │ ├── mackerel.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── mackerel.svg │ │ │ │ │ ├── milk.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── milk.svg │ │ │ │ │ ├── peach.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── peach.svg │ │ │ │ │ ├── peanut.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── peanut.svg │ │ │ │ │ ├── pork.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── pork.svg │ │ │ │ │ ├── shellfish.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── shellfish 3.svg │ │ │ │ │ ├── shrimp.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── shrimp.svg │ │ │ │ │ ├── soybean.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── soybean.svg │ │ │ │ │ ├── squid.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── squid.svg │ │ │ │ │ ├── sulphite.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── sulphite.svg │ │ │ │ │ ├── tomato.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── tomato.svg │ │ │ │ │ ├── turbulence.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── turbulence.svg │ │ │ │ │ ├── walnut.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── walnut 3.svg │ │ │ │ │ └── wheat.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── wheat.svg │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Dark.png │ │ │ │ │ ├── Tinted.png │ │ │ │ │ └── today-watch-1024.png │ │ │ │ └── Contents.json │ │ │ ├── Font │ │ │ │ └── Fraunces9pt-Black.ttf │ │ │ ├── GoogleService-Info.plist.gpg │ │ │ └── PrivacyInfo.xcprivacy │ │ ├── Sources │ │ │ ├── Application │ │ │ │ ├── AppDelegate.swift │ │ │ │ └── TodayWhatApp.swift │ │ │ └── EventLog │ │ │ │ └── WidgetConfigEventLog.swift │ │ └── Support │ │ │ ├── Info.plist │ │ │ └── TodayWhat.entitlements │ ├── macOS-Widget │ │ ├── Resources │ │ │ └── Assets.xcassets │ │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ └── WidgetBackground.colorset │ │ │ │ └── Contents.json │ │ ├── Sources │ │ │ ├── DisplayMeal.intentdefinition │ │ │ ├── MealPartTime.swift │ │ │ ├── MealWidgetEntryView.swift │ │ │ ├── TimeTableWidgetEntryView.swift │ │ │ └── TodayWhatMacWidget.swift │ │ └── Support │ │ │ ├── Info.plist │ │ │ └── TodayWhatMacWidget.entitlements │ ├── macOS │ │ ├── Resources │ │ │ ├── Assets.xcassets │ │ │ │ ├── AccentColor.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Allergy │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── beef.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── beef 1.svg │ │ │ │ │ │ ├── beef 2.svg │ │ │ │ │ │ └── beef.svg │ │ │ │ │ ├── buckwheat.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── buckwheat 1.svg │ │ │ │ │ │ ├── buckwheat 2.svg │ │ │ │ │ │ └── buckwheat.svg │ │ │ │ │ ├── chicken.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── chicken 1.svg │ │ │ │ │ │ ├── chicken 2.svg │ │ │ │ │ │ └── chicken.svg │ │ │ │ │ ├── crab.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── crab 1.svg │ │ │ │ │ │ ├── crab 2.svg │ │ │ │ │ │ └── crab.svg │ │ │ │ │ ├── mackerel.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── mackerel 1.svg │ │ │ │ │ │ ├── mackerel 2.svg │ │ │ │ │ │ └── mackerel.svg │ │ │ │ │ ├── milk.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── milk 1.svg │ │ │ │ │ │ ├── milk 2.svg │ │ │ │ │ │ └── milk.svg │ │ │ │ │ ├── peach.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── peach 1.svg │ │ │ │ │ │ ├── peach 2.svg │ │ │ │ │ │ └── peach.svg │ │ │ │ │ ├── peanut.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── peanut 1.svg │ │ │ │ │ │ ├── peanut 2.svg │ │ │ │ │ │ └── peanut.svg │ │ │ │ │ ├── pork.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── pork 1.svg │ │ │ │ │ │ ├── pork 2.svg │ │ │ │ │ │ └── pork.svg │ │ │ │ │ ├── shellfish.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── shellfish 1.svg │ │ │ │ │ │ ├── shellfish 3.svg │ │ │ │ │ │ └── shellfish 4.svg │ │ │ │ │ ├── shrimp.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── shrimp 1.svg │ │ │ │ │ │ ├── shrimp 2.svg │ │ │ │ │ │ └── shrimp.svg │ │ │ │ │ ├── soybean.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── soybean 1.svg │ │ │ │ │ │ ├── soybean 2.svg │ │ │ │ │ │ └── soybean.svg │ │ │ │ │ ├── squid.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── squid 1.svg │ │ │ │ │ │ ├── squid 2.svg │ │ │ │ │ │ └── squid.svg │ │ │ │ │ ├── sulphite.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── sulphite 1.svg │ │ │ │ │ │ ├── sulphite 2.svg │ │ │ │ │ │ └── sulphite.svg │ │ │ │ │ ├── tomato.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── tomato 1.svg │ │ │ │ │ │ ├── tomato 2.svg │ │ │ │ │ │ └── tomato.svg │ │ │ │ │ ├── turbulence.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── turbulence 1.svg │ │ │ │ │ │ ├── turbulence 2.svg │ │ │ │ │ │ └── turbulence.svg │ │ │ │ │ ├── walnut.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── walnut 1.svg │ │ │ │ │ │ ├── walnut 3.svg │ │ │ │ │ │ └── walnut 4.svg │ │ │ │ │ └── wheat.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── wheat 1.svg │ │ │ │ │ │ ├── wheat 2.svg │ │ │ │ │ │ └── wheat.svg │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── today-mac-1024.png │ │ │ │ │ ├── today-mac-128.png │ │ │ │ │ ├── today-mac-16.png │ │ │ │ │ ├── today-mac-256 1.png │ │ │ │ │ ├── today-mac-256.png │ │ │ │ │ ├── today-mac-32 1.png │ │ │ │ │ ├── today-mac-32.png │ │ │ │ │ ├── today-mac-512 1.png │ │ │ │ │ ├── today-mac-512.png │ │ │ │ │ └── today-mac-64.png │ │ │ │ ├── BAG.imageset │ │ │ │ │ ├── BAG 3.svg │ │ │ │ │ ├── BAG 4.svg │ │ │ │ │ ├── BAG 5.svg │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── bag-light 1.svg │ │ │ │ │ ├── bag-light 2.svg │ │ │ │ │ └── bag-light.svg │ │ │ │ ├── Contents.json │ │ │ │ └── TodayWhat.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Group 18041.svg │ │ │ │ │ ├── Group 18042.svg │ │ │ │ │ └── Group 18043.svg │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ ├── en.lproj │ │ │ │ └── InfoPlist.strings │ │ │ └── ko.lproj │ │ │ │ └── InfoPlist.strings │ │ ├── Sources │ │ │ ├── Allergy │ │ │ │ ├── AllergyCore.swift │ │ │ │ └── AllergyView.swift │ │ │ ├── App │ │ │ │ ├── AppDelegate.swift │ │ │ │ └── main.swift │ │ │ ├── Content │ │ │ │ ├── ContentCore.swift │ │ │ │ ├── ContentView.swift │ │ │ │ └── DisplayInfoType.swift │ │ │ ├── Meal │ │ │ │ └── MealView.swift │ │ │ ├── Preview Content │ │ │ │ └── Preview Assets.xcassets │ │ │ │ │ └── Contents.json │ │ │ ├── Settings │ │ │ │ ├── SettingsCore.swift │ │ │ │ └── SettingsView.swift │ │ │ ├── TimeTable │ │ │ │ └── TimeTableView.swift │ │ │ └── Util │ │ │ │ ├── EventMonitor.swift │ │ │ │ └── PopoverEnvironment.swift │ │ └── Support │ │ │ ├── Info.plist │ │ │ └── TodayWhat_Mac_App.entitlements │ └── watchOS │ │ ├── Resources │ │ └── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ └── today-watch-1024.png │ │ │ ├── Contents.json │ │ │ ├── Main.colorset │ │ │ └── Contents.json │ │ │ └── Sub.colorset │ │ │ └── Contents.json │ │ ├── Sources │ │ ├── Manager │ │ │ └── WatchSessionManager.swift │ │ ├── Scenes │ │ │ ├── Main │ │ │ │ ├── MainView.swift │ │ │ │ ├── MainViewModel.swift │ │ │ │ └── PartSelectView.swift │ │ │ ├── Root │ │ │ │ └── RootView.swift │ │ │ ├── SceneFlow │ │ │ │ ├── SceneFlow.swift │ │ │ │ └── SceneFlowState.swift │ │ │ └── SettingView │ │ │ │ └── SettingView.swift │ │ └── TodayWhatWatchApp.swift │ │ └── Support │ │ └── Info.plist ├── Feature │ ├── AddWidgetFeature │ │ ├── Project.swift │ │ └── Sources │ │ │ ├── AddWidgetCore.swift │ │ │ ├── AddWidgetView.swift │ │ │ ├── Components │ │ │ ├── MealAndTimetableView.swift │ │ │ ├── MealView.swift │ │ │ └── TimetableView.swift │ │ │ ├── Constants │ │ │ ├── MealPartTime.swift │ │ │ └── WidgetSizeConstants.swift │ │ │ ├── EventLog │ │ │ └── ClickAddToWidgetTypeEventLog.swift │ │ │ └── WidgetReperesentation.swift │ ├── AllergySettingFeature │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── AllergySettingCore.swift │ │ │ ├── AllergySettingView.swift │ │ │ └── EventLog │ │ │ │ └── CompleteSettingAllergyEventLog.swift │ │ └── Tests │ │ │ └── AllergySettingFeatureTests.swift │ ├── BaseFeature │ │ ├── Project.swift │ │ └── Sources │ │ │ └── PageShowedEventLog.swift │ ├── MainFeature │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── Components │ │ │ │ ├── ReviewToast.swift │ │ │ │ └── SchoolInfoCardView.swift │ │ │ ├── DatePolicy.swift │ │ │ ├── Enum │ │ │ │ └── TabSelectionType.swift │ │ │ ├── EventLog │ │ │ │ ├── BellButtonClickedEventLog.swift │ │ │ │ ├── ClickDateTensePickerEventLog.swift │ │ │ │ ├── ClickReviewEventLog.swift │ │ │ │ ├── MealTabSelectedEventLog.swift │ │ │ │ ├── SelectDateTenseEventLog.swift │ │ │ │ ├── SettingButtonClickedEventLog.swift │ │ │ │ └── TimeTableTabSelectedEventLog.swift │ │ │ ├── MainCore.swift │ │ │ └── MainView.swift │ │ └── Tests │ │ │ └── MainFeatureTests.swift │ ├── MealFeature │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── Daily │ │ │ │ ├── MealCore.swift │ │ │ │ └── MealView.swift │ │ │ ├── EventLog │ │ │ │ ├── ShareMealEventLog.swift │ │ │ │ ├── ShareMealImageEventLog.swift │ │ │ │ └── TapTodayMealEventLog.swift │ │ │ └── Weekly │ │ │ │ ├── WeeklyMealCore.swift │ │ │ │ └── WeeklyMealView.swift │ │ └── Tests │ │ │ └── MealFeatureTests.swift │ ├── ModifyTimeTableFeature │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── EventLog │ │ │ │ └── CompleteModifyTimeTable.swift │ │ │ ├── ModifyTimeTableCore.swift │ │ │ └── ModifyTimeTableView.swift │ │ └── Tests │ │ │ └── ModifyTimeTableTests.swift │ ├── NoticeFeature │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── EventLog │ │ │ │ └── ClickNoticeItemEventLog.swift │ │ │ ├── NoticeCore.swift │ │ │ └── NoticeView.swift │ │ └── Tests │ │ │ └── NoticeTests.swift │ ├── RootFeature │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── RootCore.swift │ │ │ └── RootView.swift │ │ └── Tests │ │ │ └── RootTests.swift │ ├── SchoolMajorSheetFeature │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── SchoolMajorSheetCore.swift │ │ │ └── SchoolMajorSheetView.swift │ │ └── Tests │ │ │ └── SchoolMajorSheetTests.swift │ ├── SchoolSettingFeature │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── EventLog │ │ │ │ └── SchoolSettingStepCompleteEventLog.swift │ │ │ ├── SchoolSettingCore.swift │ │ │ └── SchoolSettingView.swift │ │ └── Tests │ │ │ └── SchoolSettingCoreTests.swift │ ├── SettingsFeature │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── Component │ │ │ │ └── SettingsBlockView.swift │ │ │ ├── EventLog │ │ │ │ ├── AllergySettingButtonClickedEventLog.swift │ │ │ │ ├── ClickAddToWidgetEventLog.swift │ │ │ │ ├── InquireButtonClickedEventLog.swift │ │ │ │ ├── InquireTypeSelectedEventLog.swift │ │ │ │ ├── IsOnModifiedTimeTableToggledEventLog.swift │ │ │ │ ├── IsSkipAfterDinnerToggledEventLog.swift │ │ │ │ ├── IsSkipWeekendToggledEventLog.swift │ │ │ │ ├── ModifyTimeTableButtonClickedEventLog.swift │ │ │ │ ├── SchoolSettingButtonClickedEventLog.swift │ │ │ │ └── TutorialButtonClickedEventLog.swift │ │ │ ├── SettingsCore.swift │ │ │ └── SettingsView.swift │ │ └── Tests │ │ │ └── SettingsFeatureTests.swift │ ├── SplashFeature │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── SplashCore.swift │ │ │ └── SplashView.swift │ │ └── Tests │ │ │ └── SplashFeatureTests.swift │ ├── TimeTableFeature │ │ ├── Project.swift │ │ ├── Sources │ │ │ ├── Daily │ │ │ │ ├── TimeTableCore.swift │ │ │ │ └── TimeTableView.swift │ │ │ └── Weekly │ │ │ │ ├── WeeklyTimeTableCore.swift │ │ │ │ └── WeeklyTimeTableView.swift │ │ └── Tests │ │ │ └── ScheduleFeatureTests.swift │ └── TutorialFeature │ │ ├── Demo │ │ ├── Resources │ │ │ └── LaunchScreen.storyboard │ │ └── Sources │ │ │ └── DemoApp.swift │ │ ├── Project.swift │ │ └── Sources │ │ ├── TutorialCore.swift │ │ ├── TutorialView.swift │ │ └── View │ │ └── TutorialListRow.swift ├── Shared │ ├── ComposableArchitectureWrapper │ │ ├── Project.swift │ │ └── Sources │ │ │ └── export.swift │ ├── ConstantUtil │ │ ├── Project.swift │ │ └── Sources │ │ │ ├── AppGroup.swift │ │ │ └── Consts.swift │ ├── DateUtil │ │ ├── Project.swift │ │ └── Sources │ │ │ └── DateUtil.swift │ ├── DeviceClient │ │ ├── Project.swift │ │ └── Sources │ │ │ └── DeviceClient.swift │ ├── DeviceUtil │ │ ├── Project.swift │ │ └── Sources │ │ │ └── Device.swift │ ├── Entity │ │ ├── Project.swift │ │ └── Sources │ │ │ ├── EmegencyNotice.swift │ │ │ ├── Local │ │ │ ├── AllergyLocalEntity.swift │ │ │ ├── MealLocalEntity.swift │ │ │ ├── ModifiedTimeTableLocalEntity.swift │ │ │ ├── SchoolMajorLocalEntity.swift │ │ │ └── TimeTableLocalEntity.swift │ │ │ ├── Meal.swift │ │ │ ├── Notice.swift │ │ │ ├── School.swift │ │ │ └── TimeTable.swift │ ├── EnumUtil │ │ ├── Project.swift │ │ └── Sources │ │ │ ├── AllergyType.swift │ │ │ ├── DisplayInfoPart.swift │ │ │ ├── MealType.swift │ │ │ ├── SchoolKind.swift │ │ │ ├── SchoolType.swift │ │ │ └── WeekdayType.swift │ ├── FeatureFlagClient │ │ ├── Project.swift │ │ └── Sources │ │ │ └── FeatureFlagClient.swift │ ├── FirebaseWrapper │ │ ├── Project.swift │ │ └── Sources │ │ │ └── FirebaseWrapper.swift │ ├── FoundationUtil │ │ ├── Project.swift │ │ └── Sources │ │ │ ├── Array+safe.swift │ │ │ ├── Collection+isNotEmpty.swift │ │ │ └── UserDefaults+app.swift │ ├── ITunesClient │ │ ├── Project.swift │ │ └── Sources │ │ │ └── ITunesClient.swift │ ├── KeychainClient │ │ ├── Project.swift │ │ ├── Sources │ │ │ └── KeychainClient.swift │ │ └── Tests │ │ │ └── KeychainClientTest.swift │ ├── LocalDatabaseClient │ │ ├── Project.swift │ │ └── Sources │ │ │ └── LocalDatabaseClient.swift │ ├── MealClient │ │ ├── Project.swift │ │ └── Sources │ │ │ ├── MealClient.swift │ │ │ └── SingleMealResponseDTO.swift │ ├── NeisClient │ │ ├── Project.swift │ │ └── Sources │ │ │ ├── NeisClient.swift │ │ │ └── TodayWhatError.swift │ ├── NoticeClient │ │ ├── Project.swift │ │ └── Sources │ │ │ └── NoticeClient.swift │ ├── SchoolClient │ │ ├── Project.swift │ │ └── Sources │ │ │ ├── SchoolClient.swift │ │ │ ├── SingleSchoolMajorResponseDTO.swift │ │ │ └── SingleSchoolResponseDTO.swift │ ├── SwiftUIUtil │ │ ├── Project.swift │ │ └── Sources │ │ │ ├── View+cornerRadius.swift │ │ │ ├── View+hideKeyboard.swift │ │ │ ├── View+if.swift │ │ │ └── View+onLoad.swift │ ├── TWLog │ │ ├── Project.swift │ │ └── Sources │ │ │ ├── EventLog │ │ │ ├── DefaultEventLog.swift │ │ │ └── EventLog.swift │ │ │ ├── TWLog.swift │ │ │ └── TWUserProperty.swift │ ├── TimeTableClient │ │ ├── Project.swift │ │ └── Sources │ │ │ ├── SingleTimeTableResponseDTO.swift │ │ │ └── TimeTableClient.swift │ ├── TutorialClient │ │ ├── Project.swift │ │ └── Sources │ │ │ ├── Entity │ │ │ └── TutorialEntity.swift │ │ │ └── TutorialClient.swift │ └── UserDefaultsClient │ │ ├── Project.swift │ │ └── Sources │ │ └── UserDefaultsClient.swift └── UserInterface │ └── DesignSystem │ ├── Project.swift │ ├── Resources │ ├── Colors.xcassets │ │ ├── Contents.json │ │ ├── DesignSystem │ │ │ ├── BackgroundMain.colorset │ │ │ │ └── Contents.json │ │ │ ├── BackgroundSecondary.colorset │ │ │ │ └── Contents.json │ │ │ ├── Black.colorset │ │ │ │ └── Contents.json │ │ │ ├── CardBackground.colorset │ │ │ │ └── Contents.json │ │ │ ├── CardBackgroundSecondary.colorset │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── LightBox.colorset │ │ │ │ └── Contents.json │ │ │ ├── TextPrimary.colorset │ │ │ │ └── Contents.json │ │ │ ├── TextSecondary.colorset │ │ │ │ └── Contents.json │ │ │ ├── UnselectedPrimary.colorset │ │ │ │ └── Contents.json │ │ │ ├── UnselectedSecondary.colorset │ │ │ │ └── Contents.json │ │ │ └── White.colorset │ │ │ │ └── Contents.json │ │ └── System │ │ │ ├── AbsoluteBlack.colorset │ │ │ └── Contents.json │ │ │ ├── AbsoluteWhite.colorset │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Point.colorset │ │ │ └── Contents.json │ │ │ └── Success.colorset │ │ │ └── Contents.json │ ├── Font │ │ ├── SUIT-Bold.otf │ │ └── SUIT-Medium.otf │ ├── Images.xcassets │ │ ├── Contents.json │ │ └── Images │ │ │ ├── Allergy.imageset │ │ │ ├── Contents.json │ │ │ └── Group 17982.svg │ │ │ ├── AllergySetting.imageset │ │ │ ├── AllergySetting.svg │ │ │ └── Contents.json │ │ │ ├── BellBadge.imageset │ │ │ ├── Contents.json │ │ │ ├── bell.badge-dark.svg │ │ │ └── bell.badge.svg │ │ │ ├── Book.imageset │ │ │ ├── Contents.json │ │ │ ├── book 3.svg │ │ │ └── book.svg │ │ │ ├── Calendar.imageset │ │ │ ├── Contents.json │ │ │ └── calendar.svg │ │ │ ├── ChevronRight.imageset │ │ │ ├── Contents.json │ │ │ └── chevron.right.svg │ │ │ ├── CircularMeal.imageset │ │ │ ├── Contents.json │ │ │ ├── meal-icon 1.svg │ │ │ ├── meal-icon 2.svg │ │ │ └── meal-icon.svg │ │ │ ├── Clock.imageset │ │ │ ├── Contents.json │ │ │ └── clock.svg │ │ │ ├── Consulting.imageset │ │ │ ├── Contents.json │ │ │ └── consulting.svg │ │ │ ├── Contents.json │ │ │ ├── Gear.imageset │ │ │ ├── Contents.json │ │ │ ├── Gear 1.svg │ │ │ └── Gear.svg │ │ │ ├── Meal.imageset │ │ │ ├── Contents.json │ │ │ ├── meal 3.svg │ │ │ └── meal.svg │ │ │ ├── School.imageset │ │ │ ├── Contents.json │ │ │ └── school.svg │ │ │ ├── SmallMeal.imageset │ │ │ ├── Contents.json │ │ │ └── SmallMeal.svg │ │ │ ├── TriangleDown.imageset │ │ │ ├── 24.svg │ │ │ └── Contents.json │ │ │ ├── Tutorial.imageset │ │ │ ├── Contents.json │ │ │ └── Tutorial.svg │ │ │ ├── WidgetSetting.imageset │ │ │ ├── Contents.json │ │ │ └── widget-setting.svg │ │ │ └── WritingPencil.imageset │ │ │ ├── Contents.json │ │ │ └── writing-pencil.svg │ └── Lottie │ │ └── add_home_screen_widget.json │ └── Sources │ ├── LabelledDivider │ └── LabelledDivider.swift │ ├── TWBottomSheet │ └── TWBottomSheet.swift │ ├── TWButton │ ├── TWButton.swift │ ├── TWButtonStyle.swift │ └── View+twBackButton.swift │ ├── TWColor │ └── Color+Ext.swift │ ├── TWFont │ ├── Font+tw.swift │ └── TWFontable.swift │ ├── TWImage │ └── TWImage.swift │ ├── TWRadioButton │ └── TWRadioButton.swift │ ├── TWTextField │ └── TWTextField.swift │ ├── TWToast │ └── TWToast.swift │ └── TopTabbar │ └── TopTabbar.swift ├── README.md ├── Scripts ├── .swiftformat ├── .swiftlint.yml ├── CodeSigning.swift ├── FirebaseCrashlytics.sh ├── GenerateFeature │ ├── Interface │ │ └── Interface.swift │ ├── Project.swift │ ├── Sources │ │ └── Feature.swift │ ├── Testing │ │ └── Testing.swift │ ├── Tests │ │ ├── .gitkeep │ │ └── TargetTest.swift │ └── UITests │ │ ├── .gitkeep │ │ └── TargetTest.swift ├── GenerateModule.swift ├── GenerateModuleDemoSource │ └── Demo │ │ ├── Resources │ │ └── LaunchScreen.storyboard │ │ └── Sources │ │ └── AppDelegate.swift ├── InitEnvironment.swift ├── LaunchAtLogin.sh ├── NewDependency.swift ├── Setup.sh └── SwiftLintRunScript.sh ├── Tuist ├── Config.swift ├── ProjectDescriptionHelpers │ ├── Action │ │ └── Action+Template.swift │ ├── GenerateEnvironment.swift │ ├── Internal │ │ └── Configurable.swift │ ├── Project │ │ ├── Project+makeModule.swift │ │ └── Project+module.swift │ ├── Scheme │ │ └── Scheme+Template.swift │ ├── SettingsDictionary │ │ ├── CodeSign.swift │ │ └── LDFlagsSettings.swift │ ├── SourceFiles │ │ └── SourceFiles+Template.swift │ └── Target │ │ ├── Target+MicroFeatures.swift │ │ └── TargetSpec.swift └── Templates │ ├── Demo │ ├── Demo.swift │ ├── DemoResources.stencil │ └── DemoSources.stencil │ ├── Interface │ ├── Interface.stencil │ └── Interface.swift │ ├── Module │ ├── Module.swift │ ├── Project.stencil │ └── Sources.stencil │ ├── Sources │ ├── Sources.stencil │ └── Sources.swift │ ├── Testing │ ├── Testing.stencil │ └── Testing.swift │ ├── Tests │ ├── Tests.stencil │ └── Tests.swift │ └── UITests │ ├── UITests.stencil │ └── UITests.swift ├── Workspace.swift ├── XCConfig.zip.gpg ├── XCConfig └── Shared.xcconfig ├── ci_scripts └── ci_post_clone.sh ├── fastlane ├── .env.default.gpg ├── AppStoreAPIKey.json.gpg ├── Appfile ├── Deliverfile ├── Fastfile ├── Matchfile ├── Pluginfile ├── README.md ├── metadata │ ├── copyright.txt │ ├── ko │ │ ├── apple_tv_privacy_policy.txt │ │ ├── description.txt │ │ ├── keywords.txt │ │ ├── marketing_url.txt │ │ ├── name.txt │ │ ├── privacy_url.txt │ │ ├── promotional_text.txt │ │ ├── release_notes.txt │ │ ├── subtitle.txt │ │ └── support_url.txt │ ├── primary_category.txt │ ├── primary_first_sub_category.txt │ ├── primary_second_sub_category.txt │ ├── review_information │ │ ├── demo_password.txt │ │ ├── demo_user.txt │ │ ├── email_address.txt │ │ ├── first_name.txt │ │ ├── last_name.txt │ │ ├── notes.txt │ │ └── phone_number.txt │ ├── secondary_category.txt │ ├── secondary_first_sub_category.txt │ └── secondary_second_sub_category.txt └── screenshots │ └── README.txt └── graph.png /.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/.gitconfig -------------------------------------------------------------------------------- /.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/.githooks/pre-commit -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ask.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/.github/ISSUE_TEMPLATE/ask.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/.github/ISSUE_TEMPLATE/feature.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/delete_branches/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/.github/actions/delete_branches/Dockerfile -------------------------------------------------------------------------------- /.github/actions/delete_branches/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/.github/actions/delete_branches/action.yml -------------------------------------------------------------------------------- /.github/actions/delete_branches/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/.github/actions/delete_branches/main.js -------------------------------------------------------------------------------- /.github/actions/delete_branches/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/.github/actions/delete_branches/package-lock.json -------------------------------------------------------------------------------- /.github/actions/delete_branches/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/.github/actions/delete_branches/package.json -------------------------------------------------------------------------------- /.github/workflows/AppStore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/.github/workflows/AppStore.yml -------------------------------------------------------------------------------- /.github/workflows/AppStore/Decode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/.github/workflows/AppStore/Decode.sh -------------------------------------------------------------------------------- /.github/workflows/AppStore/Deploy.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | fastlane $PLATFORM appstore_release version:$VERSION -------------------------------------------------------------------------------- /.github/workflows/AppStore/Keychain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/.github/workflows/AppStore/Keychain.sh -------------------------------------------------------------------------------- /.github/workflows/AppStore/ReleasePR.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/.github/workflows/AppStore/ReleasePR.sh -------------------------------------------------------------------------------- /.github/workflows/AutoAssign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/.github/workflows/AutoAssign.yml -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.github/workflows/CleanupUploadBranches.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/.github/workflows/CleanupUploadBranches.yml -------------------------------------------------------------------------------- /.github/workflows/IssueToPRLabelSyncer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/.github/workflows/IssueToPRLabelSyncer.yml -------------------------------------------------------------------------------- /.github/workflows/SwiftLint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/.github/workflows/SwiftLint.yml -------------------------------------------------------------------------------- /.github/workflows/TestFlight.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/.github/workflows/TestFlight.yml -------------------------------------------------------------------------------- /.github/workflows/TestFlight/BuildNumberIncreasePR.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/.github/workflows/TestFlight/BuildNumberIncreasePR.sh -------------------------------------------------------------------------------- /.github/workflows/TestFlight/TestFlight.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | fastlane $PLATFORM testflight_release version:$VERSION -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/.gitignore -------------------------------------------------------------------------------- /.mise.toml: -------------------------------------------------------------------------------- 1 | [tools] 2 | tuist = "4.41.0" 3 | -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Makefile -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Package.swift -------------------------------------------------------------------------------- /Plugin/ConfigurationPlugin/Plugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Plugin/ConfigurationPlugin/Plugin.swift -------------------------------------------------------------------------------- /Plugin/ConfigurationPlugin/ProjectDescriptionHelpers/Configuration+Ext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Plugin/ConfigurationPlugin/ProjectDescriptionHelpers/Configuration+Ext.swift -------------------------------------------------------------------------------- /Plugin/ConfigurationPlugin/ProjectDescriptionHelpers/Path+XCConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Plugin/ConfigurationPlugin/ProjectDescriptionHelpers/Path+XCConfig.swift -------------------------------------------------------------------------------- /Plugin/ConfigurationPlugin/ProjectDescriptionHelpers/ProjectDeployTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Plugin/ConfigurationPlugin/ProjectDescriptionHelpers/ProjectDeployTarget.swift -------------------------------------------------------------------------------- /Plugin/DependencyPlugin/Plugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Plugin/DependencyPlugin/Plugin.swift -------------------------------------------------------------------------------- /Plugin/DependencyPlugin/ProjectDescriptionHelpers/Dependency+SPM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Plugin/DependencyPlugin/ProjectDescriptionHelpers/Dependency+SPM.swift -------------------------------------------------------------------------------- /Plugin/DependencyPlugin/ProjectDescriptionHelpers/ModulePaths.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Plugin/DependencyPlugin/ProjectDescriptionHelpers/ModulePaths.swift -------------------------------------------------------------------------------- /Plugin/DependencyPlugin/ProjectDescriptionHelpers/PathExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Plugin/DependencyPlugin/ProjectDescriptionHelpers/PathExtension.swift -------------------------------------------------------------------------------- /Plugin/DependencyPlugin/ProjectDescriptionHelpers/TargetDependency+MicroFeatureTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Plugin/DependencyPlugin/ProjectDescriptionHelpers/TargetDependency+MicroFeatureTarget.swift -------------------------------------------------------------------------------- /Plugin/EnvironmentPlugin/Plugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Plugin/EnvironmentPlugin/Plugin.swift -------------------------------------------------------------------------------- /Plugin/EnvironmentPlugin/ProjectDescriptionHelpers/ProjectEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Plugin/EnvironmentPlugin/ProjectDescriptionHelpers/ProjectEnvironment.swift -------------------------------------------------------------------------------- /Plugin/TemplatePlugin/Plugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Plugin/TemplatePlugin/Plugin.swift -------------------------------------------------------------------------------- /Plugin/TemplatePlugin/Templates/Demo/Demo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Plugin/TemplatePlugin/Templates/Demo/Demo.swift -------------------------------------------------------------------------------- /Plugin/TemplatePlugin/Templates/Demo/DemoResources.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Plugin/TemplatePlugin/Templates/Demo/DemoResources.stencil -------------------------------------------------------------------------------- /Plugin/TemplatePlugin/Templates/Demo/DemoSources.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Plugin/TemplatePlugin/Templates/Demo/DemoSources.stencil -------------------------------------------------------------------------------- /Plugin/TemplatePlugin/Templates/Interface/Interface.stencil: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Plugin/TemplatePlugin/Templates/Interface/Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Plugin/TemplatePlugin/Templates/Interface/Interface.swift -------------------------------------------------------------------------------- /Plugin/TemplatePlugin/Templates/Module/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Plugin/TemplatePlugin/Templates/Module/Module.swift -------------------------------------------------------------------------------- /Plugin/TemplatePlugin/Templates/Module/Project.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Plugin/TemplatePlugin/Templates/Module/Project.stencil -------------------------------------------------------------------------------- /Plugin/TemplatePlugin/Templates/Module/Sources.stencil: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Plugin/TemplatePlugin/Templates/Sources/Sources.stencil: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Plugin/TemplatePlugin/Templates/Sources/Sources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Plugin/TemplatePlugin/Templates/Sources/Sources.swift -------------------------------------------------------------------------------- /Plugin/TemplatePlugin/Templates/Testing/Testing.stencil: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Plugin/TemplatePlugin/Templates/Testing/Testing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Plugin/TemplatePlugin/Templates/Testing/Testing.swift -------------------------------------------------------------------------------- /Plugin/TemplatePlugin/Templates/Tests/Tests.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Plugin/TemplatePlugin/Templates/Tests/Tests.stencil -------------------------------------------------------------------------------- /Plugin/TemplatePlugin/Templates/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Plugin/TemplatePlugin/Templates/Tests/Tests.swift -------------------------------------------------------------------------------- /Plugin/TemplatePlugin/Templates/UITests/UITests.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Plugin/TemplatePlugin/Templates/UITests/UITests.stencil -------------------------------------------------------------------------------- /Plugin/TemplatePlugin/Templates/UITests/UITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Plugin/TemplatePlugin/Templates/UITests/UITests.swift -------------------------------------------------------------------------------- /Projects/App/Intents/MealPartTime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/Intents/MealPartTime.swift -------------------------------------------------------------------------------- /Projects/App/Intents/MealPartTimeSelectionIntent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/Intents/MealPartTimeSelectionIntent.swift -------------------------------------------------------------------------------- /Projects/App/Intents/TodayWhatAppOpenIntent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/Intents/TodayWhatAppOpenIntent.swift -------------------------------------------------------------------------------- /Projects/App/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/Project.swift -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Resources/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS-Widget/Resources/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Resources/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS-Widget/Resources/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS-Widget/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Resources/Assets.xcassets/BG.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS-Widget/Resources/Assets.xcassets/BG.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Resources/Assets.xcassets/CircularMeal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS-Widget/Resources/Assets.xcassets/CircularMeal.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Resources/Assets.xcassets/CircularMeal.imageset/meal-icon 1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS-Widget/Resources/Assets.xcassets/CircularMeal.imageset/meal-icon 1.svg -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Resources/Assets.xcassets/CircularMeal.imageset/meal-icon 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS-Widget/Resources/Assets.xcassets/CircularMeal.imageset/meal-icon 2.svg -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Resources/Assets.xcassets/CircularMeal.imageset/meal-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS-Widget/Resources/Assets.xcassets/CircularMeal.imageset/meal-icon.svg -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS-Widget/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Resources/Assets.xcassets/DarkGray.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS-Widget/Resources/Assets.xcassets/DarkGray.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Resources/Assets.xcassets/Gray.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS-Widget/Resources/Assets.xcassets/Gray.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Resources/Assets.xcassets/LightGray.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS-Widget/Resources/Assets.xcassets/LightGray.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Resources/Assets.xcassets/MealControlCenter.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS-Widget/Resources/Assets.xcassets/MealControlCenter.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Resources/Assets.xcassets/MealControlCenter.imageset/rice_control_center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS-Widget/Resources/Assets.xcassets/MealControlCenter.imageset/rice_control_center.svg -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Resources/Assets.xcassets/Primary.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS-Widget/Resources/Assets.xcassets/Primary.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Resources/Assets.xcassets/VeryLightGray.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS-Widget/Resources/Assets.xcassets/VeryLightGray.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Resources/Assets.xcassets/WidgetBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS-Widget/Resources/Assets.xcassets/WidgetBackground.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Sources/DisplayMeal.intentdefinition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS-Widget/Sources/DisplayMeal.intentdefinition -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Sources/Meal/MealWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS-Widget/Sources/Meal/MealWidget.swift -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Sources/Meal/MealWidgetEntryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS-Widget/Sources/Meal/MealWidgetEntryView.swift -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Sources/MealControlWidget/MealControlWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS-Widget/Sources/MealControlWidget/MealControlWidget.swift -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Sources/MealTimeTable/MealTimeTableWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS-Widget/Sources/MealTimeTable/MealTimeTableWidget.swift -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Sources/MealTimeTable/MealTimeTableWidgetEntryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS-Widget/Sources/MealTimeTable/MealTimeTableWidgetEntryView.swift -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Sources/TimeTable/TimeTableWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS-Widget/Sources/TimeTable/TimeTableWidget.swift -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Sources/TimeTable/TimeTableWidgetEntryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS-Widget/Sources/TimeTable/TimeTableWidgetEntryView.swift -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Sources/TimeTableControlWidget/TimeTableControlWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS-Widget/Sources/TimeTableControlWidget/TimeTableControlWidget.swift -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Sources/TodayWhatWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS-Widget/Sources/TodayWhatWidget.swift -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Support/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS-Widget/Support/Info.plist -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Support/TodayWhatWidget.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS-Widget/Support/TodayWhatWidget.entitlements -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/beef.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/beef.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/beef.imageset/beef.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/beef.imageset/beef.svg -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/buckwheat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/buckwheat.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/buckwheat.imageset/buckwheat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/buckwheat.imageset/buckwheat.svg -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/chicken.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/chicken.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/chicken.imageset/chicken.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/chicken.imageset/chicken.svg -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/crab.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/crab.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/crab.imageset/crab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/crab.imageset/crab.svg -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/mackerel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/mackerel.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/mackerel.imageset/mackerel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/mackerel.imageset/mackerel.svg -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/milk.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/milk.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/milk.imageset/milk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/milk.imageset/milk.svg -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/peach.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/peach.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/peach.imageset/peach.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/peach.imageset/peach.svg -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/peanut.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/peanut.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/peanut.imageset/peanut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/peanut.imageset/peanut.svg -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/pork.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/pork.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/pork.imageset/pork.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/pork.imageset/pork.svg -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/shellfish.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/shellfish.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/shellfish.imageset/shellfish 3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/shellfish.imageset/shellfish 3.svg -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/shrimp.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/shrimp.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/shrimp.imageset/shrimp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/shrimp.imageset/shrimp.svg -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/soybean.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/soybean.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/soybean.imageset/soybean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/soybean.imageset/soybean.svg -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/squid.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/squid.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/squid.imageset/squid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/squid.imageset/squid.svg -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/sulphite.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/sulphite.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/sulphite.imageset/sulphite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/sulphite.imageset/sulphite.svg -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/tomato.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/tomato.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/tomato.imageset/tomato.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/tomato.imageset/tomato.svg -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/turbulence.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/turbulence.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/turbulence.imageset/turbulence.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/turbulence.imageset/turbulence.svg -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/walnut.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/walnut.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/walnut.imageset/walnut 3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/walnut.imageset/walnut 3.svg -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/wheat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/wheat.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Allergy/wheat.imageset/wheat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Allergy/wheat.imageset/wheat.svg -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/AppIcon.appiconset/Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/AppIcon.appiconset/Dark.png -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/AppIcon.appiconset/Tinted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/AppIcon.appiconset/Tinted.png -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/AppIcon.appiconset/today-watch-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/AppIcon.appiconset/today-watch-1024.png -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/Font/Fraunces9pt-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/Font/Fraunces9pt-Black.ttf -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/GoogleService-Info.plist.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/GoogleService-Info.plist.gpg -------------------------------------------------------------------------------- /Projects/App/iOS/Resources/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Resources/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /Projects/App/iOS/Sources/Application/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Sources/Application/AppDelegate.swift -------------------------------------------------------------------------------- /Projects/App/iOS/Sources/Application/TodayWhatApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Sources/Application/TodayWhatApp.swift -------------------------------------------------------------------------------- /Projects/App/iOS/Sources/EventLog/WidgetConfigEventLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Sources/EventLog/WidgetConfigEventLog.swift -------------------------------------------------------------------------------- /Projects/App/iOS/Support/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Support/Info.plist -------------------------------------------------------------------------------- /Projects/App/iOS/Support/TodayWhat.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/iOS/Support/TodayWhat.entitlements -------------------------------------------------------------------------------- /Projects/App/macOS-Widget/Resources/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS-Widget/Resources/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/App/macOS-Widget/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS-Widget/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Projects/App/macOS-Widget/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS-Widget/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Projects/App/macOS-Widget/Resources/Assets.xcassets/WidgetBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS-Widget/Resources/Assets.xcassets/WidgetBackground.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/App/macOS-Widget/Sources/DisplayMeal.intentdefinition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS-Widget/Sources/DisplayMeal.intentdefinition -------------------------------------------------------------------------------- /Projects/App/macOS-Widget/Sources/MealPartTime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS-Widget/Sources/MealPartTime.swift -------------------------------------------------------------------------------- /Projects/App/macOS-Widget/Sources/MealWidgetEntryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS-Widget/Sources/MealWidgetEntryView.swift -------------------------------------------------------------------------------- /Projects/App/macOS-Widget/Sources/TimeTableWidgetEntryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS-Widget/Sources/TimeTableWidgetEntryView.swift -------------------------------------------------------------------------------- /Projects/App/macOS-Widget/Sources/TodayWhatMacWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS-Widget/Sources/TodayWhatMacWidget.swift -------------------------------------------------------------------------------- /Projects/App/macOS-Widget/Support/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS-Widget/Support/Info.plist -------------------------------------------------------------------------------- /Projects/App/macOS-Widget/Support/TodayWhatMacWidget.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS-Widget/Support/TodayWhatMacWidget.entitlements -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/Contents.json -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/beef.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/beef.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/beef.imageset/beef 1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/beef.imageset/beef 1.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/beef.imageset/beef 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/beef.imageset/beef 2.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/beef.imageset/beef.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/beef.imageset/beef.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/buckwheat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/buckwheat.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/buckwheat.imageset/buckwheat 1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/buckwheat.imageset/buckwheat 1.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/buckwheat.imageset/buckwheat 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/buckwheat.imageset/buckwheat 2.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/buckwheat.imageset/buckwheat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/buckwheat.imageset/buckwheat.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/chicken.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/chicken.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/chicken.imageset/chicken 1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/chicken.imageset/chicken 1.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/chicken.imageset/chicken 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/chicken.imageset/chicken 2.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/chicken.imageset/chicken.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/chicken.imageset/chicken.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/crab.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/crab.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/crab.imageset/crab 1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/crab.imageset/crab 1.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/crab.imageset/crab 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/crab.imageset/crab 2.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/crab.imageset/crab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/crab.imageset/crab.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/mackerel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/mackerel.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/mackerel.imageset/mackerel 1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/mackerel.imageset/mackerel 1.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/mackerel.imageset/mackerel 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/mackerel.imageset/mackerel 2.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/mackerel.imageset/mackerel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/mackerel.imageset/mackerel.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/milk.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/milk.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/milk.imageset/milk 1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/milk.imageset/milk 1.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/milk.imageset/milk 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/milk.imageset/milk 2.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/milk.imageset/milk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/milk.imageset/milk.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/peach.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/peach.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/peach.imageset/peach 1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/peach.imageset/peach 1.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/peach.imageset/peach 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/peach.imageset/peach 2.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/peach.imageset/peach.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/peach.imageset/peach.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/peanut.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/peanut.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/peanut.imageset/peanut 1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/peanut.imageset/peanut 1.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/peanut.imageset/peanut 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/peanut.imageset/peanut 2.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/peanut.imageset/peanut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/peanut.imageset/peanut.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/pork.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/pork.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/pork.imageset/pork 1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/pork.imageset/pork 1.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/pork.imageset/pork 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/pork.imageset/pork 2.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/pork.imageset/pork.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/pork.imageset/pork.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/shellfish.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/shellfish.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/shellfish.imageset/shellfish 1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/shellfish.imageset/shellfish 1.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/shellfish.imageset/shellfish 3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/shellfish.imageset/shellfish 3.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/shellfish.imageset/shellfish 4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/shellfish.imageset/shellfish 4.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/shrimp.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/shrimp.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/shrimp.imageset/shrimp 1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/shrimp.imageset/shrimp 1.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/shrimp.imageset/shrimp 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/shrimp.imageset/shrimp 2.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/shrimp.imageset/shrimp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/shrimp.imageset/shrimp.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/soybean.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/soybean.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/soybean.imageset/soybean 1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/soybean.imageset/soybean 1.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/soybean.imageset/soybean 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/soybean.imageset/soybean 2.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/soybean.imageset/soybean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/soybean.imageset/soybean.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/squid.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/squid.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/squid.imageset/squid 1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/squid.imageset/squid 1.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/squid.imageset/squid 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/squid.imageset/squid 2.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/squid.imageset/squid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/squid.imageset/squid.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/sulphite.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/sulphite.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/sulphite.imageset/sulphite 1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/sulphite.imageset/sulphite 1.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/sulphite.imageset/sulphite 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/sulphite.imageset/sulphite 2.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/sulphite.imageset/sulphite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/sulphite.imageset/sulphite.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/tomato.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/tomato.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/tomato.imageset/tomato 1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/tomato.imageset/tomato 1.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/tomato.imageset/tomato 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/tomato.imageset/tomato 2.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/tomato.imageset/tomato.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/tomato.imageset/tomato.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/turbulence.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/turbulence.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/turbulence.imageset/turbulence 1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/turbulence.imageset/turbulence 1.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/turbulence.imageset/turbulence 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/turbulence.imageset/turbulence 2.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/turbulence.imageset/turbulence.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/turbulence.imageset/turbulence.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/walnut.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/walnut.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/walnut.imageset/walnut 1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/walnut.imageset/walnut 1.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/walnut.imageset/walnut 3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/walnut.imageset/walnut 3.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/walnut.imageset/walnut 4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/walnut.imageset/walnut 4.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/wheat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/wheat.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/wheat.imageset/wheat 1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/wheat.imageset/wheat 1.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/wheat.imageset/wheat 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/wheat.imageset/wheat 2.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Allergy/wheat.imageset/wheat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Allergy/wheat.imageset/wheat.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/AppIcon.appiconset/today-mac-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/AppIcon.appiconset/today-mac-1024.png -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/AppIcon.appiconset/today-mac-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/AppIcon.appiconset/today-mac-128.png -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/AppIcon.appiconset/today-mac-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/AppIcon.appiconset/today-mac-16.png -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/AppIcon.appiconset/today-mac-256 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/AppIcon.appiconset/today-mac-256 1.png -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/AppIcon.appiconset/today-mac-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/AppIcon.appiconset/today-mac-256.png -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/AppIcon.appiconset/today-mac-32 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/AppIcon.appiconset/today-mac-32 1.png -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/AppIcon.appiconset/today-mac-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/AppIcon.appiconset/today-mac-32.png -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/AppIcon.appiconset/today-mac-512 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/AppIcon.appiconset/today-mac-512 1.png -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/AppIcon.appiconset/today-mac-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/AppIcon.appiconset/today-mac-512.png -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/AppIcon.appiconset/today-mac-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/AppIcon.appiconset/today-mac-64.png -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/BAG.imageset/BAG 3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/BAG.imageset/BAG 3.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/BAG.imageset/BAG 4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/BAG.imageset/BAG 4.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/BAG.imageset/BAG 5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/BAG.imageset/BAG 5.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/BAG.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/BAG.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/BAG.imageset/bag-light 1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/BAG.imageset/bag-light 1.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/BAG.imageset/bag-light 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/BAG.imageset/bag-light 2.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/BAG.imageset/bag-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/BAG.imageset/bag-light.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/TodayWhat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/TodayWhat.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/TodayWhat.imageset/Group 18041.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/TodayWhat.imageset/Group 18041.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/TodayWhat.imageset/Group 18042.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/TodayWhat.imageset/Group 18042.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/Assets.xcassets/TodayWhat.imageset/Group 18043.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/Assets.xcassets/TodayWhat.imageset/Group 18043.svg -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Projects/App/macOS/Resources/ko.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | TodayWhat 4 | 5 | Created by 최형우 on 2023/04/20. 6 | 7 | */ 8 | 9 | TODAYWHAT = "오늘 뭐임"; 10 | -------------------------------------------------------------------------------- /Projects/App/macOS/Sources/Allergy/AllergyCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Sources/Allergy/AllergyCore.swift -------------------------------------------------------------------------------- /Projects/App/macOS/Sources/Allergy/AllergyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Sources/Allergy/AllergyView.swift -------------------------------------------------------------------------------- /Projects/App/macOS/Sources/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Sources/App/AppDelegate.swift -------------------------------------------------------------------------------- /Projects/App/macOS/Sources/App/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Sources/App/main.swift -------------------------------------------------------------------------------- /Projects/App/macOS/Sources/Content/ContentCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Sources/Content/ContentCore.swift -------------------------------------------------------------------------------- /Projects/App/macOS/Sources/Content/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Sources/Content/ContentView.swift -------------------------------------------------------------------------------- /Projects/App/macOS/Sources/Content/DisplayInfoType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Sources/Content/DisplayInfoType.swift -------------------------------------------------------------------------------- /Projects/App/macOS/Sources/Meal/MealView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Sources/Meal/MealView.swift -------------------------------------------------------------------------------- /Projects/App/macOS/Sources/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Sources/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Projects/App/macOS/Sources/Settings/SettingsCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Sources/Settings/SettingsCore.swift -------------------------------------------------------------------------------- /Projects/App/macOS/Sources/Settings/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Sources/Settings/SettingsView.swift -------------------------------------------------------------------------------- /Projects/App/macOS/Sources/TimeTable/TimeTableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Sources/TimeTable/TimeTableView.swift -------------------------------------------------------------------------------- /Projects/App/macOS/Sources/Util/EventMonitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Sources/Util/EventMonitor.swift -------------------------------------------------------------------------------- /Projects/App/macOS/Sources/Util/PopoverEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Sources/Util/PopoverEnvironment.swift -------------------------------------------------------------------------------- /Projects/App/macOS/Support/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Support/Info.plist -------------------------------------------------------------------------------- /Projects/App/macOS/Support/TodayWhat_Mac_App.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/macOS/Support/TodayWhat_Mac_App.entitlements -------------------------------------------------------------------------------- /Projects/App/watchOS/Resources/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/watchOS/Resources/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/App/watchOS/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/watchOS/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Projects/App/watchOS/Resources/Assets.xcassets/AppIcon.appiconset/today-watch-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/watchOS/Resources/Assets.xcassets/AppIcon.appiconset/today-watch-1024.png -------------------------------------------------------------------------------- /Projects/App/watchOS/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/watchOS/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Projects/App/watchOS/Resources/Assets.xcassets/Main.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/watchOS/Resources/Assets.xcassets/Main.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/App/watchOS/Resources/Assets.xcassets/Sub.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/watchOS/Resources/Assets.xcassets/Sub.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/App/watchOS/Sources/Manager/WatchSessionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/watchOS/Sources/Manager/WatchSessionManager.swift -------------------------------------------------------------------------------- /Projects/App/watchOS/Sources/Scenes/Main/MainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/watchOS/Sources/Scenes/Main/MainView.swift -------------------------------------------------------------------------------- /Projects/App/watchOS/Sources/Scenes/Main/MainViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/watchOS/Sources/Scenes/Main/MainViewModel.swift -------------------------------------------------------------------------------- /Projects/App/watchOS/Sources/Scenes/Main/PartSelectView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/watchOS/Sources/Scenes/Main/PartSelectView.swift -------------------------------------------------------------------------------- /Projects/App/watchOS/Sources/Scenes/Root/RootView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/watchOS/Sources/Scenes/Root/RootView.swift -------------------------------------------------------------------------------- /Projects/App/watchOS/Sources/Scenes/SceneFlow/SceneFlow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/watchOS/Sources/Scenes/SceneFlow/SceneFlow.swift -------------------------------------------------------------------------------- /Projects/App/watchOS/Sources/Scenes/SceneFlow/SceneFlowState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/watchOS/Sources/Scenes/SceneFlow/SceneFlowState.swift -------------------------------------------------------------------------------- /Projects/App/watchOS/Sources/Scenes/SettingView/SettingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/watchOS/Sources/Scenes/SettingView/SettingView.swift -------------------------------------------------------------------------------- /Projects/App/watchOS/Sources/TodayWhatWatchApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/watchOS/Sources/TodayWhatWatchApp.swift -------------------------------------------------------------------------------- /Projects/App/watchOS/Support/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/App/watchOS/Support/Info.plist -------------------------------------------------------------------------------- /Projects/Feature/AddWidgetFeature/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/AddWidgetFeature/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/AddWidgetFeature/Sources/AddWidgetCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/AddWidgetFeature/Sources/AddWidgetCore.swift -------------------------------------------------------------------------------- /Projects/Feature/AddWidgetFeature/Sources/AddWidgetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/AddWidgetFeature/Sources/AddWidgetView.swift -------------------------------------------------------------------------------- /Projects/Feature/AddWidgetFeature/Sources/Components/MealAndTimetableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/AddWidgetFeature/Sources/Components/MealAndTimetableView.swift -------------------------------------------------------------------------------- /Projects/Feature/AddWidgetFeature/Sources/Components/MealView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/AddWidgetFeature/Sources/Components/MealView.swift -------------------------------------------------------------------------------- /Projects/Feature/AddWidgetFeature/Sources/Components/TimetableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/AddWidgetFeature/Sources/Components/TimetableView.swift -------------------------------------------------------------------------------- /Projects/Feature/AddWidgetFeature/Sources/Constants/MealPartTime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/AddWidgetFeature/Sources/Constants/MealPartTime.swift -------------------------------------------------------------------------------- /Projects/Feature/AddWidgetFeature/Sources/Constants/WidgetSizeConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/AddWidgetFeature/Sources/Constants/WidgetSizeConstants.swift -------------------------------------------------------------------------------- /Projects/Feature/AddWidgetFeature/Sources/EventLog/ClickAddToWidgetTypeEventLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/AddWidgetFeature/Sources/EventLog/ClickAddToWidgetTypeEventLog.swift -------------------------------------------------------------------------------- /Projects/Feature/AddWidgetFeature/Sources/WidgetReperesentation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/AddWidgetFeature/Sources/WidgetReperesentation.swift -------------------------------------------------------------------------------- /Projects/Feature/AllergySettingFeature/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/AllergySettingFeature/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/AllergySettingFeature/Sources/AllergySettingCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/AllergySettingFeature/Sources/AllergySettingCore.swift -------------------------------------------------------------------------------- /Projects/Feature/AllergySettingFeature/Sources/AllergySettingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/AllergySettingFeature/Sources/AllergySettingView.swift -------------------------------------------------------------------------------- /Projects/Feature/AllergySettingFeature/Sources/EventLog/CompleteSettingAllergyEventLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/AllergySettingFeature/Sources/EventLog/CompleteSettingAllergyEventLog.swift -------------------------------------------------------------------------------- /Projects/Feature/AllergySettingFeature/Tests/AllergySettingFeatureTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/AllergySettingFeature/Tests/AllergySettingFeatureTests.swift -------------------------------------------------------------------------------- /Projects/Feature/BaseFeature/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/BaseFeature/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/BaseFeature/Sources/PageShowedEventLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/BaseFeature/Sources/PageShowedEventLog.swift -------------------------------------------------------------------------------- /Projects/Feature/MainFeature/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/MainFeature/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/MainFeature/Sources/Components/ReviewToast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/MainFeature/Sources/Components/ReviewToast.swift -------------------------------------------------------------------------------- /Projects/Feature/MainFeature/Sources/Components/SchoolInfoCardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/MainFeature/Sources/Components/SchoolInfoCardView.swift -------------------------------------------------------------------------------- /Projects/Feature/MainFeature/Sources/DatePolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/MainFeature/Sources/DatePolicy.swift -------------------------------------------------------------------------------- /Projects/Feature/MainFeature/Sources/Enum/TabSelectionType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/MainFeature/Sources/Enum/TabSelectionType.swift -------------------------------------------------------------------------------- /Projects/Feature/MainFeature/Sources/EventLog/BellButtonClickedEventLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/MainFeature/Sources/EventLog/BellButtonClickedEventLog.swift -------------------------------------------------------------------------------- /Projects/Feature/MainFeature/Sources/EventLog/ClickDateTensePickerEventLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/MainFeature/Sources/EventLog/ClickDateTensePickerEventLog.swift -------------------------------------------------------------------------------- /Projects/Feature/MainFeature/Sources/EventLog/ClickReviewEventLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/MainFeature/Sources/EventLog/ClickReviewEventLog.swift -------------------------------------------------------------------------------- /Projects/Feature/MainFeature/Sources/EventLog/MealTabSelectedEventLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/MainFeature/Sources/EventLog/MealTabSelectedEventLog.swift -------------------------------------------------------------------------------- /Projects/Feature/MainFeature/Sources/EventLog/SelectDateTenseEventLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/MainFeature/Sources/EventLog/SelectDateTenseEventLog.swift -------------------------------------------------------------------------------- /Projects/Feature/MainFeature/Sources/EventLog/SettingButtonClickedEventLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/MainFeature/Sources/EventLog/SettingButtonClickedEventLog.swift -------------------------------------------------------------------------------- /Projects/Feature/MainFeature/Sources/EventLog/TimeTableTabSelectedEventLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/MainFeature/Sources/EventLog/TimeTableTabSelectedEventLog.swift -------------------------------------------------------------------------------- /Projects/Feature/MainFeature/Sources/MainCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/MainFeature/Sources/MainCore.swift -------------------------------------------------------------------------------- /Projects/Feature/MainFeature/Sources/MainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/MainFeature/Sources/MainView.swift -------------------------------------------------------------------------------- /Projects/Feature/MainFeature/Tests/MainFeatureTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/MainFeature/Tests/MainFeatureTests.swift -------------------------------------------------------------------------------- /Projects/Feature/MealFeature/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/MealFeature/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/MealFeature/Sources/Daily/MealCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/MealFeature/Sources/Daily/MealCore.swift -------------------------------------------------------------------------------- /Projects/Feature/MealFeature/Sources/Daily/MealView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/MealFeature/Sources/Daily/MealView.swift -------------------------------------------------------------------------------- /Projects/Feature/MealFeature/Sources/EventLog/ShareMealEventLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/MealFeature/Sources/EventLog/ShareMealEventLog.swift -------------------------------------------------------------------------------- /Projects/Feature/MealFeature/Sources/EventLog/ShareMealImageEventLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/MealFeature/Sources/EventLog/ShareMealImageEventLog.swift -------------------------------------------------------------------------------- /Projects/Feature/MealFeature/Sources/EventLog/TapTodayMealEventLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/MealFeature/Sources/EventLog/TapTodayMealEventLog.swift -------------------------------------------------------------------------------- /Projects/Feature/MealFeature/Sources/Weekly/WeeklyMealCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/MealFeature/Sources/Weekly/WeeklyMealCore.swift -------------------------------------------------------------------------------- /Projects/Feature/MealFeature/Sources/Weekly/WeeklyMealView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/MealFeature/Sources/Weekly/WeeklyMealView.swift -------------------------------------------------------------------------------- /Projects/Feature/MealFeature/Tests/MealFeatureTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/MealFeature/Tests/MealFeatureTests.swift -------------------------------------------------------------------------------- /Projects/Feature/ModifyTimeTableFeature/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/ModifyTimeTableFeature/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/ModifyTimeTableFeature/Sources/EventLog/CompleteModifyTimeTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/ModifyTimeTableFeature/Sources/EventLog/CompleteModifyTimeTable.swift -------------------------------------------------------------------------------- /Projects/Feature/ModifyTimeTableFeature/Sources/ModifyTimeTableCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/ModifyTimeTableFeature/Sources/ModifyTimeTableCore.swift -------------------------------------------------------------------------------- /Projects/Feature/ModifyTimeTableFeature/Sources/ModifyTimeTableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/ModifyTimeTableFeature/Sources/ModifyTimeTableView.swift -------------------------------------------------------------------------------- /Projects/Feature/ModifyTimeTableFeature/Tests/ModifyTimeTableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/ModifyTimeTableFeature/Tests/ModifyTimeTableTests.swift -------------------------------------------------------------------------------- /Projects/Feature/NoticeFeature/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/NoticeFeature/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/NoticeFeature/Sources/EventLog/ClickNoticeItemEventLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/NoticeFeature/Sources/EventLog/ClickNoticeItemEventLog.swift -------------------------------------------------------------------------------- /Projects/Feature/NoticeFeature/Sources/NoticeCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/NoticeFeature/Sources/NoticeCore.swift -------------------------------------------------------------------------------- /Projects/Feature/NoticeFeature/Sources/NoticeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/NoticeFeature/Sources/NoticeView.swift -------------------------------------------------------------------------------- /Projects/Feature/NoticeFeature/Tests/NoticeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/NoticeFeature/Tests/NoticeTests.swift -------------------------------------------------------------------------------- /Projects/Feature/RootFeature/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/RootFeature/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/RootFeature/Sources/RootCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/RootFeature/Sources/RootCore.swift -------------------------------------------------------------------------------- /Projects/Feature/RootFeature/Sources/RootView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/RootFeature/Sources/RootView.swift -------------------------------------------------------------------------------- /Projects/Feature/RootFeature/Tests/RootTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/RootFeature/Tests/RootTests.swift -------------------------------------------------------------------------------- /Projects/Feature/SchoolMajorSheetFeature/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/SchoolMajorSheetFeature/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/SchoolMajorSheetFeature/Sources/SchoolMajorSheetCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/SchoolMajorSheetFeature/Sources/SchoolMajorSheetCore.swift -------------------------------------------------------------------------------- /Projects/Feature/SchoolMajorSheetFeature/Sources/SchoolMajorSheetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/SchoolMajorSheetFeature/Sources/SchoolMajorSheetView.swift -------------------------------------------------------------------------------- /Projects/Feature/SchoolMajorSheetFeature/Tests/SchoolMajorSheetTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/SchoolMajorSheetFeature/Tests/SchoolMajorSheetTests.swift -------------------------------------------------------------------------------- /Projects/Feature/SchoolSettingFeature/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/SchoolSettingFeature/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/SchoolSettingFeature/Sources/EventLog/SchoolSettingStepCompleteEventLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/SchoolSettingFeature/Sources/EventLog/SchoolSettingStepCompleteEventLog.swift -------------------------------------------------------------------------------- /Projects/Feature/SchoolSettingFeature/Sources/SchoolSettingCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/SchoolSettingFeature/Sources/SchoolSettingCore.swift -------------------------------------------------------------------------------- /Projects/Feature/SchoolSettingFeature/Sources/SchoolSettingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/SchoolSettingFeature/Sources/SchoolSettingView.swift -------------------------------------------------------------------------------- /Projects/Feature/SchoolSettingFeature/Tests/SchoolSettingCoreTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/SchoolSettingFeature/Tests/SchoolSettingCoreTests.swift -------------------------------------------------------------------------------- /Projects/Feature/SettingsFeature/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/SettingsFeature/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/SettingsFeature/Sources/Component/SettingsBlockView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/SettingsFeature/Sources/Component/SettingsBlockView.swift -------------------------------------------------------------------------------- /Projects/Feature/SettingsFeature/Sources/EventLog/AllergySettingButtonClickedEventLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/SettingsFeature/Sources/EventLog/AllergySettingButtonClickedEventLog.swift -------------------------------------------------------------------------------- /Projects/Feature/SettingsFeature/Sources/EventLog/ClickAddToWidgetEventLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/SettingsFeature/Sources/EventLog/ClickAddToWidgetEventLog.swift -------------------------------------------------------------------------------- /Projects/Feature/SettingsFeature/Sources/EventLog/InquireButtonClickedEventLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/SettingsFeature/Sources/EventLog/InquireButtonClickedEventLog.swift -------------------------------------------------------------------------------- /Projects/Feature/SettingsFeature/Sources/EventLog/InquireTypeSelectedEventLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/SettingsFeature/Sources/EventLog/InquireTypeSelectedEventLog.swift -------------------------------------------------------------------------------- /Projects/Feature/SettingsFeature/Sources/EventLog/IsOnModifiedTimeTableToggledEventLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/SettingsFeature/Sources/EventLog/IsOnModifiedTimeTableToggledEventLog.swift -------------------------------------------------------------------------------- /Projects/Feature/SettingsFeature/Sources/EventLog/IsSkipAfterDinnerToggledEventLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/SettingsFeature/Sources/EventLog/IsSkipAfterDinnerToggledEventLog.swift -------------------------------------------------------------------------------- /Projects/Feature/SettingsFeature/Sources/EventLog/IsSkipWeekendToggledEventLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/SettingsFeature/Sources/EventLog/IsSkipWeekendToggledEventLog.swift -------------------------------------------------------------------------------- /Projects/Feature/SettingsFeature/Sources/EventLog/ModifyTimeTableButtonClickedEventLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/SettingsFeature/Sources/EventLog/ModifyTimeTableButtonClickedEventLog.swift -------------------------------------------------------------------------------- /Projects/Feature/SettingsFeature/Sources/EventLog/SchoolSettingButtonClickedEventLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/SettingsFeature/Sources/EventLog/SchoolSettingButtonClickedEventLog.swift -------------------------------------------------------------------------------- /Projects/Feature/SettingsFeature/Sources/EventLog/TutorialButtonClickedEventLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/SettingsFeature/Sources/EventLog/TutorialButtonClickedEventLog.swift -------------------------------------------------------------------------------- /Projects/Feature/SettingsFeature/Sources/SettingsCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/SettingsFeature/Sources/SettingsCore.swift -------------------------------------------------------------------------------- /Projects/Feature/SettingsFeature/Sources/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/SettingsFeature/Sources/SettingsView.swift -------------------------------------------------------------------------------- /Projects/Feature/SettingsFeature/Tests/SettingsFeatureTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/SettingsFeature/Tests/SettingsFeatureTests.swift -------------------------------------------------------------------------------- /Projects/Feature/SplashFeature/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/SplashFeature/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/SplashFeature/Sources/SplashCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/SplashFeature/Sources/SplashCore.swift -------------------------------------------------------------------------------- /Projects/Feature/SplashFeature/Sources/SplashView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/SplashFeature/Sources/SplashView.swift -------------------------------------------------------------------------------- /Projects/Feature/SplashFeature/Tests/SplashFeatureTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/SplashFeature/Tests/SplashFeatureTests.swift -------------------------------------------------------------------------------- /Projects/Feature/TimeTableFeature/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/TimeTableFeature/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/TimeTableFeature/Sources/Daily/TimeTableCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/TimeTableFeature/Sources/Daily/TimeTableCore.swift -------------------------------------------------------------------------------- /Projects/Feature/TimeTableFeature/Sources/Daily/TimeTableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/TimeTableFeature/Sources/Daily/TimeTableView.swift -------------------------------------------------------------------------------- /Projects/Feature/TimeTableFeature/Sources/Weekly/WeeklyTimeTableCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/TimeTableFeature/Sources/Weekly/WeeklyTimeTableCore.swift -------------------------------------------------------------------------------- /Projects/Feature/TimeTableFeature/Sources/Weekly/WeeklyTimeTableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/TimeTableFeature/Sources/Weekly/WeeklyTimeTableView.swift -------------------------------------------------------------------------------- /Projects/Feature/TimeTableFeature/Tests/ScheduleFeatureTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/TimeTableFeature/Tests/ScheduleFeatureTests.swift -------------------------------------------------------------------------------- /Projects/Feature/TutorialFeature/Demo/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/TutorialFeature/Demo/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Projects/Feature/TutorialFeature/Demo/Sources/DemoApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/TutorialFeature/Demo/Sources/DemoApp.swift -------------------------------------------------------------------------------- /Projects/Feature/TutorialFeature/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/TutorialFeature/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/TutorialFeature/Sources/TutorialCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/TutorialFeature/Sources/TutorialCore.swift -------------------------------------------------------------------------------- /Projects/Feature/TutorialFeature/Sources/TutorialView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/TutorialFeature/Sources/TutorialView.swift -------------------------------------------------------------------------------- /Projects/Feature/TutorialFeature/Sources/View/TutorialListRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Feature/TutorialFeature/Sources/View/TutorialListRow.swift -------------------------------------------------------------------------------- /Projects/Shared/ComposableArchitectureWrapper/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/ComposableArchitectureWrapper/Project.swift -------------------------------------------------------------------------------- /Projects/Shared/ComposableArchitectureWrapper/Sources/export.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/ComposableArchitectureWrapper/Sources/export.swift -------------------------------------------------------------------------------- /Projects/Shared/ConstantUtil/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/ConstantUtil/Project.swift -------------------------------------------------------------------------------- /Projects/Shared/ConstantUtil/Sources/AppGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/ConstantUtil/Sources/AppGroup.swift -------------------------------------------------------------------------------- /Projects/Shared/ConstantUtil/Sources/Consts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/ConstantUtil/Sources/Consts.swift -------------------------------------------------------------------------------- /Projects/Shared/DateUtil/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/DateUtil/Project.swift -------------------------------------------------------------------------------- /Projects/Shared/DateUtil/Sources/DateUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/DateUtil/Sources/DateUtil.swift -------------------------------------------------------------------------------- /Projects/Shared/DeviceClient/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/DeviceClient/Project.swift -------------------------------------------------------------------------------- /Projects/Shared/DeviceClient/Sources/DeviceClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/DeviceClient/Sources/DeviceClient.swift -------------------------------------------------------------------------------- /Projects/Shared/DeviceUtil/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/DeviceUtil/Project.swift -------------------------------------------------------------------------------- /Projects/Shared/DeviceUtil/Sources/Device.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/DeviceUtil/Sources/Device.swift -------------------------------------------------------------------------------- /Projects/Shared/Entity/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/Entity/Project.swift -------------------------------------------------------------------------------- /Projects/Shared/Entity/Sources/EmegencyNotice.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/Entity/Sources/EmegencyNotice.swift -------------------------------------------------------------------------------- /Projects/Shared/Entity/Sources/Local/AllergyLocalEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/Entity/Sources/Local/AllergyLocalEntity.swift -------------------------------------------------------------------------------- /Projects/Shared/Entity/Sources/Local/MealLocalEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/Entity/Sources/Local/MealLocalEntity.swift -------------------------------------------------------------------------------- /Projects/Shared/Entity/Sources/Local/ModifiedTimeTableLocalEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/Entity/Sources/Local/ModifiedTimeTableLocalEntity.swift -------------------------------------------------------------------------------- /Projects/Shared/Entity/Sources/Local/SchoolMajorLocalEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/Entity/Sources/Local/SchoolMajorLocalEntity.swift -------------------------------------------------------------------------------- /Projects/Shared/Entity/Sources/Local/TimeTableLocalEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/Entity/Sources/Local/TimeTableLocalEntity.swift -------------------------------------------------------------------------------- /Projects/Shared/Entity/Sources/Meal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/Entity/Sources/Meal.swift -------------------------------------------------------------------------------- /Projects/Shared/Entity/Sources/Notice.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/Entity/Sources/Notice.swift -------------------------------------------------------------------------------- /Projects/Shared/Entity/Sources/School.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/Entity/Sources/School.swift -------------------------------------------------------------------------------- /Projects/Shared/Entity/Sources/TimeTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/Entity/Sources/TimeTable.swift -------------------------------------------------------------------------------- /Projects/Shared/EnumUtil/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/EnumUtil/Project.swift -------------------------------------------------------------------------------- /Projects/Shared/EnumUtil/Sources/AllergyType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/EnumUtil/Sources/AllergyType.swift -------------------------------------------------------------------------------- /Projects/Shared/EnumUtil/Sources/DisplayInfoPart.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/EnumUtil/Sources/DisplayInfoPart.swift -------------------------------------------------------------------------------- /Projects/Shared/EnumUtil/Sources/MealType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/EnumUtil/Sources/MealType.swift -------------------------------------------------------------------------------- /Projects/Shared/EnumUtil/Sources/SchoolKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/EnumUtil/Sources/SchoolKind.swift -------------------------------------------------------------------------------- /Projects/Shared/EnumUtil/Sources/SchoolType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/EnumUtil/Sources/SchoolType.swift -------------------------------------------------------------------------------- /Projects/Shared/EnumUtil/Sources/WeekdayType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/EnumUtil/Sources/WeekdayType.swift -------------------------------------------------------------------------------- /Projects/Shared/FeatureFlagClient/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/FeatureFlagClient/Project.swift -------------------------------------------------------------------------------- /Projects/Shared/FeatureFlagClient/Sources/FeatureFlagClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/FeatureFlagClient/Sources/FeatureFlagClient.swift -------------------------------------------------------------------------------- /Projects/Shared/FirebaseWrapper/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/FirebaseWrapper/Project.swift -------------------------------------------------------------------------------- /Projects/Shared/FirebaseWrapper/Sources/FirebaseWrapper.swift: -------------------------------------------------------------------------------- 1 | // 2 | -------------------------------------------------------------------------------- /Projects/Shared/FoundationUtil/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/FoundationUtil/Project.swift -------------------------------------------------------------------------------- /Projects/Shared/FoundationUtil/Sources/Array+safe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/FoundationUtil/Sources/Array+safe.swift -------------------------------------------------------------------------------- /Projects/Shared/FoundationUtil/Sources/Collection+isNotEmpty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/FoundationUtil/Sources/Collection+isNotEmpty.swift -------------------------------------------------------------------------------- /Projects/Shared/FoundationUtil/Sources/UserDefaults+app.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/FoundationUtil/Sources/UserDefaults+app.swift -------------------------------------------------------------------------------- /Projects/Shared/ITunesClient/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/ITunesClient/Project.swift -------------------------------------------------------------------------------- /Projects/Shared/ITunesClient/Sources/ITunesClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/ITunesClient/Sources/ITunesClient.swift -------------------------------------------------------------------------------- /Projects/Shared/KeychainClient/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/KeychainClient/Project.swift -------------------------------------------------------------------------------- /Projects/Shared/KeychainClient/Sources/KeychainClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/KeychainClient/Sources/KeychainClient.swift -------------------------------------------------------------------------------- /Projects/Shared/KeychainClient/Tests/KeychainClientTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/KeychainClient/Tests/KeychainClientTest.swift -------------------------------------------------------------------------------- /Projects/Shared/LocalDatabaseClient/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/LocalDatabaseClient/Project.swift -------------------------------------------------------------------------------- /Projects/Shared/LocalDatabaseClient/Sources/LocalDatabaseClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/LocalDatabaseClient/Sources/LocalDatabaseClient.swift -------------------------------------------------------------------------------- /Projects/Shared/MealClient/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/MealClient/Project.swift -------------------------------------------------------------------------------- /Projects/Shared/MealClient/Sources/MealClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/MealClient/Sources/MealClient.swift -------------------------------------------------------------------------------- /Projects/Shared/MealClient/Sources/SingleMealResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/MealClient/Sources/SingleMealResponseDTO.swift -------------------------------------------------------------------------------- /Projects/Shared/NeisClient/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/NeisClient/Project.swift -------------------------------------------------------------------------------- /Projects/Shared/NeisClient/Sources/NeisClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/NeisClient/Sources/NeisClient.swift -------------------------------------------------------------------------------- /Projects/Shared/NeisClient/Sources/TodayWhatError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/NeisClient/Sources/TodayWhatError.swift -------------------------------------------------------------------------------- /Projects/Shared/NoticeClient/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/NoticeClient/Project.swift -------------------------------------------------------------------------------- /Projects/Shared/NoticeClient/Sources/NoticeClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/NoticeClient/Sources/NoticeClient.swift -------------------------------------------------------------------------------- /Projects/Shared/SchoolClient/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/SchoolClient/Project.swift -------------------------------------------------------------------------------- /Projects/Shared/SchoolClient/Sources/SchoolClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/SchoolClient/Sources/SchoolClient.swift -------------------------------------------------------------------------------- /Projects/Shared/SchoolClient/Sources/SingleSchoolMajorResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/SchoolClient/Sources/SingleSchoolMajorResponseDTO.swift -------------------------------------------------------------------------------- /Projects/Shared/SchoolClient/Sources/SingleSchoolResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/SchoolClient/Sources/SingleSchoolResponseDTO.swift -------------------------------------------------------------------------------- /Projects/Shared/SwiftUIUtil/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/SwiftUIUtil/Project.swift -------------------------------------------------------------------------------- /Projects/Shared/SwiftUIUtil/Sources/View+cornerRadius.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/SwiftUIUtil/Sources/View+cornerRadius.swift -------------------------------------------------------------------------------- /Projects/Shared/SwiftUIUtil/Sources/View+hideKeyboard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/SwiftUIUtil/Sources/View+hideKeyboard.swift -------------------------------------------------------------------------------- /Projects/Shared/SwiftUIUtil/Sources/View+if.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/SwiftUIUtil/Sources/View+if.swift -------------------------------------------------------------------------------- /Projects/Shared/SwiftUIUtil/Sources/View+onLoad.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/SwiftUIUtil/Sources/View+onLoad.swift -------------------------------------------------------------------------------- /Projects/Shared/TWLog/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/TWLog/Project.swift -------------------------------------------------------------------------------- /Projects/Shared/TWLog/Sources/EventLog/DefaultEventLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/TWLog/Sources/EventLog/DefaultEventLog.swift -------------------------------------------------------------------------------- /Projects/Shared/TWLog/Sources/EventLog/EventLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/TWLog/Sources/EventLog/EventLog.swift -------------------------------------------------------------------------------- /Projects/Shared/TWLog/Sources/TWLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/TWLog/Sources/TWLog.swift -------------------------------------------------------------------------------- /Projects/Shared/TWLog/Sources/TWUserProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/TWLog/Sources/TWUserProperty.swift -------------------------------------------------------------------------------- /Projects/Shared/TimeTableClient/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/TimeTableClient/Project.swift -------------------------------------------------------------------------------- /Projects/Shared/TimeTableClient/Sources/SingleTimeTableResponseDTO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/TimeTableClient/Sources/SingleTimeTableResponseDTO.swift -------------------------------------------------------------------------------- /Projects/Shared/TimeTableClient/Sources/TimeTableClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/TimeTableClient/Sources/TimeTableClient.swift -------------------------------------------------------------------------------- /Projects/Shared/TutorialClient/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/TutorialClient/Project.swift -------------------------------------------------------------------------------- /Projects/Shared/TutorialClient/Sources/Entity/TutorialEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/TutorialClient/Sources/Entity/TutorialEntity.swift -------------------------------------------------------------------------------- /Projects/Shared/TutorialClient/Sources/TutorialClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/TutorialClient/Sources/TutorialClient.swift -------------------------------------------------------------------------------- /Projects/Shared/UserDefaultsClient/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/UserDefaultsClient/Project.swift -------------------------------------------------------------------------------- /Projects/Shared/UserDefaultsClient/Sources/UserDefaultsClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/Shared/UserDefaultsClient/Sources/UserDefaultsClient.swift -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Project.swift -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/DesignSystem/BackgroundMain.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/DesignSystem/BackgroundMain.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/DesignSystem/BackgroundSecondary.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/DesignSystem/BackgroundSecondary.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/DesignSystem/Black.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/DesignSystem/Black.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/DesignSystem/CardBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/DesignSystem/CardBackground.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/DesignSystem/CardBackgroundSecondary.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/DesignSystem/CardBackgroundSecondary.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/DesignSystem/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/DesignSystem/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/DesignSystem/LightBox.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/DesignSystem/LightBox.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/DesignSystem/TextPrimary.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/DesignSystem/TextPrimary.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/DesignSystem/TextSecondary.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/DesignSystem/TextSecondary.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/DesignSystem/UnselectedPrimary.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/DesignSystem/UnselectedPrimary.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/DesignSystem/UnselectedSecondary.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/DesignSystem/UnselectedSecondary.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/DesignSystem/White.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/DesignSystem/White.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/System/AbsoluteBlack.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/System/AbsoluteBlack.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/System/AbsoluteWhite.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/System/AbsoluteWhite.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/System/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/System/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/System/Point.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/System/Point.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/System/Success.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Colors.xcassets/System/Success.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Font/SUIT-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Font/SUIT-Bold.otf -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Font/SUIT-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Font/SUIT-Medium.otf -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Allergy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Allergy.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Allergy.imageset/Group 17982.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Allergy.imageset/Group 17982.svg -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/AllergySetting.imageset/AllergySetting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/AllergySetting.imageset/AllergySetting.svg -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/AllergySetting.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/AllergySetting.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/BellBadge.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/BellBadge.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/BellBadge.imageset/bell.badge-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/BellBadge.imageset/bell.badge-dark.svg -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/BellBadge.imageset/bell.badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/BellBadge.imageset/bell.badge.svg -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Book.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Book.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Book.imageset/book 3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Book.imageset/book 3.svg -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Book.imageset/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Book.imageset/book.svg -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Calendar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Calendar.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Calendar.imageset/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Calendar.imageset/calendar.svg -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/ChevronRight.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/ChevronRight.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/ChevronRight.imageset/chevron.right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/ChevronRight.imageset/chevron.right.svg -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/CircularMeal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/CircularMeal.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/CircularMeal.imageset/meal-icon 1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/CircularMeal.imageset/meal-icon 1.svg -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/CircularMeal.imageset/meal-icon 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/CircularMeal.imageset/meal-icon 2.svg -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/CircularMeal.imageset/meal-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/CircularMeal.imageset/meal-icon.svg -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Clock.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Clock.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Clock.imageset/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Clock.imageset/clock.svg -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Consulting.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Consulting.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Consulting.imageset/consulting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Consulting.imageset/consulting.svg -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Gear.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Gear.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Gear.imageset/Gear 1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Gear.imageset/Gear 1.svg -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Gear.imageset/Gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Gear.imageset/Gear.svg -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Meal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Meal.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Meal.imageset/meal 3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Meal.imageset/meal 3.svg -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Meal.imageset/meal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Meal.imageset/meal.svg -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/School.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/School.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/School.imageset/school.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/School.imageset/school.svg -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/SmallMeal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/SmallMeal.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/SmallMeal.imageset/SmallMeal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/SmallMeal.imageset/SmallMeal.svg -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/TriangleDown.imageset/24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/TriangleDown.imageset/24.svg -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/TriangleDown.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/TriangleDown.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Tutorial.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Tutorial.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Tutorial.imageset/Tutorial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/Tutorial.imageset/Tutorial.svg -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/WidgetSetting.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/WidgetSetting.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/WidgetSetting.imageset/widget-setting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/WidgetSetting.imageset/widget-setting.svg -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/WritingPencil.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/WritingPencil.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/WritingPencil.imageset/writing-pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Images.xcassets/Images/WritingPencil.imageset/writing-pencil.svg -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Resources/Lottie/add_home_screen_widget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Resources/Lottie/add_home_screen_widget.json -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Sources/LabelledDivider/LabelledDivider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Sources/LabelledDivider/LabelledDivider.swift -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Sources/TWBottomSheet/TWBottomSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Sources/TWBottomSheet/TWBottomSheet.swift -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Sources/TWButton/TWButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Sources/TWButton/TWButton.swift -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Sources/TWButton/TWButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Sources/TWButton/TWButtonStyle.swift -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Sources/TWButton/View+twBackButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Sources/TWButton/View+twBackButton.swift -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Sources/TWColor/Color+Ext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Sources/TWColor/Color+Ext.swift -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Sources/TWFont/Font+tw.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Sources/TWFont/Font+tw.swift -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Sources/TWFont/TWFontable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Sources/TWFont/TWFontable.swift -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Sources/TWImage/TWImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Sources/TWImage/TWImage.swift -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Sources/TWRadioButton/TWRadioButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Sources/TWRadioButton/TWRadioButton.swift -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Sources/TWTextField/TWTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Sources/TWTextField/TWTextField.swift -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Sources/TWToast/TWToast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Sources/TWToast/TWToast.swift -------------------------------------------------------------------------------- /Projects/UserInterface/DesignSystem/Sources/TopTabbar/TopTabbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Projects/UserInterface/DesignSystem/Sources/TopTabbar/TopTabbar.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Scripts/.swiftformat -------------------------------------------------------------------------------- /Scripts/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Scripts/.swiftlint.yml -------------------------------------------------------------------------------- /Scripts/CodeSigning.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Scripts/CodeSigning.swift -------------------------------------------------------------------------------- /Scripts/FirebaseCrashlytics.sh: -------------------------------------------------------------------------------- 1 | $(dirname "$0")/../.build/checkouts/firebase-ios-sdk/Crashlytics/run 2 | -------------------------------------------------------------------------------- /Scripts/GenerateFeature/Interface/Interface.swift: -------------------------------------------------------------------------------- 1 | // This is for the feature 2 | -------------------------------------------------------------------------------- /Scripts/GenerateFeature/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Scripts/GenerateFeature/Project.swift -------------------------------------------------------------------------------- /Scripts/GenerateFeature/Sources/Feature.swift: -------------------------------------------------------------------------------- 1 | // This is for the feature 2 | -------------------------------------------------------------------------------- /Scripts/GenerateFeature/Testing/Testing.swift: -------------------------------------------------------------------------------- 1 | // This is for the feature 2 | -------------------------------------------------------------------------------- /Scripts/GenerateFeature/Tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Scripts/GenerateFeature/Tests/TargetTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Scripts/GenerateFeature/Tests/TargetTest.swift -------------------------------------------------------------------------------- /Scripts/GenerateFeature/UITests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Scripts/GenerateFeature/UITests/TargetTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Scripts/GenerateFeature/UITests/TargetTest.swift -------------------------------------------------------------------------------- /Scripts/GenerateModule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Scripts/GenerateModule.swift -------------------------------------------------------------------------------- /Scripts/GenerateModuleDemoSource/Demo/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Scripts/GenerateModuleDemoSource/Demo/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Scripts/GenerateModuleDemoSource/Demo/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Scripts/GenerateModuleDemoSource/Demo/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Scripts/InitEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Scripts/InitEnvironment.swift -------------------------------------------------------------------------------- /Scripts/LaunchAtLogin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Scripts/LaunchAtLogin.sh -------------------------------------------------------------------------------- /Scripts/NewDependency.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Scripts/NewDependency.swift -------------------------------------------------------------------------------- /Scripts/Setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Scripts/Setup.sh -------------------------------------------------------------------------------- /Scripts/SwiftLintRunScript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Scripts/SwiftLintRunScript.sh -------------------------------------------------------------------------------- /Tuist/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Tuist/Config.swift -------------------------------------------------------------------------------- /Tuist/ProjectDescriptionHelpers/Action/Action+Template.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Tuist/ProjectDescriptionHelpers/Action/Action+Template.swift -------------------------------------------------------------------------------- /Tuist/ProjectDescriptionHelpers/GenerateEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Tuist/ProjectDescriptionHelpers/GenerateEnvironment.swift -------------------------------------------------------------------------------- /Tuist/ProjectDescriptionHelpers/Internal/Configurable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Tuist/ProjectDescriptionHelpers/Internal/Configurable.swift -------------------------------------------------------------------------------- /Tuist/ProjectDescriptionHelpers/Project/Project+makeModule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Tuist/ProjectDescriptionHelpers/Project/Project+makeModule.swift -------------------------------------------------------------------------------- /Tuist/ProjectDescriptionHelpers/Project/Project+module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Tuist/ProjectDescriptionHelpers/Project/Project+module.swift -------------------------------------------------------------------------------- /Tuist/ProjectDescriptionHelpers/Scheme/Scheme+Template.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Tuist/ProjectDescriptionHelpers/Scheme/Scheme+Template.swift -------------------------------------------------------------------------------- /Tuist/ProjectDescriptionHelpers/SettingsDictionary/CodeSign.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Tuist/ProjectDescriptionHelpers/SettingsDictionary/CodeSign.swift -------------------------------------------------------------------------------- /Tuist/ProjectDescriptionHelpers/SettingsDictionary/LDFlagsSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Tuist/ProjectDescriptionHelpers/SettingsDictionary/LDFlagsSettings.swift -------------------------------------------------------------------------------- /Tuist/ProjectDescriptionHelpers/SourceFiles/SourceFiles+Template.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Tuist/ProjectDescriptionHelpers/SourceFiles/SourceFiles+Template.swift -------------------------------------------------------------------------------- /Tuist/ProjectDescriptionHelpers/Target/Target+MicroFeatures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Tuist/ProjectDescriptionHelpers/Target/Target+MicroFeatures.swift -------------------------------------------------------------------------------- /Tuist/ProjectDescriptionHelpers/Target/TargetSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Tuist/ProjectDescriptionHelpers/Target/TargetSpec.swift -------------------------------------------------------------------------------- /Tuist/Templates/Demo/Demo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Tuist/Templates/Demo/Demo.swift -------------------------------------------------------------------------------- /Tuist/Templates/Demo/DemoResources.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Tuist/Templates/Demo/DemoResources.stencil -------------------------------------------------------------------------------- /Tuist/Templates/Demo/DemoSources.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Tuist/Templates/Demo/DemoSources.stencil -------------------------------------------------------------------------------- /Tuist/Templates/Interface/Interface.stencil: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Tuist/Templates/Interface/Interface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Tuist/Templates/Interface/Interface.swift -------------------------------------------------------------------------------- /Tuist/Templates/Module/Module.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Tuist/Templates/Module/Module.swift -------------------------------------------------------------------------------- /Tuist/Templates/Module/Project.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Tuist/Templates/Module/Project.stencil -------------------------------------------------------------------------------- /Tuist/Templates/Module/Sources.stencil: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Tuist/Templates/Sources/Sources.stencil: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Tuist/Templates/Sources/Sources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Tuist/Templates/Sources/Sources.swift -------------------------------------------------------------------------------- /Tuist/Templates/Testing/Testing.stencil: -------------------------------------------------------------------------------- 1 | // This is for Tuist 2 | -------------------------------------------------------------------------------- /Tuist/Templates/Testing/Testing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Tuist/Templates/Testing/Testing.swift -------------------------------------------------------------------------------- /Tuist/Templates/Tests/Tests.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Tuist/Templates/Tests/Tests.stencil -------------------------------------------------------------------------------- /Tuist/Templates/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Tuist/Templates/Tests/Tests.swift -------------------------------------------------------------------------------- /Tuist/Templates/UITests/UITests.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Tuist/Templates/UITests/UITests.stencil -------------------------------------------------------------------------------- /Tuist/Templates/UITests/UITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Tuist/Templates/UITests/UITests.swift -------------------------------------------------------------------------------- /Workspace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/Workspace.swift -------------------------------------------------------------------------------- /XCConfig.zip.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/XCConfig.zip.gpg -------------------------------------------------------------------------------- /XCConfig/Shared.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/XCConfig/Shared.xcconfig -------------------------------------------------------------------------------- /ci_scripts/ci_post_clone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/ci_scripts/ci_post_clone.sh -------------------------------------------------------------------------------- /fastlane/.env.default.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/fastlane/.env.default.gpg -------------------------------------------------------------------------------- /fastlane/AppStoreAPIKey.json.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/fastlane/AppStoreAPIKey.json.gpg -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/fastlane/Appfile -------------------------------------------------------------------------------- /fastlane/Deliverfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/fastlane/Deliverfile -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Matchfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/fastlane/Matchfile -------------------------------------------------------------------------------- /fastlane/Pluginfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/fastlane/Pluginfile -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/fastlane/README.md -------------------------------------------------------------------------------- /fastlane/metadata/copyright.txt: -------------------------------------------------------------------------------- 1 | © 2023 Hyeongwoo Choi 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ko/apple_tv_privacy_policy.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ko/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/fastlane/metadata/ko/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/ko/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/fastlane/metadata/ko/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/ko/marketing_url.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ko/name.txt: -------------------------------------------------------------------------------- 1 | 오늘 뭐임 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ko/privacy_url.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/fastlane/metadata/ko/privacy_url.txt -------------------------------------------------------------------------------- /fastlane/metadata/ko/promotional_text.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ko/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/fastlane/metadata/ko/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/ko/subtitle.txt: -------------------------------------------------------------------------------- 1 | 메뉴바, 위젯, 워치에서 학교 시간표/급식 2 | -------------------------------------------------------------------------------- /fastlane/metadata/ko/support_url.txt: -------------------------------------------------------------------------------- 1 | https://baegteun.notion.site/9c93bd646b0d4049960297993d57e1ea 2 | -------------------------------------------------------------------------------- /fastlane/metadata/primary_category.txt: -------------------------------------------------------------------------------- 1 | LIFESTYLE 2 | -------------------------------------------------------------------------------- /fastlane/metadata/primary_first_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/primary_second_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/review_information/demo_password.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/review_information/demo_user.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/review_information/email_address.txt: -------------------------------------------------------------------------------- 1 | baegteun@gmail.com 2 | -------------------------------------------------------------------------------- /fastlane/metadata/review_information/first_name.txt: -------------------------------------------------------------------------------- 1 | 형우 2 | -------------------------------------------------------------------------------- /fastlane/metadata/review_information/last_name.txt: -------------------------------------------------------------------------------- 1 | 최 2 | -------------------------------------------------------------------------------- /fastlane/metadata/review_information/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/fastlane/metadata/review_information/notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/review_information/phone_number.txt: -------------------------------------------------------------------------------- 1 | +82-10-2850-3235 2 | -------------------------------------------------------------------------------- /fastlane/metadata/secondary_category.txt: -------------------------------------------------------------------------------- 1 | EDUCATION 2 | -------------------------------------------------------------------------------- /fastlane/metadata/secondary_first_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/secondary_second_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/screenshots/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/fastlane/screenshots/README.txt -------------------------------------------------------------------------------- /graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/todaywhat/TodayWhat-iOS/HEAD/graph.png --------------------------------------------------------------------------------