├── .DS_Store ├── .gitignore ├── GitAssets ├── Profile.png ├── Settings.png └── Timeline.png ├── LICENSE ├── Lentil.xcodeproj ├── project.pbxproj ├── project.pbxproj.orig ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── project_BACKUP_92890.pbxproj ├── project_BACKUP_93562.pbxproj ├── project_BASE_92890.pbxproj ├── project_BASE_93562.pbxproj ├── project_LOCAL_92890.pbxproj ├── project_LOCAL_93562.pbxproj ├── project_REMOTE_92890.pbxproj └── project_REMOTE_93562.pbxproj ├── Lentil ├── .DS_Store ├── API.swift ├── Assets │ ├── .DS_Store │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon-Dev.appiconset │ │ │ ├── 1024_icon.jpg │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── 1024_icon.jpg │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── lens-logo.imageset │ │ │ ├── Contents.json │ │ │ └── lens-logo.pdf │ │ ├── poweredByGiphy.imageset │ │ │ ├── Contents.json │ │ │ └── poweredByGiphy.png │ │ └── punks.imageset │ │ │ ├── Contents.json │ │ │ └── punks.png │ ├── DMSans │ │ ├── DMSans-Bold.ttf │ │ ├── DMSans-BoldItalic.ttf │ │ ├── DMSans-Italic.ttf │ │ ├── DMSans-Medium.ttf │ │ ├── DMSans-MediumItalic.ttf │ │ └── DMSans-Regular.ttf │ ├── LineAwesome │ │ ├── la-brands-400.ttf │ │ ├── la-regular-400.ttf │ │ └── la-solid-900.ttf │ └── Righteous │ │ └── Righteous-Regular.ttf ├── Cache │ └── CacheOld.swift ├── Components │ ├── LentilButton.swift │ ├── LentilImage.swift │ ├── LentilImage.swift.orig │ ├── Media │ │ ├── ImageView.swift │ │ ├── MultiImageView.swift │ │ └── SelectGifView.swift │ ├── PulsingDot.swift │ ├── SignInWithLens.swift │ ├── Synchronize.swift │ └── Toast.swift ├── Conversations │ ├── Conversation.swift │ ├── ConversationRow.swift │ ├── ConversationRowView.swift │ ├── Conversations.swift │ ├── ConversationsView.swift │ ├── CreateConversation.swift │ ├── LastMessage.swift │ └── MessageView.swift ├── CreatePublication │ ├── CreatePublication.swift │ ├── CreatePublication.swift.orig │ └── CreatePublicationView.swift ├── DefatultsStorage │ └── DefaultsStorage.swift ├── Helper │ ├── Binding.swift │ ├── Helper.swift │ ├── NavigationApi.swift │ └── ScrollView.swift ├── Info.plist ├── Info.plist.orig ├── InfuraApi │ ├── InfuraApiClient+Environment.swift │ └── InfuraApiClient.swift ├── Keychain │ ├── AccessToken+KeychainStorable.swift │ ├── KeychainApi.swift │ ├── XMTPConversation+KeychainStorable.swift │ └── XMTPSession+KeychainStorable.swift ├── LensApi │ ├── LensApiClient+Environment.swift │ ├── LensApiClient+Environment.swift.orig │ ├── LensApiClient+Interceptors.swift │ ├── LensApiClient+MediaModel.swift │ ├── LensApiClient+NotificationModel.swift │ ├── LensApiClient+ProfileModel.swift │ ├── LensApiClient+PublicationModel.swift │ ├── LensApiClient+Run.swift │ ├── LensApiClient+TypedData.swift │ └── LensApiClient.swift ├── LensMetadata │ ├── File+FormDataAppendable.swift │ ├── File+Image.swift │ ├── File+Publication.swift │ └── Metadata.swift ├── LentilApp.swift ├── LentilEnvironment.swift ├── Mumbai-Development.xcconfig ├── Notifications │ ├── NotificationRow.swift │ ├── NotificationRowView.swift │ ├── Notifications.swift │ └── NotificationsView.swift ├── Persistence │ ├── Cache+Create.swift │ ├── Cache.swift │ ├── CacheDependency.swift │ ├── CollectionObserver.swift │ ├── ElementObserver.swift │ ├── Models │ │ ├── MediaModel.swift │ │ ├── Model.swift │ │ ├── NotificationModel.swift │ │ ├── ProfileModel.swift │ │ └── PublicationModel.swift │ └── RealmModels │ │ ├── RealmMedia.swift │ │ ├── RealmNotification.swift │ │ ├── RealmProfile.swift │ │ └── RealmPublication.swift ├── Polygon-Production.xcconfig ├── Post │ ├── Post.swift │ ├── PostDetailView.swift │ ├── PostHeaderView.swift │ ├── PostStatsView.swift │ ├── PostView.swift │ └── Publication.swift ├── Preview Content │ ├── .DS_Store │ └── Preview Assets.xcassets │ │ ├── Contents.json │ │ ├── crete.imageset │ │ ├── Contents.json │ │ └── crete.jpg │ │ ├── cryptopunk1.imageset │ │ ├── Contents.json │ │ └── cryptopunk1.png │ │ ├── cryptopunk11.imageset │ │ ├── Contents.json │ │ └── cryptopunk11.png │ │ ├── cryptopunk7.imageset │ │ ├── Contents.json │ │ └── cryptopunk7.png │ │ ├── lentilBeta.imageset │ │ ├── Contents.json │ │ └── General Header_Beta.png │ │ └── munich.imageset │ │ ├── Contents.json │ │ └── Cordt_20210127_9438.jpg ├── Profile │ ├── Profile.swift │ ├── ProfileView.swift │ ├── ProfileView.swift.orig │ └── UserProfile.swift ├── Root │ ├── Root.swift │ └── RootView.swift ├── Theme │ ├── Theme.swift │ ├── Theme.swift.orig │ └── UINavigationController+BackGesture.swift ├── Timeline │ ├── Timeline.swift │ └── TimelineView.swift ├── Wallet │ ├── Wallet.swift │ ├── WalletConnector+SigningKey.swift │ ├── WalletConnector.swift │ └── WalletView.swift ├── XMTP │ ├── XMPTApi.swift │ ├── XMTPClient.swift │ ├── XMTPConversation.swift │ └── XMTPDependency.swift ├── operations.graphql └── schema.json ├── LentilTests ├── ConversationsTests │ ├── ConversationRowTests.swift │ ├── ConversationTests.swift │ ├── ConversationsTests.swift │ └── CreateConversationTests.swift ├── HelperTests.swift ├── LentilTests.swift ├── NotificationsTests │ └── NotificationsTests.swift ├── PostTests │ ├── PostTests.swift │ └── PublicationTests.swift ├── ProfileTests │ └── ProfileTests.swift ├── RootTests.swift ├── TestHelper.swift └── TimelineTests │ └── TimelineTests.swift └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/.gitignore -------------------------------------------------------------------------------- /GitAssets/Profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/GitAssets/Profile.png -------------------------------------------------------------------------------- /GitAssets/Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/GitAssets/Settings.png -------------------------------------------------------------------------------- /GitAssets/Timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/GitAssets/Timeline.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/LICENSE -------------------------------------------------------------------------------- /Lentil.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Lentil.xcodeproj/project.pbxproj.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil.xcodeproj/project.pbxproj.orig -------------------------------------------------------------------------------- /Lentil.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Lentil.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Lentil.xcodeproj/project_BACKUP_92890.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil.xcodeproj/project_BACKUP_92890.pbxproj -------------------------------------------------------------------------------- /Lentil.xcodeproj/project_BACKUP_93562.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil.xcodeproj/project_BACKUP_93562.pbxproj -------------------------------------------------------------------------------- /Lentil.xcodeproj/project_BASE_92890.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil.xcodeproj/project_BASE_92890.pbxproj -------------------------------------------------------------------------------- /Lentil.xcodeproj/project_BASE_93562.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil.xcodeproj/project_BASE_93562.pbxproj -------------------------------------------------------------------------------- /Lentil.xcodeproj/project_LOCAL_92890.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil.xcodeproj/project_LOCAL_92890.pbxproj -------------------------------------------------------------------------------- /Lentil.xcodeproj/project_LOCAL_93562.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil.xcodeproj/project_LOCAL_93562.pbxproj -------------------------------------------------------------------------------- /Lentil.xcodeproj/project_REMOTE_92890.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil.xcodeproj/project_REMOTE_92890.pbxproj -------------------------------------------------------------------------------- /Lentil.xcodeproj/project_REMOTE_93562.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil.xcodeproj/project_REMOTE_93562.pbxproj -------------------------------------------------------------------------------- /Lentil/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/.DS_Store -------------------------------------------------------------------------------- /Lentil/API.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/API.swift -------------------------------------------------------------------------------- /Lentil/Assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Assets/.DS_Store -------------------------------------------------------------------------------- /Lentil/Assets/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Assets/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Lentil/Assets/Assets.xcassets/AppIcon-Dev.appiconset/1024_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Assets/Assets.xcassets/AppIcon-Dev.appiconset/1024_icon.jpg -------------------------------------------------------------------------------- /Lentil/Assets/Assets.xcassets/AppIcon-Dev.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Assets/Assets.xcassets/AppIcon-Dev.appiconset/Contents.json -------------------------------------------------------------------------------- /Lentil/Assets/Assets.xcassets/AppIcon.appiconset/1024_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Assets/Assets.xcassets/AppIcon.appiconset/1024_icon.jpg -------------------------------------------------------------------------------- /Lentil/Assets/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Assets/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Lentil/Assets/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Assets/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Lentil/Assets/Assets.xcassets/lens-logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Assets/Assets.xcassets/lens-logo.imageset/Contents.json -------------------------------------------------------------------------------- /Lentil/Assets/Assets.xcassets/lens-logo.imageset/lens-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Assets/Assets.xcassets/lens-logo.imageset/lens-logo.pdf -------------------------------------------------------------------------------- /Lentil/Assets/Assets.xcassets/poweredByGiphy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Assets/Assets.xcassets/poweredByGiphy.imageset/Contents.json -------------------------------------------------------------------------------- /Lentil/Assets/Assets.xcassets/poweredByGiphy.imageset/poweredByGiphy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Assets/Assets.xcassets/poweredByGiphy.imageset/poweredByGiphy.png -------------------------------------------------------------------------------- /Lentil/Assets/Assets.xcassets/punks.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Assets/Assets.xcassets/punks.imageset/Contents.json -------------------------------------------------------------------------------- /Lentil/Assets/Assets.xcassets/punks.imageset/punks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Assets/Assets.xcassets/punks.imageset/punks.png -------------------------------------------------------------------------------- /Lentil/Assets/DMSans/DMSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Assets/DMSans/DMSans-Bold.ttf -------------------------------------------------------------------------------- /Lentil/Assets/DMSans/DMSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Assets/DMSans/DMSans-BoldItalic.ttf -------------------------------------------------------------------------------- /Lentil/Assets/DMSans/DMSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Assets/DMSans/DMSans-Italic.ttf -------------------------------------------------------------------------------- /Lentil/Assets/DMSans/DMSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Assets/DMSans/DMSans-Medium.ttf -------------------------------------------------------------------------------- /Lentil/Assets/DMSans/DMSans-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Assets/DMSans/DMSans-MediumItalic.ttf -------------------------------------------------------------------------------- /Lentil/Assets/DMSans/DMSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Assets/DMSans/DMSans-Regular.ttf -------------------------------------------------------------------------------- /Lentil/Assets/LineAwesome/la-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Assets/LineAwesome/la-brands-400.ttf -------------------------------------------------------------------------------- /Lentil/Assets/LineAwesome/la-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Assets/LineAwesome/la-regular-400.ttf -------------------------------------------------------------------------------- /Lentil/Assets/LineAwesome/la-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Assets/LineAwesome/la-solid-900.ttf -------------------------------------------------------------------------------- /Lentil/Assets/Righteous/Righteous-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Assets/Righteous/Righteous-Regular.ttf -------------------------------------------------------------------------------- /Lentil/Cache/CacheOld.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Cache/CacheOld.swift -------------------------------------------------------------------------------- /Lentil/Components/LentilButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Components/LentilButton.swift -------------------------------------------------------------------------------- /Lentil/Components/LentilImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Components/LentilImage.swift -------------------------------------------------------------------------------- /Lentil/Components/LentilImage.swift.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Components/LentilImage.swift.orig -------------------------------------------------------------------------------- /Lentil/Components/Media/ImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Components/Media/ImageView.swift -------------------------------------------------------------------------------- /Lentil/Components/Media/MultiImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Components/Media/MultiImageView.swift -------------------------------------------------------------------------------- /Lentil/Components/Media/SelectGifView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Components/Media/SelectGifView.swift -------------------------------------------------------------------------------- /Lentil/Components/PulsingDot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Components/PulsingDot.swift -------------------------------------------------------------------------------- /Lentil/Components/SignInWithLens.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Components/SignInWithLens.swift -------------------------------------------------------------------------------- /Lentil/Components/Synchronize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Components/Synchronize.swift -------------------------------------------------------------------------------- /Lentil/Components/Toast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Components/Toast.swift -------------------------------------------------------------------------------- /Lentil/Conversations/Conversation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Conversations/Conversation.swift -------------------------------------------------------------------------------- /Lentil/Conversations/ConversationRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Conversations/ConversationRow.swift -------------------------------------------------------------------------------- /Lentil/Conversations/ConversationRowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Conversations/ConversationRowView.swift -------------------------------------------------------------------------------- /Lentil/Conversations/Conversations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Conversations/Conversations.swift -------------------------------------------------------------------------------- /Lentil/Conversations/ConversationsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Conversations/ConversationsView.swift -------------------------------------------------------------------------------- /Lentil/Conversations/CreateConversation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Conversations/CreateConversation.swift -------------------------------------------------------------------------------- /Lentil/Conversations/LastMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Conversations/LastMessage.swift -------------------------------------------------------------------------------- /Lentil/Conversations/MessageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Conversations/MessageView.swift -------------------------------------------------------------------------------- /Lentil/CreatePublication/CreatePublication.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/CreatePublication/CreatePublication.swift -------------------------------------------------------------------------------- /Lentil/CreatePublication/CreatePublication.swift.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/CreatePublication/CreatePublication.swift.orig -------------------------------------------------------------------------------- /Lentil/CreatePublication/CreatePublicationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/CreatePublication/CreatePublicationView.swift -------------------------------------------------------------------------------- /Lentil/DefatultsStorage/DefaultsStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/DefatultsStorage/DefaultsStorage.swift -------------------------------------------------------------------------------- /Lentil/Helper/Binding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Helper/Binding.swift -------------------------------------------------------------------------------- /Lentil/Helper/Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Helper/Helper.swift -------------------------------------------------------------------------------- /Lentil/Helper/NavigationApi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Helper/NavigationApi.swift -------------------------------------------------------------------------------- /Lentil/Helper/ScrollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Helper/ScrollView.swift -------------------------------------------------------------------------------- /Lentil/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Info.plist -------------------------------------------------------------------------------- /Lentil/Info.plist.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Info.plist.orig -------------------------------------------------------------------------------- /Lentil/InfuraApi/InfuraApiClient+Environment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/InfuraApi/InfuraApiClient+Environment.swift -------------------------------------------------------------------------------- /Lentil/InfuraApi/InfuraApiClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/InfuraApi/InfuraApiClient.swift -------------------------------------------------------------------------------- /Lentil/Keychain/AccessToken+KeychainStorable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Keychain/AccessToken+KeychainStorable.swift -------------------------------------------------------------------------------- /Lentil/Keychain/KeychainApi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Keychain/KeychainApi.swift -------------------------------------------------------------------------------- /Lentil/Keychain/XMTPConversation+KeychainStorable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Keychain/XMTPConversation+KeychainStorable.swift -------------------------------------------------------------------------------- /Lentil/Keychain/XMTPSession+KeychainStorable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Keychain/XMTPSession+KeychainStorable.swift -------------------------------------------------------------------------------- /Lentil/LensApi/LensApiClient+Environment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/LensApi/LensApiClient+Environment.swift -------------------------------------------------------------------------------- /Lentil/LensApi/LensApiClient+Environment.swift.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/LensApi/LensApiClient+Environment.swift.orig -------------------------------------------------------------------------------- /Lentil/LensApi/LensApiClient+Interceptors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/LensApi/LensApiClient+Interceptors.swift -------------------------------------------------------------------------------- /Lentil/LensApi/LensApiClient+MediaModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/LensApi/LensApiClient+MediaModel.swift -------------------------------------------------------------------------------- /Lentil/LensApi/LensApiClient+NotificationModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/LensApi/LensApiClient+NotificationModel.swift -------------------------------------------------------------------------------- /Lentil/LensApi/LensApiClient+ProfileModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/LensApi/LensApiClient+ProfileModel.swift -------------------------------------------------------------------------------- /Lentil/LensApi/LensApiClient+PublicationModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/LensApi/LensApiClient+PublicationModel.swift -------------------------------------------------------------------------------- /Lentil/LensApi/LensApiClient+Run.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/LensApi/LensApiClient+Run.swift -------------------------------------------------------------------------------- /Lentil/LensApi/LensApiClient+TypedData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/LensApi/LensApiClient+TypedData.swift -------------------------------------------------------------------------------- /Lentil/LensApi/LensApiClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/LensApi/LensApiClient.swift -------------------------------------------------------------------------------- /Lentil/LensMetadata/File+FormDataAppendable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/LensMetadata/File+FormDataAppendable.swift -------------------------------------------------------------------------------- /Lentil/LensMetadata/File+Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/LensMetadata/File+Image.swift -------------------------------------------------------------------------------- /Lentil/LensMetadata/File+Publication.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/LensMetadata/File+Publication.swift -------------------------------------------------------------------------------- /Lentil/LensMetadata/Metadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/LensMetadata/Metadata.swift -------------------------------------------------------------------------------- /Lentil/LentilApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/LentilApp.swift -------------------------------------------------------------------------------- /Lentil/LentilEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/LentilEnvironment.swift -------------------------------------------------------------------------------- /Lentil/Mumbai-Development.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Mumbai-Development.xcconfig -------------------------------------------------------------------------------- /Lentil/Notifications/NotificationRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Notifications/NotificationRow.swift -------------------------------------------------------------------------------- /Lentil/Notifications/NotificationRowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Notifications/NotificationRowView.swift -------------------------------------------------------------------------------- /Lentil/Notifications/Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Notifications/Notifications.swift -------------------------------------------------------------------------------- /Lentil/Notifications/NotificationsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Notifications/NotificationsView.swift -------------------------------------------------------------------------------- /Lentil/Persistence/Cache+Create.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Persistence/Cache+Create.swift -------------------------------------------------------------------------------- /Lentil/Persistence/Cache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Persistence/Cache.swift -------------------------------------------------------------------------------- /Lentil/Persistence/CacheDependency.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Persistence/CacheDependency.swift -------------------------------------------------------------------------------- /Lentil/Persistence/CollectionObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Persistence/CollectionObserver.swift -------------------------------------------------------------------------------- /Lentil/Persistence/ElementObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Persistence/ElementObserver.swift -------------------------------------------------------------------------------- /Lentil/Persistence/Models/MediaModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Persistence/Models/MediaModel.swift -------------------------------------------------------------------------------- /Lentil/Persistence/Models/Model.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Persistence/Models/Model.swift -------------------------------------------------------------------------------- /Lentil/Persistence/Models/NotificationModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Persistence/Models/NotificationModel.swift -------------------------------------------------------------------------------- /Lentil/Persistence/Models/ProfileModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Persistence/Models/ProfileModel.swift -------------------------------------------------------------------------------- /Lentil/Persistence/Models/PublicationModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Persistence/Models/PublicationModel.swift -------------------------------------------------------------------------------- /Lentil/Persistence/RealmModels/RealmMedia.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Persistence/RealmModels/RealmMedia.swift -------------------------------------------------------------------------------- /Lentil/Persistence/RealmModels/RealmNotification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Persistence/RealmModels/RealmNotification.swift -------------------------------------------------------------------------------- /Lentil/Persistence/RealmModels/RealmProfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Persistence/RealmModels/RealmProfile.swift -------------------------------------------------------------------------------- /Lentil/Persistence/RealmModels/RealmPublication.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Persistence/RealmModels/RealmPublication.swift -------------------------------------------------------------------------------- /Lentil/Polygon-Production.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Polygon-Production.xcconfig -------------------------------------------------------------------------------- /Lentil/Post/Post.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Post/Post.swift -------------------------------------------------------------------------------- /Lentil/Post/PostDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Post/PostDetailView.swift -------------------------------------------------------------------------------- /Lentil/Post/PostHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Post/PostHeaderView.swift -------------------------------------------------------------------------------- /Lentil/Post/PostStatsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Post/PostStatsView.swift -------------------------------------------------------------------------------- /Lentil/Post/PostView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Post/PostView.swift -------------------------------------------------------------------------------- /Lentil/Post/Publication.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Post/Publication.swift -------------------------------------------------------------------------------- /Lentil/Preview Content/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Preview Content/.DS_Store -------------------------------------------------------------------------------- /Lentil/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Lentil/Preview Content/Preview Assets.xcassets/crete.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Preview Content/Preview Assets.xcassets/crete.imageset/Contents.json -------------------------------------------------------------------------------- /Lentil/Preview Content/Preview Assets.xcassets/crete.imageset/crete.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Preview Content/Preview Assets.xcassets/crete.imageset/crete.jpg -------------------------------------------------------------------------------- /Lentil/Preview Content/Preview Assets.xcassets/cryptopunk1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Preview Content/Preview Assets.xcassets/cryptopunk1.imageset/Contents.json -------------------------------------------------------------------------------- /Lentil/Preview Content/Preview Assets.xcassets/cryptopunk1.imageset/cryptopunk1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Preview Content/Preview Assets.xcassets/cryptopunk1.imageset/cryptopunk1.png -------------------------------------------------------------------------------- /Lentil/Preview Content/Preview Assets.xcassets/cryptopunk11.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Preview Content/Preview Assets.xcassets/cryptopunk11.imageset/Contents.json -------------------------------------------------------------------------------- /Lentil/Preview Content/Preview Assets.xcassets/cryptopunk11.imageset/cryptopunk11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Preview Content/Preview Assets.xcassets/cryptopunk11.imageset/cryptopunk11.png -------------------------------------------------------------------------------- /Lentil/Preview Content/Preview Assets.xcassets/cryptopunk7.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Preview Content/Preview Assets.xcassets/cryptopunk7.imageset/Contents.json -------------------------------------------------------------------------------- /Lentil/Preview Content/Preview Assets.xcassets/cryptopunk7.imageset/cryptopunk7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Preview Content/Preview Assets.xcassets/cryptopunk7.imageset/cryptopunk7.png -------------------------------------------------------------------------------- /Lentil/Preview Content/Preview Assets.xcassets/lentilBeta.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Preview Content/Preview Assets.xcassets/lentilBeta.imageset/Contents.json -------------------------------------------------------------------------------- /Lentil/Preview Content/Preview Assets.xcassets/lentilBeta.imageset/General Header_Beta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Preview Content/Preview Assets.xcassets/lentilBeta.imageset/General Header_Beta.png -------------------------------------------------------------------------------- /Lentil/Preview Content/Preview Assets.xcassets/munich.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Preview Content/Preview Assets.xcassets/munich.imageset/Contents.json -------------------------------------------------------------------------------- /Lentil/Preview Content/Preview Assets.xcassets/munich.imageset/Cordt_20210127_9438.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Preview Content/Preview Assets.xcassets/munich.imageset/Cordt_20210127_9438.jpg -------------------------------------------------------------------------------- /Lentil/Profile/Profile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Profile/Profile.swift -------------------------------------------------------------------------------- /Lentil/Profile/ProfileView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Profile/ProfileView.swift -------------------------------------------------------------------------------- /Lentil/Profile/ProfileView.swift.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Profile/ProfileView.swift.orig -------------------------------------------------------------------------------- /Lentil/Profile/UserProfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Profile/UserProfile.swift -------------------------------------------------------------------------------- /Lentil/Root/Root.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Root/Root.swift -------------------------------------------------------------------------------- /Lentil/Root/RootView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Root/RootView.swift -------------------------------------------------------------------------------- /Lentil/Theme/Theme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Theme/Theme.swift -------------------------------------------------------------------------------- /Lentil/Theme/Theme.swift.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Theme/Theme.swift.orig -------------------------------------------------------------------------------- /Lentil/Theme/UINavigationController+BackGesture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Theme/UINavigationController+BackGesture.swift -------------------------------------------------------------------------------- /Lentil/Timeline/Timeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Timeline/Timeline.swift -------------------------------------------------------------------------------- /Lentil/Timeline/TimelineView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Timeline/TimelineView.swift -------------------------------------------------------------------------------- /Lentil/Wallet/Wallet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Wallet/Wallet.swift -------------------------------------------------------------------------------- /Lentil/Wallet/WalletConnector+SigningKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Wallet/WalletConnector+SigningKey.swift -------------------------------------------------------------------------------- /Lentil/Wallet/WalletConnector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Wallet/WalletConnector.swift -------------------------------------------------------------------------------- /Lentil/Wallet/WalletView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/Wallet/WalletView.swift -------------------------------------------------------------------------------- /Lentil/XMTP/XMPTApi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/XMTP/XMPTApi.swift -------------------------------------------------------------------------------- /Lentil/XMTP/XMTPClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/XMTP/XMTPClient.swift -------------------------------------------------------------------------------- /Lentil/XMTP/XMTPConversation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/XMTP/XMTPConversation.swift -------------------------------------------------------------------------------- /Lentil/XMTP/XMTPDependency.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/XMTP/XMTPDependency.swift -------------------------------------------------------------------------------- /Lentil/operations.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/operations.graphql -------------------------------------------------------------------------------- /Lentil/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/Lentil/schema.json -------------------------------------------------------------------------------- /LentilTests/ConversationsTests/ConversationRowTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/LentilTests/ConversationsTests/ConversationRowTests.swift -------------------------------------------------------------------------------- /LentilTests/ConversationsTests/ConversationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/LentilTests/ConversationsTests/ConversationTests.swift -------------------------------------------------------------------------------- /LentilTests/ConversationsTests/ConversationsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/LentilTests/ConversationsTests/ConversationsTests.swift -------------------------------------------------------------------------------- /LentilTests/ConversationsTests/CreateConversationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/LentilTests/ConversationsTests/CreateConversationTests.swift -------------------------------------------------------------------------------- /LentilTests/HelperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/LentilTests/HelperTests.swift -------------------------------------------------------------------------------- /LentilTests/LentilTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/LentilTests/LentilTests.swift -------------------------------------------------------------------------------- /LentilTests/NotificationsTests/NotificationsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/LentilTests/NotificationsTests/NotificationsTests.swift -------------------------------------------------------------------------------- /LentilTests/PostTests/PostTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/LentilTests/PostTests/PostTests.swift -------------------------------------------------------------------------------- /LentilTests/PostTests/PublicationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/LentilTests/PostTests/PublicationTests.swift -------------------------------------------------------------------------------- /LentilTests/ProfileTests/ProfileTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/LentilTests/ProfileTests/ProfileTests.swift -------------------------------------------------------------------------------- /LentilTests/RootTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/LentilTests/RootTests.swift -------------------------------------------------------------------------------- /LentilTests/TestHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/LentilTests/TestHelper.swift -------------------------------------------------------------------------------- /LentilTests/TimelineTests/TimelineTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/LentilTests/TimelineTests/TimelineTests.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cordt/Lentil/HEAD/README.md --------------------------------------------------------------------------------