├── .arkana.yml ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml └── workflows │ ├── crowdin-download.yml │ ├── crowdin-manual-upload.yml │ └── crowdin-upload.yml ├── .gitignore ├── .ruby-version ├── .swiftlint.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTIONS.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.md ├── Mammoth Share Extension ├── Base.lproj │ └── MainInterface.storyboard ├── Info.plist ├── Mammoth Share Extension.entitlements └── ShareViewController.swift ├── Mammoth.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ ├── IDETemplateMacros.plist │ └── xcschemes │ ├── Mammoth Share Extension.xcscheme │ ├── MammothNotificationServiceExtension.xcscheme │ └── Mastodon.xcscheme ├── Mammoth ├── AppCoordinator.swift ├── AppDelegate.swift ├── Assets │ ├── Alt Icons │ │ ├── Benson.png │ │ ├── Benson@2x.png │ │ ├── Benson@3x.png │ │ ├── Blue Jay.png │ │ ├── Blue Jay@2x.png │ │ ├── Blue Jay@3x.png │ │ ├── Blueprints.png │ │ ├── Blueprints@2x.png │ │ ├── Blueprints@3x.png │ │ ├── Burton.png │ │ ├── Burton@2x.png │ │ ├── Burton@3x.png │ │ ├── Carroll.png │ │ ├── Carroll@2x.png │ │ ├── Carroll@3x.png │ │ ├── Dark Mode.png │ │ ├── Dark Mode@2x.png │ │ ├── Dark Mode@3x.png │ │ ├── Foil Dark.png │ │ ├── Foil Dark@2x.png │ │ ├── Foil Dark@3x.png │ │ ├── Foil.png │ │ ├── Foil@2x.png │ │ ├── Foil@3x.png │ │ ├── Gold-Icon.png │ │ ├── Gold-Icon@2x.png │ │ ├── Gold-Icon@3x.png │ │ ├── Granny Smith.png │ │ ├── Granny Smith@2x.png │ │ ├── Granny Smith@3x.png │ │ ├── Icon.png │ │ ├── Icon1.png │ │ ├── Icon1@2x.png │ │ ├── Icon1@3x.png │ │ ├── Icon2.png │ │ ├── Icon2@2x.png │ │ ├── Icon2@3x.png │ │ ├── Icon3.png │ │ ├── Icon3@2x.png │ │ ├── Icon3@3x.png │ │ ├── Icon4.png │ │ ├── Icon4@2x.png │ │ ├── Icon4@3x.png │ │ ├── Icon5.png │ │ ├── Icon5@2x.png │ │ ├── Icon5@3x.png │ │ ├── Icon6.png │ │ ├── Icon6@2x.png │ │ ├── Icon6@3x.png │ │ ├── Icon@2x.png │ │ ├── Icon@3x.png │ │ ├── IconB.png │ │ ├── IconB1.png │ │ ├── IconB1@2x.png │ │ ├── IconB1@3x.png │ │ ├── IconB2.png │ │ ├── IconB2@2x.png │ │ ├── IconB2@3x.png │ │ ├── IconB3.png │ │ ├── IconB3@2x.png │ │ ├── IconB3@3x.png │ │ ├── IconB4.png │ │ ├── IconB4@2x.png │ │ ├── IconB4@3x.png │ │ ├── IconB5.png │ │ ├── IconB5@2x.png │ │ ├── IconB5@3x.png │ │ ├── IconB6.png │ │ ├── IconB6@2x.png │ │ ├── IconB6@3x.png │ │ ├── IconB@2x.png │ │ ├── IconB@3x.png │ │ ├── IconBBlack.png │ │ ├── IconBBlack@2x.png │ │ ├── IconBBlack@3x.png │ │ ├── IconBlack.png │ │ ├── IconBlack@2x.png │ │ ├── IconBlack@3x.png │ │ ├── IconC.png │ │ ├── IconC1.png │ │ ├── IconC1@2x.png │ │ ├── IconC1@3x.png │ │ ├── IconC2.png │ │ ├── IconC2@2x.png │ │ ├── IconC2@3x.png │ │ ├── IconC3.png │ │ ├── IconC3@2x.png │ │ ├── IconC3@3x.png │ │ ├── IconC4.png │ │ ├── IconC4@2x.png │ │ ├── IconC4@3x.png │ │ ├── IconC5.png │ │ ├── IconC5@2x.png │ │ ├── IconC5@3x.png │ │ ├── IconC6.png │ │ ├── IconC6@2x.png │ │ ├── IconC6@3x.png │ │ ├── IconC@2x.png │ │ ├── IconC@3x.png │ │ ├── IconCBlack.png │ │ ├── IconCBlack@2x.png │ │ ├── IconCBlack@3x.png │ │ ├── IconPride.png │ │ ├── IconPride@2x.png │ │ ├── IconPride@3x.png │ │ ├── Layout.png │ │ ├── Layout@2x.png │ │ ├── Layout@3x.png │ │ ├── Margot.png │ │ ├── Margot@2x.png │ │ ├── Margot@3x.png │ │ ├── Newsprint.png │ │ ├── Newsprint@2x.png │ │ ├── Newsprint@3x.png │ │ ├── Nicholas.png │ │ ├── Nicholas@2x.png │ │ ├── Nicholas@3x.png │ │ ├── OG Light.png │ │ ├── OG Light@2x.png │ │ ├── OG Light@3x.png │ │ ├── OG Margot.png │ │ ├── OG Margot@2x.png │ │ ├── OG Margot@3x.png │ │ ├── OG Monochrome.png │ │ ├── OG Monochrome@2x.png │ │ ├── OG Monochrome@3x.png │ │ ├── OG Pride.png │ │ ├── OG Pride@2x.png │ │ ├── OG Pride@3x.png │ │ ├── OG Pumpkin.png │ │ ├── OG Pumpkin@2x.png │ │ ├── OG Pumpkin@3x.png │ │ ├── OG Six Colors.png │ │ ├── OG Six Colors@2x.png │ │ ├── OG Six Colors@3x.png │ │ ├── OG White.png │ │ ├── OG White@2x.png │ │ ├── OG White@3x.png │ │ ├── OG.png │ │ ├── OG@2x.png │ │ ├── OG@3x.png │ │ ├── Paper Dark.png │ │ ├── Paper Dark@2x.png │ │ ├── Paper Dark@3x.png │ │ ├── Paper Light.png │ │ ├── Paper Light@2x.png │ │ ├── Paper Light@3x.png │ │ ├── Pride Dark.png │ │ ├── Pride Dark@2x.png │ │ ├── Pride Dark@3x.png │ │ ├── Pride Light.png │ │ ├── Pride Light@2x.png │ │ ├── Pride Light@3x.png │ │ ├── Pride Slant.png │ │ ├── Pride Slant@2x.png │ │ ├── Pride Slant@3x.png │ │ ├── Pride.png │ │ ├── Pride@2x.png │ │ ├── Pride@3x.png │ │ ├── Schultz.png │ │ ├── Schultz@2x.png │ │ ├── Schultz@3x.png │ │ ├── Six Colors Dark.png │ │ ├── Six Colors Dark@2x.png │ │ ├── Six Colors Dark@3x.png │ │ ├── Six Colors Light.png │ │ ├── Six Colors Light@2x.png │ │ ├── Six Colors Light@3x.png │ │ ├── Six Colors Slant.png │ │ ├── Six Colors Slant@2x.png │ │ ├── Six Colors Slant@3x.png │ │ ├── Six Colors.png │ │ ├── Six Colors@2x.png │ │ ├── Six Colors@3x.png │ │ ├── Soft.png │ │ ├── Soft@2x.png │ │ ├── Soft@3x.png │ │ ├── Stealth.png │ │ ├── Stealth@2x.png │ │ ├── Stealth@3x.png │ │ ├── Sticker.png │ │ ├── Sticker@2x.png │ │ └── Sticker@3x.png │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppCol.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── appstore1024.png │ │ │ ├── ipad152.png │ │ │ ├── ipad76.png │ │ │ ├── ipadNotification20.png │ │ │ ├── ipadNotification40.png │ │ │ ├── ipadPro167.png │ │ │ ├── ipadSettings29.png │ │ │ ├── ipadSettings58.png │ │ │ ├── ipadSpotlight40.png │ │ │ ├── ipadSpotlight80.png │ │ │ ├── iphone120.png │ │ │ ├── iphone180.png │ │ │ ├── mac1024.png │ │ │ ├── mac128.png │ │ │ ├── mac16.png │ │ │ ├── mac256.png │ │ │ ├── mac32.png │ │ │ ├── mac512.png │ │ │ ├── mac64.png │ │ │ ├── notification40.png │ │ │ ├── notification60.png │ │ │ ├── settings58.png │ │ │ ├── settings87.png │ │ │ ├── spotlight120.png │ │ │ └── spotlight80.png │ │ ├── AppIconHighRes.imageset │ │ │ ├── Contents.json │ │ │ ├── appstore1024.png │ │ │ ├── ipad76.png │ │ │ └── ipadPro167 1.png │ │ ├── Colors │ │ │ ├── Active Inverted.colorset │ │ │ │ └── Contents.json │ │ │ ├── Active.colorset │ │ │ │ └── Contents.json │ │ │ ├── Background.colorset │ │ │ │ └── Contents.json │ │ │ ├── Blurred OVRLY High.colorset │ │ │ │ └── Contents.json │ │ │ ├── Blurred OVRLY Med.colorset │ │ │ │ └── Contents.json │ │ │ ├── Blurred OVRLY Neut.colorset │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Destructive.colorset │ │ │ │ └── Contents.json │ │ │ ├── Display Names.colorset │ │ │ │ └── Contents.json │ │ │ ├── FAB Background.colorset │ │ │ │ └── Contents.json │ │ │ ├── FAB Foreground.colorset │ │ │ │ └── Contents.json │ │ │ ├── Feint Contrast.colorset │ │ │ │ └── Contents.json │ │ │ ├── Follow Button BG.colorset │ │ │ │ └── Contents.json │ │ │ ├── Gold.colorset │ │ │ │ └── Contents.json │ │ │ ├── High Contrast.colorset │ │ │ │ └── Contents.json │ │ │ ├── Inactive.colorset │ │ │ │ └── Contents.json │ │ │ ├── Link Text Inactive.colorset │ │ │ │ └── Contents.json │ │ │ ├── Link Text.colorset │ │ │ │ └── Contents.json │ │ │ ├── Medium Contrast.colorset │ │ │ │ └── Contents.json │ │ │ ├── OVRLY Med Contrast.colorset │ │ │ │ └── Contents.json │ │ │ ├── OVRLY Soft Contrast.colorset │ │ │ │ └── Contents.json │ │ │ ├── Outlines.colorset │ │ │ │ └── Contents.json │ │ │ ├── Poll Bar Text.colorset │ │ │ │ └── Contents.json │ │ │ ├── Poll Bars.colorset │ │ │ │ └── Contents.json │ │ │ ├── Soft Contrast.colorset │ │ │ │ └── Contents.json │ │ │ └── Status Bar.colorset │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── GiphyLogoEmblem.imageset │ │ │ ├── Contents.json │ │ │ ├── GiphyLogoEmblem.png │ │ │ ├── GiphyLogoEmblem@2x.png │ │ │ └── GiphyLogoEmblem@3x.png │ │ ├── GiphyLogoEmblemLight.imageset │ │ │ ├── Contents.json │ │ │ ├── GiphyLogoEmblemLight.png │ │ │ ├── GiphyLogoEmblemLight@2x.png │ │ │ └── GiphyLogoEmblemLight@3x.png │ │ ├── HCColors │ │ │ ├── Contents.json │ │ │ ├── HCActive Inverted.colorset │ │ │ │ └── Contents.json │ │ │ ├── HCActive.colorset │ │ │ │ └── Contents.json │ │ │ ├── HCBackground.colorset │ │ │ │ └── Contents.json │ │ │ ├── HCBlurred OVRLY High.colorset │ │ │ │ └── Contents.json │ │ │ ├── HCBlurred OVRLY Med.colorset │ │ │ │ └── Contents.json │ │ │ ├── HCBlurred OVRLY Neut.colorset │ │ │ │ └── Contents.json │ │ │ ├── HCDestructive Light.colorset │ │ │ │ └── Contents.json │ │ │ ├── HCDestructive.colorset │ │ │ │ └── Contents.json │ │ │ ├── HCDisplay Names.colorset │ │ │ │ └── Contents.json │ │ │ ├── HCFAB Background.colorset │ │ │ │ └── Contents.json │ │ │ ├── HCFAB Foreground.colorset │ │ │ │ └── Contents.json │ │ │ ├── HCFeint Contrast.colorset │ │ │ │ └── Contents.json │ │ │ ├── HCFollow Button BG.colorset │ │ │ │ └── Contents.json │ │ │ ├── HCGold.colorset │ │ │ │ └── Contents.json │ │ │ ├── HCHigh Contrast.colorset │ │ │ │ └── Contents.json │ │ │ ├── HCImage Overlay.colorset │ │ │ │ └── Contents.json │ │ │ ├── HCInactive.colorset │ │ │ │ └── Contents.json │ │ │ ├── HCLink Text Inactive.colorset │ │ │ │ └── Contents.json │ │ │ ├── HCLink Text.colorset │ │ │ │ └── Contents.json │ │ │ ├── HCMedium Contrast.colorset │ │ │ │ └── Contents.json │ │ │ ├── HCOVRLY Med Contrast.colorset │ │ │ │ └── Contents.json │ │ │ ├── HCOVRLY Soft Contrast.colorset │ │ │ │ └── Contents.json │ │ │ ├── HCOutlines.colorset │ │ │ │ └── Contents.json │ │ │ ├── HCPoll Bar Text.colorset │ │ │ │ └── Contents.json │ │ │ ├── HCPoll Bars.colorset │ │ │ │ └── Contents.json │ │ │ ├── HCSoft Contrast.colorset │ │ │ │ └── Contents.json │ │ │ └── HCStatus Bar.colorset │ │ │ │ └── Contents.json │ │ ├── Hashtag.imageset │ │ │ ├── Avatar.png │ │ │ └── Contents.json │ │ ├── Icon1-400.imageset │ │ │ ├── Contents.json │ │ │ └── Icon1-400.png │ │ ├── Icon3-400.imageset │ │ │ ├── Contents.json │ │ │ └── Icon3-400.png │ │ ├── Icon4-400.imageset │ │ │ ├── Contents.json │ │ │ └── Icon4-400.png │ │ ├── Icon5-400.imageset │ │ │ ├── Contents.json │ │ │ └── Icon5-400.png │ │ ├── Icon6-400.imageset │ │ │ ├── Contents.json │ │ │ └── Icon6-400.png │ │ ├── IconBlack-400.imageset │ │ │ ├── Contents.json │ │ │ └── IconBlack-400.png │ │ ├── LaunchSc.imageset │ │ │ ├── Contents.json │ │ │ ├── launch - alternate.png │ │ │ ├── launch - alternate@2x.png │ │ │ └── launch - alternate@3x.png │ │ ├── Mammoth.imageset │ │ │ ├── Contents.json │ │ │ ├── Frame 3908.png │ │ │ ├── Frame 3908@2x.png │ │ │ ├── Frame 3908@3x.png │ │ │ ├── Frame 3943.png │ │ │ ├── Frame 3943@2x.png │ │ │ └── Frame 3943@3x.png │ │ ├── ThinSliderThumb.imageset │ │ │ ├── Contents.json │ │ │ └── ThinThumb.svg │ │ ├── confetti.imageset │ │ │ ├── Contents.json │ │ │ └── confetti.png │ │ ├── gif.rectangle.symbolset │ │ │ ├── Contents.json │ │ │ └── gif.rectangle.svg │ │ ├── ico.imageset │ │ │ ├── Contents.json │ │ │ ├── ico.png │ │ │ ├── ico@2x.png │ │ │ └── ico@3x.png │ │ ├── launchBG.colorset │ │ │ └── Contents.json │ │ ├── mastodon.imageset │ │ │ ├── Contents.json │ │ │ └── mastodon.pdf │ │ ├── missing.imageset │ │ │ ├── Contents.json │ │ │ └── missing.png │ │ ├── selectedCell.colorset │ │ │ └── Contents.json │ │ ├── selectedFollowing.colorset │ │ │ └── Contents.json │ │ └── spinnerBG.colorset │ │ │ └── Contents.json │ ├── Fonts │ │ ├── FontAwesome.swift │ │ ├── InstrumentSerif-Regular.ttf │ │ ├── custom-icons.ttf │ │ ├── fa-brand.otf │ │ ├── fa-regular-400.ttf │ │ └── fa-solid-900.ttf │ └── Sounds │ │ ├── mute.aiff │ │ ├── soundError.wav │ │ ├── soundMallet.wav │ │ ├── soundPublished.wav │ │ ├── soundPublished2.wav │ │ ├── soundPush.wav │ │ ├── soundRemove.wav │ │ └── soundSuction.wav ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CHANGELOG.md ├── IAPConfig.storekit ├── Info.plist ├── InfoPlist.xcstrings ├── Localizable.xcstrings ├── Mammoth-Bridging-Header.h ├── Mammoth.entitlements ├── Managers │ ├── AVManager.swift │ ├── AccountCacher.swift │ ├── AccountsManager │ │ ├── AccountsManager.swift │ │ ├── AccountsManagerShim.swift │ │ ├── AcctData.swift │ │ ├── AcctDataViewModel.swift │ │ ├── AcctHandler.swift │ │ └── IdentityData.swift │ ├── AnalyticsManager.swift │ ├── CloudSyncManager.swift │ ├── FeedsManager.swift │ ├── FollowManager.swift │ ├── HashtagManager.swift │ ├── IAPManager.swift │ ├── InstanceManager.swift │ ├── ListManager.swift │ ├── ModerationManager.swift │ ├── ProfileCacher.swift │ ├── PushNotificationManager.swift │ ├── RealtimeManager.swift │ ├── StatusCache.swift │ └── ToastNotification.swift ├── Models │ ├── ActivityCardModel.swift │ ├── GlobalStruct.swift │ ├── InstanceCardModel.swift │ ├── InstanceData.swift │ ├── MAMenu.swift │ ├── NewsFeedListItem.swift │ ├── OtherStruct.swift │ ├── PostCardModel.swift │ ├── PostCardTypes.swift │ ├── PostLanguages.swift │ ├── UserCardModel.swift │ ├── UserCardTypes.swift │ └── ViewState.swift ├── SceneDelegate.swift ├── Screens │ ├── ActivityScreen │ │ └── ActivityViewController.swift │ ├── Authentication │ │ ├── AuthenticationErrors.swift │ │ ├── BioMetricAuthenticator.swift │ │ └── BiometricAuthenticationConstants.swift │ ├── ChatMessageViewController.swift │ ├── Composer │ │ ├── AltTextViewController.swift │ │ ├── EmojiCell.swift │ │ ├── EmoticonPickerViewController.swift │ │ ├── NewPostViewController.swift │ │ ├── PollViewController.swift │ │ ├── TranslationComposeViewController.swift │ │ └── UndoWidget.swift │ ├── DetailScreen │ │ ├── DetailViewController.swift │ │ ├── DetailViewModel.swift │ │ └── Views │ │ │ └── ScrollUpIndicator.swift │ ├── DiscoveryScreen │ │ ├── DiscoverSuggestionsViewController.swift │ │ ├── DiscoverSuggestionsViewModel.swift │ │ ├── DiscoveryViewController.swift │ │ ├── DiscoveryViewModel.swift │ │ ├── HashtagsViewController.swift │ │ ├── HashtagsViewModel.swift │ │ ├── InstancesViewController.swift │ │ ├── InstancesViewModel.swift │ │ ├── PostResultsViewController.swift │ │ ├── PostResultsViewModel.swift │ │ ├── SearchHostViewController.swift │ │ ├── SearchHostViewModel.swift │ │ └── Views │ │ │ ├── SearchHostHeaderView.swift │ │ │ └── SectionHeader.swift │ ├── EditFieldsViewController.swift │ ├── EditProfileViewController.swift │ ├── ExploreViewController.swift │ ├── External │ │ ├── SKPhotoBrowser │ │ │ ├── SKActionView.swift │ │ │ ├── SKAnimator.swift │ │ │ ├── SKButtons.swift │ │ │ ├── SKCache.swift │ │ │ ├── SKCacheable.swift │ │ │ ├── SKCaptionView.swift │ │ │ ├── SKDetectingImageView.swift │ │ │ ├── SKDetectingView.swift │ │ │ ├── SKIndicatorView.swift │ │ │ ├── SKLocalPhoto.swift │ │ │ ├── SKMesurement.swift │ │ │ ├── SKPaginationView.swift │ │ │ ├── SKPagingScrollView.swift │ │ │ ├── SKPhoto.swift │ │ │ ├── SKPhotoBrowser.bundle │ │ │ │ └── images │ │ │ │ │ ├── btn_common_back_wh.png │ │ │ │ │ ├── btn_common_back_wh@2x.png │ │ │ │ │ ├── btn_common_back_wh@3x.png │ │ │ │ │ ├── btn_common_close_wh.png │ │ │ │ │ ├── btn_common_close_wh@2x.png │ │ │ │ │ ├── btn_common_close_wh@3x.png │ │ │ │ │ ├── btn_common_delete_wh.png │ │ │ │ │ ├── btn_common_delete_wh@2x.png │ │ │ │ │ ├── btn_common_delete_wh@3x.png │ │ │ │ │ ├── btn_common_forward_wh.png │ │ │ │ │ ├── btn_common_forward_wh@2x.png │ │ │ │ │ └── btn_common_forward_wh@3x.png │ │ │ ├── SKPhotoBrowser.h │ │ │ ├── SKPhotoBrowser.swift │ │ │ ├── SKPhotoBrowserDelegate.swift │ │ │ ├── SKPhotoBrowserOptions.swift │ │ │ ├── SKToolbar.swift │ │ │ ├── SKZoomingScrollView.swift │ │ │ ├── UIApplication+UIWindow.swift │ │ │ └── extensions │ │ │ │ ├── UIApplication+UIWindow.swift │ │ │ │ ├── UIImage+BundledImage.swift │ │ │ │ ├── UIImage+Rotation.swift │ │ │ │ └── UIView+Radius.swift │ │ └── TOCropViewController │ │ │ ├── Categories │ │ │ ├── UIImage+CropRotate.h │ │ │ └── UIImage+CropRotate.m │ │ │ ├── Constants │ │ │ └── TOCropViewConstants.h │ │ │ ├── CropViewController.swift │ │ │ ├── Models │ │ │ ├── TOActivityCroppedImageProvider.h │ │ │ ├── TOActivityCroppedImageProvider.m │ │ │ ├── TOCropViewControllerTransitioning.h │ │ │ ├── TOCropViewControllerTransitioning.m │ │ │ ├── TOCroppedImageAttributes.h │ │ │ └── TOCroppedImageAttributes.m │ │ │ ├── Resources │ │ │ ├── Base.lproj │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ ├── ar.lproj │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ ├── da-DK.lproj │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ ├── de.lproj │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ ├── en-GB.lproj │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ ├── en.lproj │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ ├── es.lproj │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ ├── fa-IR.lproj │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ ├── fa.lproj │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ ├── fi.lproj │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ ├── fr.lproj │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ ├── hi.lproj │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ ├── hu.lproj │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ ├── id.lproj │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ ├── it.lproj │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ ├── ja.lproj │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ ├── ko.lproj │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ ├── ms.lproj │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ ├── nl.lproj │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ ├── pl.lproj │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ ├── pt-BR.lproj │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ ├── pt.lproj │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ ├── ro.lproj │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ ├── ru.lproj │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ ├── tr.lproj │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ ├── vi.lproj │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ ├── zh-Hans.lproj │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ └── zh-Hant.lproj │ │ │ │ └── TOCropViewControllerLocalizable.strings │ │ │ ├── TOCropViewController.h │ │ │ ├── TOCropViewController.m │ │ │ └── Views │ │ │ ├── TOCropOverlayView.h │ │ │ ├── TOCropOverlayView.m │ │ │ ├── TOCropScrollView.h │ │ │ ├── TOCropScrollView.m │ │ │ ├── TOCropToolbar.h │ │ │ ├── TOCropToolbar.m │ │ │ ├── TOCropView.h │ │ │ └── TOCropView.m │ ├── FilterDetailsViewController.swift │ ├── FiltersViewController.swift │ ├── GalleryViewController.swift │ ├── HomeScreen │ │ ├── FeedEditorViewController.swift │ │ ├── FeedEditorViewModel.swift │ │ ├── HomeViewController.swift │ │ ├── NewsFeedViewController.swift │ │ ├── NewsFeedViewModel+Caching.swift │ │ ├── NewsFeedViewModel+DataSource.swift │ │ ├── NewsFeedViewModel+ScrollPositions.swift │ │ ├── NewsFeedViewModel+Services.swift │ │ ├── NewsFeedViewModel+UnreadCount.swift │ │ ├── NewsFeedViewModel.swift │ │ └── Views │ │ │ ├── Carousel │ │ │ ├── Carousel.swift │ │ │ ├── CarouselCollectionView.swift │ │ │ ├── CarouselFlowLayout.swift │ │ │ └── CarouselItem.swift │ │ │ ├── JumpToLatest.swift │ │ │ ├── LatestPill.swift │ │ │ └── UnreadIndicator.swift │ ├── LikedByMutedBlockedViewController.swift │ ├── LiveTableViewController.swift │ ├── MentionsScreen │ │ └── MentionsViewController.swift │ ├── ProfileDirectoryViewController.swift │ ├── ProfileFieldsViewController.swift │ ├── ProfileNoteViewController.swift │ ├── ProfileScreen │ │ ├── ProfileViewController.swift │ │ ├── ProfileViewModel.swift │ │ └── Views │ │ │ ├── ProfileBackButton.swift │ │ │ ├── ProfileCoverImage.swift │ │ │ ├── ProfileHeader.swift │ │ │ ├── ProfileNavigationTitle.swift │ │ │ ├── ProfileSectionHeader.swift │ │ │ └── ProfileViewSettingsButton.swift │ ├── Registration │ │ ├── Base.lproj │ │ │ ├── EmailVerificationView.xib │ │ │ ├── IntroViewController.xib │ │ │ ├── SetupInstructionsCell.xib │ │ │ ├── SetupProfile.xib │ │ │ └── SignUpView.xib │ │ ├── Bluesky │ │ │ ├── BlueskySignInViewController.swift │ │ │ ├── RoundedTextField.swift │ │ │ ├── SignInPasswordVC.swift │ │ │ └── SignInUsernameVC.swift │ │ ├── EmailVerificationViewController.swift │ │ ├── IntroViewController.swift │ │ ├── OtherInstances.json │ │ ├── SetupInstructionsCell.swift │ │ ├── SetupMammothViewController.swift │ │ ├── SetupMammothViewModel.swift │ │ ├── SetupProfileController.swift │ │ ├── SignInViewController.swift │ │ ├── SignUpViewController.swift │ │ ├── moth.social.Instance.json │ │ ├── mul.lproj │ │ │ ├── EmailVerificationView.xcstrings │ │ │ ├── IntroViewController.xcstrings │ │ │ ├── SetupInstructionsCell.xcstrings │ │ │ ├── SetupProfile.xcstrings │ │ │ └── SignUpView.xcstrings │ │ └── staging.moth.social.Instance.json │ ├── ScheduledPostsViewController.swift │ ├── Settings │ │ ├── About.rtf │ │ ├── AccountsSettingsViewController.swift │ │ ├── AlertsSettingsViewController.swift │ │ ├── AppearanceSettingsViewController.swift │ │ ├── ComposerSettingsViewController.swift │ │ ├── ContactSettingsViewController.swift │ │ ├── DevelopmentViewController.swift │ │ ├── HapticsSettingsViewController.swift │ │ ├── IconSettingsViewController.swift │ │ ├── NotificationSettingsViewController.swift │ │ ├── OpenLinksSettingsViewController.swift │ │ ├── SettingsTypes.swift │ │ ├── SettingsViewController.swift │ │ ├── SiriSettingsViewController.swift │ │ ├── TextFileViewController.swift │ │ ├── TextShareViewController.swift │ │ ├── ThemeContrastTrait.swift │ │ └── TranslationSettingsViewController.swift │ ├── TabBarViewController.swift │ ├── TutorialOverlay │ │ ├── ArrowAlignment.swift │ │ ├── TutorialOverlay.swift │ │ └── Views │ │ │ └── TextBubbleView.swift │ ├── UserListScreen │ │ ├── UserListViewController.swift │ │ └── UserListViewModel.swift │ ├── WebViewController.swift │ └── iPad │ │ ├── AuxColumnViewController.swift │ │ ├── AuxFeedViewController.swift │ │ ├── ColumnViewController.swift │ │ ├── SidebarViewController.swift │ │ └── SingleColumnViewController.swift ├── Services │ ├── Backend │ │ ├── AccountService.swift │ │ ├── BlueskyKit │ │ │ ├── BlueskyAPI │ │ │ │ ├── BlueskyAPI+Requests.swift │ │ │ │ ├── BlueskyAPI.swift │ │ │ │ ├── BlueskyAPITokenManager.swift │ │ │ │ └── Endpoints │ │ │ │ │ ├── BlueskyAPI+Actor.swift │ │ │ │ │ ├── BlueskyAPI+Feed.swift │ │ │ │ │ ├── BlueskyAPI+Graph.swift │ │ │ │ │ ├── BlueskyAPI+Identity.swift │ │ │ │ │ ├── BlueskyAPI+Notification.swift │ │ │ │ │ ├── BlueskyAPI+Repo.swift │ │ │ │ │ └── BlueskyAPI+Server.swift │ │ │ ├── Models │ │ │ │ ├── Actor.swift │ │ │ │ ├── Embed.swift │ │ │ │ ├── Feed.swift │ │ │ │ ├── Graph.swift │ │ │ │ ├── Model.swift │ │ │ │ ├── ModelNotification.swift │ │ │ │ ├── Repo.swift │ │ │ │ ├── RichText.swift │ │ │ │ └── Union.swift │ │ │ ├── Networking │ │ │ │ └── HTTP.swift │ │ │ └── Timeline │ │ │ │ └── BlueskyPostViewModel.swift │ │ ├── ChannelService.swift │ │ ├── ClientService.swift │ │ ├── InstanceService.swift │ │ ├── ListService.swift │ │ ├── MastodonKit │ │ │ ├── Client.swift │ │ │ ├── ClientError.swift │ │ │ ├── ClientType.swift │ │ │ ├── Foundation │ │ │ │ ├── CharacterSet.swift │ │ │ │ ├── Data.swift │ │ │ │ ├── DateFormatter.swift │ │ │ │ ├── Decodable.swift │ │ │ │ ├── HTTPURLResponse.swift │ │ │ │ ├── String.swift │ │ │ │ ├── URLComponents.swift │ │ │ │ └── URLRequest.swift │ │ │ ├── Functions.swift │ │ │ ├── HTTPMethod.swift │ │ │ ├── MediaAttachment.swift │ │ │ ├── Models │ │ │ │ ├── AccessScope.swift │ │ │ │ ├── Account.swift │ │ │ │ ├── Application.swift │ │ │ │ ├── Attachment.swift │ │ │ │ ├── AttachmentType.swift │ │ │ │ ├── Card.swift │ │ │ │ ├── CardType.swift │ │ │ │ ├── Category.swift │ │ │ │ ├── Channel.swift │ │ │ │ ├── ChannelOwner.swift │ │ │ │ ├── ClientApplication.swift │ │ │ │ ├── Context.swift │ │ │ │ ├── Conversation.swift │ │ │ │ ├── Emoji.swift │ │ │ │ ├── Empty.swift │ │ │ │ ├── Familiar.swift │ │ │ │ ├── Filters.swift │ │ │ │ ├── HashType.swift │ │ │ │ ├── Hashtag.swift │ │ │ │ ├── Instance.swift │ │ │ │ ├── Joke.swift │ │ │ │ ├── List.swift │ │ │ │ ├── LoginSettings.swift │ │ │ │ ├── Marker.swift │ │ │ │ ├── Mention.swift │ │ │ │ ├── Notification.swift │ │ │ │ ├── NotificationType.swift │ │ │ │ ├── Poll.swift │ │ │ │ ├── Relationship.swift │ │ │ │ ├── RelationshipSeveranceEvent.swift │ │ │ │ ├── RelationshipSeveranceEventType.swift │ │ │ │ ├── Report.swift │ │ │ │ ├── RequestError.swift │ │ │ │ ├── Results.swift │ │ │ │ ├── ScheduledStatus.swift │ │ │ │ ├── Status.swift │ │ │ │ ├── StatusEdit.swift │ │ │ │ ├── StatusPara.swift │ │ │ │ ├── StatusSource.swift │ │ │ │ ├── StatusSourceType.swift │ │ │ │ ├── Suggestion.swift │ │ │ │ ├── Tag.swift │ │ │ │ ├── URL+Mastodon.swift │ │ │ │ ├── Visibility.swift │ │ │ │ └── WebFinger.swift │ │ │ ├── NetworkMonitor.swift │ │ │ ├── Pagination.swift │ │ │ ├── PaginationItem.swift │ │ │ ├── Parameter.swift │ │ │ ├── Payload.swift │ │ │ ├── Request.swift │ │ │ ├── RequestRange.swift │ │ │ ├── Requests │ │ │ │ ├── Accounts.swift │ │ │ │ ├── Blocks.swift │ │ │ │ ├── Bookmarks.swift │ │ │ │ ├── Channels.swift │ │ │ │ ├── Clients.swift │ │ │ │ ├── DomainBlocks.swift │ │ │ │ ├── Favourites.swift │ │ │ │ ├── FilterPosts.swift │ │ │ │ ├── FollowRequests.swift │ │ │ │ ├── ForYou.swift │ │ │ │ ├── Instances.swift │ │ │ │ ├── Lists.swift │ │ │ │ ├── Login.swift │ │ │ │ ├── Media.swift │ │ │ │ ├── Mutes.swift │ │ │ │ ├── Notifications.swift │ │ │ │ ├── Polls.swift │ │ │ │ ├── ProfileDirectory.swift │ │ │ │ ├── Reports.swift │ │ │ │ ├── Search.swift │ │ │ │ ├── Statuses.swift │ │ │ │ ├── Timelines.swift │ │ │ │ └── Trending.swift │ │ │ └── Result.swift │ │ ├── PollService.swift │ │ ├── SearchService.swift │ │ ├── StatusService.swift │ │ └── TimelineService.swift │ ├── Haptics.swift │ ├── Log.swift │ ├── Push │ │ ├── Decode85.swift │ │ ├── DecryptNotification.swift │ │ ├── KeyChainHelper.swift │ │ ├── PushNotificationDataObjects.swift │ │ ├── PushNotificationReceiver.swift │ │ └── SwiftGCM.swift │ ├── Shortcuts │ │ ├── Intents.intentdefinition │ │ └── PostTweetIntentHandler.swift │ ├── Sound │ │ ├── Mute.swift │ │ └── Sound.swift │ ├── VideoProcessor.swift │ └── l10n │ │ └── CrowdinService.swift ├── StoreKitTestCertificate.cer ├── Utils │ ├── Appearance.swift │ ├── Codable │ │ ├── FailableDecodable.swift │ │ ├── Indirect.swift │ │ └── MothSocialJWT.swift │ ├── ColumnFlowLayout.swift │ ├── DeviceHelpers.swift │ ├── DiffSections.swift │ ├── EmailHandler.swift │ ├── Extensions │ │ ├── AccountExtension.swift │ │ ├── Array+Diff.swift │ │ ├── Array+Duplicates.swift │ │ ├── Bundle+decode.swift │ │ ├── BundleExtension.swift │ │ ├── CharacterSet+.swift │ │ ├── Date.swift │ │ ├── Disk │ │ │ ├── Disk+Codable.swift │ │ │ ├── Disk+Data.swift │ │ │ ├── Disk+Errors.swift │ │ │ ├── Disk+Helpers.swift │ │ │ ├── Disk+InternalHelpers.swift │ │ │ ├── Disk+UIImage.swift │ │ │ ├── Disk+VolumeInformation.swift │ │ │ ├── Disk+[Data].swift │ │ │ ├── Disk+[UIImage].swift │ │ │ ├── Disk.h │ │ │ └── Disk.swift │ │ ├── Layout │ │ │ └── UIView+Layout.swift │ │ ├── NumberFormatter+kNotation.swift │ │ ├── ProcessID.swift │ │ ├── ProcessInfo+.swift │ │ ├── Sequence+Async.swift │ │ ├── StatusBar+Height.swift │ │ ├── String+Filename.swift │ │ ├── String+Height.swift │ │ ├── String+Image.swift │ │ ├── String+StripEmojis.swift │ │ ├── Task+Sleep.swift │ │ ├── UIColor+Gradient.swift │ │ ├── UIControl+AddAction.swift │ │ ├── UIImage+Utils.swift │ │ ├── UIImageView+Caching.swift │ │ ├── UILabel+IsTruncated.swift │ │ ├── UITableView+HeaderView.swift │ │ ├── UITableView+SafeScrollToRow.swift │ │ ├── UIView+Constraints.swift │ │ ├── View │ │ │ ├── UIButton+Misc.swift │ │ │ └── UIColor+Asset.swift │ │ └── ViewController │ │ │ ├── ContainerViewController.swift │ │ │ ├── ShareableViewController.swift │ │ │ ├── UIViewController+Alert.swift │ │ │ ├── UIViewController+Child.swift │ │ │ └── UIViewController+isModal.swift │ ├── Formatters │ │ ├── AbbreviatedNumberFormatter.swift │ │ └── RelativeShortDateFormatter.swift │ ├── GIF2MP4.swift │ ├── InstanceFeatures.swift │ ├── LinkOpener.swift │ ├── NavigationHelpers.swift │ ├── ObjectMapper │ │ ├── CodableTransform.swift │ │ ├── CustomDateFormatTransform.swift │ │ ├── DataTransform.swift │ │ ├── DateFormatterTransform.swift │ │ ├── DateTransform.swift │ │ ├── DictionaryTransform.swift │ │ ├── EnumOperators.swift │ │ ├── EnumTransform.swift │ │ ├── FromJSON.swift │ │ ├── HexColorTransform.swift │ │ ├── ISO8601DateTransform.swift │ │ ├── ImmutableMappable.swift │ │ ├── IntegerOperators.swift │ │ ├── Map.swift │ │ ├── MapError.swift │ │ ├── Mappable.swift │ │ ├── Mapper.swift │ │ ├── NSDecimalNumberTransform.swift │ │ ├── Operators.swift │ │ ├── ToJSON.swift │ │ ├── TransformOf.swift │ │ ├── TransformOperators.swift │ │ ├── TransformType.swift │ │ └── URLTransform.swift │ ├── ParseTextAttachments.swift │ ├── PostActions.swift │ ├── Protocols │ │ ├── Jumpable.swift │ │ ├── RequestDelegate.swift │ │ └── RotatingViewController.swift │ ├── SDImageTransformers.swift │ ├── SettingsIcons.swift │ ├── UIKitScreenTracking.swift │ ├── UndoStruct.swift │ └── UserActions.swift └── Views │ ├── AccountSwitcherButton.swift │ ├── AnimatedTabBar.swift │ ├── BlurredBackground.swift │ ├── CarouselNavigationHeader.swift │ ├── Cells │ ├── ActivityCardCell │ │ ├── ActivityCardCell.swift │ │ └── ActivityCardHeader.swift │ ├── AltTextCell.swift │ ├── CollectionImageCell.swift │ ├── ComposeCell.swift │ ├── ComposeQuotePostCell.swift │ ├── DetailActionsCell.swift │ ├── DetailCell.swift │ ├── DetailFooterCell.swift │ ├── DetailImageCell.swift │ ├── DetailImageView.swift │ ├── DetailView.swift │ ├── EditedFooterCell.swift │ ├── EmptyFeedCell.swift │ ├── ErrorCell.swift │ ├── FeedEditorCell.swift │ ├── HashtagCell.swift │ ├── ImagePreviewCell.swift │ ├── InstanceCell.swift │ ├── LoadMoreCell.swift │ ├── LoadingCell.swift │ ├── MessageCell.swift │ ├── MessageDisclaimerCell.swift │ ├── NoResultsCell.swift │ ├── PlainButtonCell.swift │ ├── PollCell.swift │ ├── PostCardCell │ │ ├── PostCardCell.swift │ │ ├── PostCardFooter.swift │ │ ├── PostCardHeader.swift │ │ ├── PostCardHeaderExtension.swift │ │ ├── PostCardImage.swift │ │ ├── PostCardImageAttachment.swift │ │ ├── PostCardImageCollectionCell.swift │ │ ├── PostCardImageCollectionCellSmall.swift │ │ ├── PostCardLinkPreview.swift │ │ ├── PostCardMediaGallery.swift │ │ ├── PostCardMediaStack.swift │ │ ├── PostCardMetadata.swift │ │ ├── PostCardPoll.swift │ │ ├── PostCardProfilePic.swift │ │ ├── PostCardQuotePost.swift │ │ ├── PostCardVideo.swift │ │ └── PostCardWebview.swift │ ├── PostCell.swift │ ├── PostView.swift │ ├── ProfileCell.swift │ ├── ProfileNoteCell.swift │ ├── QuotePostHostView.swift │ ├── QuotePostMutedView.swift │ ├── QuotePostMutedView.xib │ ├── RepostButtonView.swift │ ├── SelectionCell.swift │ ├── SignInInstanceCell.swift │ ├── TextSizeCell.swift │ ├── TrendsCell.swift │ ├── TrendsTopCell.swift │ ├── UpgradeCell.swift │ ├── UserCardCell │ │ ├── UserCardActionButton.swift │ │ └── UserCardCell.swift │ ├── UserCell.swift │ └── VIPCell.swift │ ├── ChannelPic.swift │ ├── CustomVideoPlayer.swift │ ├── ExtendedTouchView.swift │ ├── External │ ├── ALProgressView │ │ ├── Model │ │ │ └── ALTimingFunction.swift │ │ └── Views │ │ │ ├── ALProgressBar.swift │ │ │ └── ALProgressRing.swift │ ├── ActiveLabel │ │ ├── ActiveBuilder.swift │ │ ├── ActiveLabel.h │ │ ├── ActiveLabel.swift │ │ ├── ActiveType.swift │ │ ├── RegexParser.swift │ │ └── StringTrimExtension.swift │ ├── Giphy │ │ ├── CornerRoundingMaskView.swift │ │ ├── GiphyImageSet.swift │ │ ├── GiphyItem.swift │ │ ├── GiphyMeta.swift │ │ ├── GiphyMultipleGIFResponse.swift │ │ ├── GiphyPagination.swift │ │ ├── GiphySimpleItem.swift │ │ ├── GiphySimpleSingleGIFResponse.swift │ │ ├── GiphySingleGIFResponse.swift │ │ ├── GiphyUser.swift │ │ ├── ParsingTransforms.swift │ │ ├── RoundedCornerView.swift │ │ ├── SwiftyGiphyAPI.swift │ │ ├── SwiftyGiphyCollectionViewCell.swift │ │ ├── SwiftyGiphyGridLayout.swift │ │ └── SwiftyGiphyViewController.swift │ └── UIPiPView │ │ ├── UIPiPView.swift │ │ └── UIView+.swift │ ├── FloatLabelFields │ ├── FloatLabelExample │ │ ├── FloatLabelExample.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ │ └── riley.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ └── xcschememanagement.plist │ │ └── FloatLabelExample │ │ │ ├── AppDelegate.swift │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ └── ViewController.swift │ ├── FloatLabelFields │ │ ├── FloatLabelTextField.swift │ │ └── FloatLabelTextView.swift │ ├── LICENSE │ └── README.md │ ├── FollowButton.swift │ ├── GradientBorderView.swift │ ├── GradientButton.swift │ ├── GradientLabel.swift │ ├── LargerTapTargetButton.swift │ ├── MultilineTextField.swift │ ├── NavigationBarTitle.swift │ ├── NewPostButton.swift │ ├── PhotoPicker.swift │ ├── ProfileImage.swift │ ├── ReadMoreButton.swift │ ├── SAConfettiView.swift │ ├── StaticPic.swift │ ├── TableOfContentsSelector.swift │ └── ThinSlider.swift ├── MammothNotificationServiceExtension ├── Info.plist ├── MammothNotificationServiceExtension.entitlements ├── NotificationService.swift └── Utils │ └── String+Helpers.swift ├── MammothTests ├── FollowManagerTest.swift └── LinkOpenerTests.swift ├── MammothUITests ├── MammothUITests.swift └── MammothUITestsLaunchTests.swift ├── README.md ├── bin └── arkana ├── crowdin.yml └── sample.env /.arkana.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/.arkana.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/crowdin-download.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/.github/workflows/crowdin-download.yml -------------------------------------------------------------------------------- /.github/workflows/crowdin-manual-upload.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/.github/workflows/crowdin-manual-upload.yml -------------------------------------------------------------------------------- /.github/workflows/crowdin-upload.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/.github/workflows/crowdin-upload.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.3.2 2 | -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/CONTRIBUTIONS.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Mammoth Share Extension/Base.lproj/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth Share Extension/Base.lproj/MainInterface.storyboard -------------------------------------------------------------------------------- /Mammoth Share Extension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth Share Extension/Info.plist -------------------------------------------------------------------------------- /Mammoth Share Extension/Mammoth Share Extension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth Share Extension/Mammoth Share Extension.entitlements -------------------------------------------------------------------------------- /Mammoth Share Extension/ShareViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth Share Extension/ShareViewController.swift -------------------------------------------------------------------------------- /Mammoth.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Mammoth.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Mammoth.xcodeproj/xcshareddata/IDETemplateMacros.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth.xcodeproj/xcshareddata/IDETemplateMacros.plist -------------------------------------------------------------------------------- /Mammoth.xcodeproj/xcshareddata/xcschemes/Mastodon.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth.xcodeproj/xcshareddata/xcschemes/Mastodon.xcscheme -------------------------------------------------------------------------------- /Mammoth/AppCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/AppCoordinator.swift -------------------------------------------------------------------------------- /Mammoth/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/AppDelegate.swift -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Benson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Benson.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Benson@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Benson@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Benson@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Benson@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Blue Jay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Blue Jay.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Blue Jay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Blue Jay@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Blue Jay@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Blue Jay@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Blueprints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Blueprints.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Blueprints@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Blueprints@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Blueprints@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Blueprints@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Burton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Burton.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Burton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Burton@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Burton@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Burton@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Carroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Carroll.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Carroll@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Carroll@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Carroll@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Carroll@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Dark Mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Dark Mode.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Dark Mode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Dark Mode@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Dark Mode@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Dark Mode@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Foil Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Foil Dark.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Foil Dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Foil Dark@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Foil Dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Foil Dark@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Foil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Foil.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Foil@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Foil@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Foil@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Foil@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Gold-Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Gold-Icon.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Gold-Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Gold-Icon@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Gold-Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Gold-Icon@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Granny Smith.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Granny Smith.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Granny Smith@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Granny Smith@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Granny Smith@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Granny Smith@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Icon.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Icon1.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Icon1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Icon1@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Icon1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Icon1@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Icon2.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Icon2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Icon2@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Icon2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Icon2@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Icon3.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Icon3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Icon3@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Icon3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Icon3@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Icon4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Icon4.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Icon4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Icon4@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Icon4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Icon4@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Icon5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Icon5.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Icon5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Icon5@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Icon5@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Icon5@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Icon6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Icon6.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Icon6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Icon6@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Icon6@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Icon6@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Icon@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Icon@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconB.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconB1.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconB1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconB1@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconB1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconB1@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconB2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconB2.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconB2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconB2@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconB2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconB2@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconB3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconB3.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconB3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconB3@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconB3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconB3@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconB4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconB4.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconB4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconB4@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconB4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconB4@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconB5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconB5.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconB5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconB5@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconB5@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconB5@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconB6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconB6.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconB6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconB6@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconB6@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconB6@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconB@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconB@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconB@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconB@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconBBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconBBlack.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconBBlack@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconBBlack@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconBBlack@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconBBlack@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconBlack.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconBlack@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconBlack@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconBlack@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconBlack@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconC.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconC1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconC1.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconC1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconC1@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconC1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconC1@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconC2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconC2.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconC2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconC2@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconC2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconC2@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconC3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconC3.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconC3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconC3@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconC3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconC3@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconC4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconC4.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconC4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconC4@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconC4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconC4@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconC5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconC5.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconC5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconC5@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconC5@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconC5@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconC6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconC6.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconC6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconC6@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconC6@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconC6@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconC@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconC@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconC@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconC@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconCBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconCBlack.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconCBlack@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconCBlack@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconCBlack@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconCBlack@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconPride.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconPride.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconPride@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconPride@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/IconPride@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/IconPride@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Layout.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Layout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Layout@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Layout@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Layout@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Margot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Margot.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Margot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Margot@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Margot@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Margot@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Newsprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Newsprint.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Newsprint@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Newsprint@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Newsprint@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Newsprint@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Nicholas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Nicholas.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Nicholas@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Nicholas@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Nicholas@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Nicholas@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/OG Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/OG Light.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/OG Light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/OG Light@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/OG Light@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/OG Light@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/OG Margot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/OG Margot.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/OG Margot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/OG Margot@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/OG Margot@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/OG Margot@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/OG Monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/OG Monochrome.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/OG Monochrome@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/OG Monochrome@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/OG Monochrome@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/OG Monochrome@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/OG Pride.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/OG Pride.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/OG Pride@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/OG Pride@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/OG Pride@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/OG Pride@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/OG Pumpkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/OG Pumpkin.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/OG Pumpkin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/OG Pumpkin@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/OG Pumpkin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/OG Pumpkin@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/OG Six Colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/OG Six Colors.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/OG Six Colors@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/OG Six Colors@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/OG Six Colors@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/OG Six Colors@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/OG White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/OG White.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/OG White@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/OG White@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/OG White@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/OG White@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/OG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/OG.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/OG@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/OG@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/OG@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/OG@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Paper Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Paper Dark.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Paper Dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Paper Dark@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Paper Dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Paper Dark@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Paper Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Paper Light.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Paper Light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Paper Light@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Paper Light@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Paper Light@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Pride Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Pride Dark.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Pride Dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Pride Dark@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Pride Dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Pride Dark@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Pride Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Pride Light.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Pride Light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Pride Light@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Pride Light@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Pride Light@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Pride Slant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Pride Slant.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Pride Slant@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Pride Slant@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Pride Slant@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Pride Slant@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Pride.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Pride.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Pride@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Pride@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Pride@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Pride@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Schultz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Schultz.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Schultz@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Schultz@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Schultz@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Schultz@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Six Colors Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Six Colors Dark.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Six Colors Dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Six Colors Dark@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Six Colors Dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Six Colors Dark@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Six Colors Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Six Colors Light.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Six Colors Light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Six Colors Light@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Six Colors Light@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Six Colors Light@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Six Colors Slant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Six Colors Slant.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Six Colors Slant@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Six Colors Slant@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Six Colors Slant@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Six Colors Slant@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Six Colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Six Colors.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Six Colors@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Six Colors@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Six Colors@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Six Colors@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Soft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Soft.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Soft@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Soft@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Soft@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Soft@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Stealth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Stealth.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Stealth@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Stealth@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Stealth@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Stealth@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Sticker.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Sticker@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Sticker@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Alt Icons/Sticker@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Alt Icons/Sticker@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/AppCol.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/AppCol.colorset/Contents.json -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/appstore1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/appstore1024.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/ipad152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/ipad152.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/ipad76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/ipad76.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/ipadPro167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/ipadPro167.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/iphone120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/iphone120.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/iphone180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/iphone180.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/mac1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/mac1024.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/mac128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/mac128.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/mac16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/mac16.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/mac256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/mac256.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/mac32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/mac32.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/mac512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/mac512.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/mac64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/mac64.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/settings58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/settings58.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/settings87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/settings87.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/spotlight120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/spotlight120.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/spotlight80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/AppIcon.appiconset/spotlight80.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/AppIconHighRes.imageset/ipad76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/AppIconHighRes.imageset/ipad76.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/Colors/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/Colors/Contents.json -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/Colors/Gold.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/Colors/Gold.colorset/Contents.json -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/HCColors/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/HCColors/Contents.json -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/Hashtag.imageset/Avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/Hashtag.imageset/Avatar.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/Hashtag.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/Hashtag.imageset/Contents.json -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/Icon1-400.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/Icon1-400.imageset/Contents.json -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/Icon1-400.imageset/Icon1-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/Icon1-400.imageset/Icon1-400.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/Icon3-400.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/Icon3-400.imageset/Contents.json -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/Icon3-400.imageset/Icon3-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/Icon3-400.imageset/Icon3-400.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/Icon4-400.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/Icon4-400.imageset/Contents.json -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/Icon4-400.imageset/Icon4-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/Icon4-400.imageset/Icon4-400.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/Icon5-400.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/Icon5-400.imageset/Contents.json -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/Icon5-400.imageset/Icon5-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/Icon5-400.imageset/Icon5-400.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/Icon6-400.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/Icon6-400.imageset/Contents.json -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/Icon6-400.imageset/Icon6-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/Icon6-400.imageset/Icon6-400.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/LaunchSc.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/LaunchSc.imageset/Contents.json -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/Mammoth.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/Mammoth.imageset/Contents.json -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/Mammoth.imageset/Frame 3908.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/Mammoth.imageset/Frame 3908.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/Mammoth.imageset/Frame 3908@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/Mammoth.imageset/Frame 3908@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/Mammoth.imageset/Frame 3908@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/Mammoth.imageset/Frame 3908@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/Mammoth.imageset/Frame 3943.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/Mammoth.imageset/Frame 3943.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/Mammoth.imageset/Frame 3943@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/Mammoth.imageset/Frame 3943@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/Mammoth.imageset/Frame 3943@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/Mammoth.imageset/Frame 3943@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/confetti.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/confetti.imageset/Contents.json -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/confetti.imageset/confetti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/confetti.imageset/confetti.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/ico.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/ico.imageset/Contents.json -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/ico.imageset/ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/ico.imageset/ico.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/ico.imageset/ico@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/ico.imageset/ico@2x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/ico.imageset/ico@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/ico.imageset/ico@3x.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/launchBG.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/launchBG.colorset/Contents.json -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/mastodon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/mastodon.imageset/Contents.json -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/mastodon.imageset/mastodon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/mastodon.imageset/mastodon.pdf -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/missing.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/missing.imageset/Contents.json -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/missing.imageset/missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/missing.imageset/missing.png -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/selectedCell.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/selectedCell.colorset/Contents.json -------------------------------------------------------------------------------- /Mammoth/Assets/Assets.xcassets/spinnerBG.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Assets.xcassets/spinnerBG.colorset/Contents.json -------------------------------------------------------------------------------- /Mammoth/Assets/Fonts/FontAwesome.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Fonts/FontAwesome.swift -------------------------------------------------------------------------------- /Mammoth/Assets/Fonts/InstrumentSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Fonts/InstrumentSerif-Regular.ttf -------------------------------------------------------------------------------- /Mammoth/Assets/Fonts/custom-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Fonts/custom-icons.ttf -------------------------------------------------------------------------------- /Mammoth/Assets/Fonts/fa-brand.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Fonts/fa-brand.otf -------------------------------------------------------------------------------- /Mammoth/Assets/Fonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Fonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /Mammoth/Assets/Fonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Fonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /Mammoth/Assets/Sounds/mute.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Sounds/mute.aiff -------------------------------------------------------------------------------- /Mammoth/Assets/Sounds/soundError.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Sounds/soundError.wav -------------------------------------------------------------------------------- /Mammoth/Assets/Sounds/soundMallet.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Sounds/soundMallet.wav -------------------------------------------------------------------------------- /Mammoth/Assets/Sounds/soundPublished.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Sounds/soundPublished.wav -------------------------------------------------------------------------------- /Mammoth/Assets/Sounds/soundPublished2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Sounds/soundPublished2.wav -------------------------------------------------------------------------------- /Mammoth/Assets/Sounds/soundPush.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Sounds/soundPush.wav -------------------------------------------------------------------------------- /Mammoth/Assets/Sounds/soundRemove.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Sounds/soundRemove.wav -------------------------------------------------------------------------------- /Mammoth/Assets/Sounds/soundSuction.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Assets/Sounds/soundSuction.wav -------------------------------------------------------------------------------- /Mammoth/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Mammoth/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Mammoth/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/CHANGELOG.md -------------------------------------------------------------------------------- /Mammoth/IAPConfig.storekit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/IAPConfig.storekit -------------------------------------------------------------------------------- /Mammoth/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Info.plist -------------------------------------------------------------------------------- /Mammoth/InfoPlist.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/InfoPlist.xcstrings -------------------------------------------------------------------------------- /Mammoth/Localizable.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Localizable.xcstrings -------------------------------------------------------------------------------- /Mammoth/Mammoth-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Mammoth-Bridging-Header.h -------------------------------------------------------------------------------- /Mammoth/Mammoth.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Mammoth.entitlements -------------------------------------------------------------------------------- /Mammoth/Managers/AVManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Managers/AVManager.swift -------------------------------------------------------------------------------- /Mammoth/Managers/AccountCacher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Managers/AccountCacher.swift -------------------------------------------------------------------------------- /Mammoth/Managers/AccountsManager/AccountsManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Managers/AccountsManager/AccountsManager.swift -------------------------------------------------------------------------------- /Mammoth/Managers/AccountsManager/AccountsManagerShim.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Managers/AccountsManager/AccountsManagerShim.swift -------------------------------------------------------------------------------- /Mammoth/Managers/AccountsManager/AcctData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Managers/AccountsManager/AcctData.swift -------------------------------------------------------------------------------- /Mammoth/Managers/AccountsManager/AcctDataViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Managers/AccountsManager/AcctDataViewModel.swift -------------------------------------------------------------------------------- /Mammoth/Managers/AccountsManager/AcctHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Managers/AccountsManager/AcctHandler.swift -------------------------------------------------------------------------------- /Mammoth/Managers/AccountsManager/IdentityData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Managers/AccountsManager/IdentityData.swift -------------------------------------------------------------------------------- /Mammoth/Managers/AnalyticsManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Managers/AnalyticsManager.swift -------------------------------------------------------------------------------- /Mammoth/Managers/CloudSyncManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Managers/CloudSyncManager.swift -------------------------------------------------------------------------------- /Mammoth/Managers/FeedsManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Managers/FeedsManager.swift -------------------------------------------------------------------------------- /Mammoth/Managers/FollowManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Managers/FollowManager.swift -------------------------------------------------------------------------------- /Mammoth/Managers/HashtagManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Managers/HashtagManager.swift -------------------------------------------------------------------------------- /Mammoth/Managers/IAPManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Managers/IAPManager.swift -------------------------------------------------------------------------------- /Mammoth/Managers/InstanceManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Managers/InstanceManager.swift -------------------------------------------------------------------------------- /Mammoth/Managers/ListManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Managers/ListManager.swift -------------------------------------------------------------------------------- /Mammoth/Managers/ModerationManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Managers/ModerationManager.swift -------------------------------------------------------------------------------- /Mammoth/Managers/ProfileCacher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Managers/ProfileCacher.swift -------------------------------------------------------------------------------- /Mammoth/Managers/PushNotificationManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Managers/PushNotificationManager.swift -------------------------------------------------------------------------------- /Mammoth/Managers/RealtimeManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Managers/RealtimeManager.swift -------------------------------------------------------------------------------- /Mammoth/Managers/StatusCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Managers/StatusCache.swift -------------------------------------------------------------------------------- /Mammoth/Managers/ToastNotification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Managers/ToastNotification.swift -------------------------------------------------------------------------------- /Mammoth/Models/ActivityCardModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Models/ActivityCardModel.swift -------------------------------------------------------------------------------- /Mammoth/Models/GlobalStruct.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Models/GlobalStruct.swift -------------------------------------------------------------------------------- /Mammoth/Models/InstanceCardModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Models/InstanceCardModel.swift -------------------------------------------------------------------------------- /Mammoth/Models/InstanceData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Models/InstanceData.swift -------------------------------------------------------------------------------- /Mammoth/Models/MAMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Models/MAMenu.swift -------------------------------------------------------------------------------- /Mammoth/Models/NewsFeedListItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Models/NewsFeedListItem.swift -------------------------------------------------------------------------------- /Mammoth/Models/OtherStruct.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Models/OtherStruct.swift -------------------------------------------------------------------------------- /Mammoth/Models/PostCardModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Models/PostCardModel.swift -------------------------------------------------------------------------------- /Mammoth/Models/PostCardTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Models/PostCardTypes.swift -------------------------------------------------------------------------------- /Mammoth/Models/PostLanguages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Models/PostLanguages.swift -------------------------------------------------------------------------------- /Mammoth/Models/UserCardModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Models/UserCardModel.swift -------------------------------------------------------------------------------- /Mammoth/Models/UserCardTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Models/UserCardTypes.swift -------------------------------------------------------------------------------- /Mammoth/Models/ViewState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Models/ViewState.swift -------------------------------------------------------------------------------- /Mammoth/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/SceneDelegate.swift -------------------------------------------------------------------------------- /Mammoth/Screens/ActivityScreen/ActivityViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/ActivityScreen/ActivityViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Authentication/AuthenticationErrors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Authentication/AuthenticationErrors.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Authentication/BioMetricAuthenticator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Authentication/BioMetricAuthenticator.swift -------------------------------------------------------------------------------- /Mammoth/Screens/ChatMessageViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/ChatMessageViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Composer/AltTextViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Composer/AltTextViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Composer/EmojiCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Composer/EmojiCell.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Composer/EmoticonPickerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Composer/EmoticonPickerViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Composer/NewPostViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Composer/NewPostViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Composer/PollViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Composer/PollViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Composer/TranslationComposeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Composer/TranslationComposeViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Composer/UndoWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Composer/UndoWidget.swift -------------------------------------------------------------------------------- /Mammoth/Screens/DetailScreen/DetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/DetailScreen/DetailViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/DetailScreen/DetailViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/DetailScreen/DetailViewModel.swift -------------------------------------------------------------------------------- /Mammoth/Screens/DetailScreen/Views/ScrollUpIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/DetailScreen/Views/ScrollUpIndicator.swift -------------------------------------------------------------------------------- /Mammoth/Screens/DiscoveryScreen/DiscoverSuggestionsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/DiscoveryScreen/DiscoverSuggestionsViewModel.swift -------------------------------------------------------------------------------- /Mammoth/Screens/DiscoveryScreen/DiscoveryViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/DiscoveryScreen/DiscoveryViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/DiscoveryScreen/DiscoveryViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/DiscoveryScreen/DiscoveryViewModel.swift -------------------------------------------------------------------------------- /Mammoth/Screens/DiscoveryScreen/HashtagsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/DiscoveryScreen/HashtagsViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/DiscoveryScreen/HashtagsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/DiscoveryScreen/HashtagsViewModel.swift -------------------------------------------------------------------------------- /Mammoth/Screens/DiscoveryScreen/InstancesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/DiscoveryScreen/InstancesViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/DiscoveryScreen/InstancesViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/DiscoveryScreen/InstancesViewModel.swift -------------------------------------------------------------------------------- /Mammoth/Screens/DiscoveryScreen/PostResultsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/DiscoveryScreen/PostResultsViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/DiscoveryScreen/PostResultsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/DiscoveryScreen/PostResultsViewModel.swift -------------------------------------------------------------------------------- /Mammoth/Screens/DiscoveryScreen/SearchHostViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/DiscoveryScreen/SearchHostViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/DiscoveryScreen/SearchHostViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/DiscoveryScreen/SearchHostViewModel.swift -------------------------------------------------------------------------------- /Mammoth/Screens/DiscoveryScreen/Views/SearchHostHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/DiscoveryScreen/Views/SearchHostHeaderView.swift -------------------------------------------------------------------------------- /Mammoth/Screens/DiscoveryScreen/Views/SectionHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/DiscoveryScreen/Views/SectionHeader.swift -------------------------------------------------------------------------------- /Mammoth/Screens/EditFieldsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/EditFieldsViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/EditProfileViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/EditProfileViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/ExploreViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/ExploreViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/External/SKPhotoBrowser/SKActionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/External/SKPhotoBrowser/SKActionView.swift -------------------------------------------------------------------------------- /Mammoth/Screens/External/SKPhotoBrowser/SKAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/External/SKPhotoBrowser/SKAnimator.swift -------------------------------------------------------------------------------- /Mammoth/Screens/External/SKPhotoBrowser/SKButtons.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/External/SKPhotoBrowser/SKButtons.swift -------------------------------------------------------------------------------- /Mammoth/Screens/External/SKPhotoBrowser/SKCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/External/SKPhotoBrowser/SKCache.swift -------------------------------------------------------------------------------- /Mammoth/Screens/External/SKPhotoBrowser/SKCacheable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/External/SKPhotoBrowser/SKCacheable.swift -------------------------------------------------------------------------------- /Mammoth/Screens/External/SKPhotoBrowser/SKCaptionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/External/SKPhotoBrowser/SKCaptionView.swift -------------------------------------------------------------------------------- /Mammoth/Screens/External/SKPhotoBrowser/SKDetectingImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/External/SKPhotoBrowser/SKDetectingImageView.swift -------------------------------------------------------------------------------- /Mammoth/Screens/External/SKPhotoBrowser/SKDetectingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/External/SKPhotoBrowser/SKDetectingView.swift -------------------------------------------------------------------------------- /Mammoth/Screens/External/SKPhotoBrowser/SKIndicatorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/External/SKPhotoBrowser/SKIndicatorView.swift -------------------------------------------------------------------------------- /Mammoth/Screens/External/SKPhotoBrowser/SKLocalPhoto.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/External/SKPhotoBrowser/SKLocalPhoto.swift -------------------------------------------------------------------------------- /Mammoth/Screens/External/SKPhotoBrowser/SKMesurement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/External/SKPhotoBrowser/SKMesurement.swift -------------------------------------------------------------------------------- /Mammoth/Screens/External/SKPhotoBrowser/SKPaginationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/External/SKPhotoBrowser/SKPaginationView.swift -------------------------------------------------------------------------------- /Mammoth/Screens/External/SKPhotoBrowser/SKPagingScrollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/External/SKPhotoBrowser/SKPagingScrollView.swift -------------------------------------------------------------------------------- /Mammoth/Screens/External/SKPhotoBrowser/SKPhoto.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/External/SKPhotoBrowser/SKPhoto.swift -------------------------------------------------------------------------------- /Mammoth/Screens/External/SKPhotoBrowser/SKPhotoBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/External/SKPhotoBrowser/SKPhotoBrowser.h -------------------------------------------------------------------------------- /Mammoth/Screens/External/SKPhotoBrowser/SKPhotoBrowser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/External/SKPhotoBrowser/SKPhotoBrowser.swift -------------------------------------------------------------------------------- /Mammoth/Screens/External/SKPhotoBrowser/SKToolbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/External/SKPhotoBrowser/SKToolbar.swift -------------------------------------------------------------------------------- /Mammoth/Screens/External/SKPhotoBrowser/SKZoomingScrollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/External/SKPhotoBrowser/SKZoomingScrollView.swift -------------------------------------------------------------------------------- /Mammoth/Screens/External/TOCropViewController/Views/TOCropView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/External/TOCropViewController/Views/TOCropView.h -------------------------------------------------------------------------------- /Mammoth/Screens/External/TOCropViewController/Views/TOCropView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/External/TOCropViewController/Views/TOCropView.m -------------------------------------------------------------------------------- /Mammoth/Screens/FilterDetailsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/FilterDetailsViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/FiltersViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/FiltersViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/GalleryViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/GalleryViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/HomeScreen/FeedEditorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/HomeScreen/FeedEditorViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/HomeScreen/FeedEditorViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/HomeScreen/FeedEditorViewModel.swift -------------------------------------------------------------------------------- /Mammoth/Screens/HomeScreen/HomeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/HomeScreen/HomeViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/HomeScreen/NewsFeedViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/HomeScreen/NewsFeedViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/HomeScreen/NewsFeedViewModel+Caching.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/HomeScreen/NewsFeedViewModel+Caching.swift -------------------------------------------------------------------------------- /Mammoth/Screens/HomeScreen/NewsFeedViewModel+DataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/HomeScreen/NewsFeedViewModel+DataSource.swift -------------------------------------------------------------------------------- /Mammoth/Screens/HomeScreen/NewsFeedViewModel+ScrollPositions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/HomeScreen/NewsFeedViewModel+ScrollPositions.swift -------------------------------------------------------------------------------- /Mammoth/Screens/HomeScreen/NewsFeedViewModel+Services.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/HomeScreen/NewsFeedViewModel+Services.swift -------------------------------------------------------------------------------- /Mammoth/Screens/HomeScreen/NewsFeedViewModel+UnreadCount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/HomeScreen/NewsFeedViewModel+UnreadCount.swift -------------------------------------------------------------------------------- /Mammoth/Screens/HomeScreen/NewsFeedViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/HomeScreen/NewsFeedViewModel.swift -------------------------------------------------------------------------------- /Mammoth/Screens/HomeScreen/Views/Carousel/Carousel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/HomeScreen/Views/Carousel/Carousel.swift -------------------------------------------------------------------------------- /Mammoth/Screens/HomeScreen/Views/Carousel/CarouselFlowLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/HomeScreen/Views/Carousel/CarouselFlowLayout.swift -------------------------------------------------------------------------------- /Mammoth/Screens/HomeScreen/Views/Carousel/CarouselItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/HomeScreen/Views/Carousel/CarouselItem.swift -------------------------------------------------------------------------------- /Mammoth/Screens/HomeScreen/Views/JumpToLatest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/HomeScreen/Views/JumpToLatest.swift -------------------------------------------------------------------------------- /Mammoth/Screens/HomeScreen/Views/LatestPill.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/HomeScreen/Views/LatestPill.swift -------------------------------------------------------------------------------- /Mammoth/Screens/HomeScreen/Views/UnreadIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/HomeScreen/Views/UnreadIndicator.swift -------------------------------------------------------------------------------- /Mammoth/Screens/LikedByMutedBlockedViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/LikedByMutedBlockedViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/LiveTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/LiveTableViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/MentionsScreen/MentionsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/MentionsScreen/MentionsViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/ProfileDirectoryViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/ProfileDirectoryViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/ProfileFieldsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/ProfileFieldsViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/ProfileNoteViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/ProfileNoteViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/ProfileScreen/ProfileViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/ProfileScreen/ProfileViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/ProfileScreen/ProfileViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/ProfileScreen/ProfileViewModel.swift -------------------------------------------------------------------------------- /Mammoth/Screens/ProfileScreen/Views/ProfileBackButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/ProfileScreen/Views/ProfileBackButton.swift -------------------------------------------------------------------------------- /Mammoth/Screens/ProfileScreen/Views/ProfileCoverImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/ProfileScreen/Views/ProfileCoverImage.swift -------------------------------------------------------------------------------- /Mammoth/Screens/ProfileScreen/Views/ProfileHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/ProfileScreen/Views/ProfileHeader.swift -------------------------------------------------------------------------------- /Mammoth/Screens/ProfileScreen/Views/ProfileNavigationTitle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/ProfileScreen/Views/ProfileNavigationTitle.swift -------------------------------------------------------------------------------- /Mammoth/Screens/ProfileScreen/Views/ProfileSectionHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/ProfileScreen/Views/ProfileSectionHeader.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Registration/Base.lproj/EmailVerificationView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Registration/Base.lproj/EmailVerificationView.xib -------------------------------------------------------------------------------- /Mammoth/Screens/Registration/Base.lproj/IntroViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Registration/Base.lproj/IntroViewController.xib -------------------------------------------------------------------------------- /Mammoth/Screens/Registration/Base.lproj/SetupInstructionsCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Registration/Base.lproj/SetupInstructionsCell.xib -------------------------------------------------------------------------------- /Mammoth/Screens/Registration/Base.lproj/SetupProfile.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Registration/Base.lproj/SetupProfile.xib -------------------------------------------------------------------------------- /Mammoth/Screens/Registration/Base.lproj/SignUpView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Registration/Base.lproj/SignUpView.xib -------------------------------------------------------------------------------- /Mammoth/Screens/Registration/Bluesky/RoundedTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Registration/Bluesky/RoundedTextField.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Registration/Bluesky/SignInPasswordVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Registration/Bluesky/SignInPasswordVC.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Registration/Bluesky/SignInUsernameVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Registration/Bluesky/SignInUsernameVC.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Registration/EmailVerificationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Registration/EmailVerificationViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Registration/IntroViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Registration/IntroViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Registration/OtherInstances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Registration/OtherInstances.json -------------------------------------------------------------------------------- /Mammoth/Screens/Registration/SetupInstructionsCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Registration/SetupInstructionsCell.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Registration/SetupMammothViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Registration/SetupMammothViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Registration/SetupMammothViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Registration/SetupMammothViewModel.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Registration/SetupProfileController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Registration/SetupProfileController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Registration/SignInViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Registration/SignInViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Registration/SignUpViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Registration/SignUpViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Registration/moth.social.Instance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Registration/moth.social.Instance.json -------------------------------------------------------------------------------- /Mammoth/Screens/Registration/mul.lproj/SetupProfile.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Registration/mul.lproj/SetupProfile.xcstrings -------------------------------------------------------------------------------- /Mammoth/Screens/Registration/mul.lproj/SignUpView.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Registration/mul.lproj/SignUpView.xcstrings -------------------------------------------------------------------------------- /Mammoth/Screens/Registration/staging.moth.social.Instance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Registration/staging.moth.social.Instance.json -------------------------------------------------------------------------------- /Mammoth/Screens/ScheduledPostsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/ScheduledPostsViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Settings/About.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Settings/About.rtf -------------------------------------------------------------------------------- /Mammoth/Screens/Settings/AccountsSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Settings/AccountsSettingsViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Settings/AlertsSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Settings/AlertsSettingsViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Settings/AppearanceSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Settings/AppearanceSettingsViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Settings/ComposerSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Settings/ComposerSettingsViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Settings/ContactSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Settings/ContactSettingsViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Settings/DevelopmentViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Settings/DevelopmentViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Settings/HapticsSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Settings/HapticsSettingsViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Settings/IconSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Settings/IconSettingsViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Settings/NotificationSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Settings/NotificationSettingsViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Settings/OpenLinksSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Settings/OpenLinksSettingsViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Settings/SettingsTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Settings/SettingsTypes.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Settings/SettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Settings/SettingsViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Settings/SiriSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Settings/SiriSettingsViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Settings/TextFileViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Settings/TextFileViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Settings/TextShareViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Settings/TextShareViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Settings/ThemeContrastTrait.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Settings/ThemeContrastTrait.swift -------------------------------------------------------------------------------- /Mammoth/Screens/Settings/TranslationSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/Settings/TranslationSettingsViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/TabBarViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/TabBarViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/TutorialOverlay/ArrowAlignment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/TutorialOverlay/ArrowAlignment.swift -------------------------------------------------------------------------------- /Mammoth/Screens/TutorialOverlay/TutorialOverlay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/TutorialOverlay/TutorialOverlay.swift -------------------------------------------------------------------------------- /Mammoth/Screens/TutorialOverlay/Views/TextBubbleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/TutorialOverlay/Views/TextBubbleView.swift -------------------------------------------------------------------------------- /Mammoth/Screens/UserListScreen/UserListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/UserListScreen/UserListViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/UserListScreen/UserListViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/UserListScreen/UserListViewModel.swift -------------------------------------------------------------------------------- /Mammoth/Screens/WebViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/WebViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/iPad/AuxColumnViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/iPad/AuxColumnViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/iPad/AuxFeedViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/iPad/AuxFeedViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/iPad/ColumnViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/iPad/ColumnViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/iPad/SidebarViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/iPad/SidebarViewController.swift -------------------------------------------------------------------------------- /Mammoth/Screens/iPad/SingleColumnViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Screens/iPad/SingleColumnViewController.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/AccountService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/AccountService.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/BlueskyKit/BlueskyAPI/BlueskyAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/BlueskyKit/BlueskyAPI/BlueskyAPI.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/BlueskyKit/Models/Actor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/BlueskyKit/Models/Actor.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/BlueskyKit/Models/Embed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/BlueskyKit/Models/Embed.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/BlueskyKit/Models/Feed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/BlueskyKit/Models/Feed.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/BlueskyKit/Models/Graph.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/BlueskyKit/Models/Graph.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/BlueskyKit/Models/Model.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/BlueskyKit/Models/Model.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/BlueskyKit/Models/ModelNotification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/BlueskyKit/Models/ModelNotification.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/BlueskyKit/Models/Repo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/BlueskyKit/Models/Repo.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/BlueskyKit/Models/RichText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/BlueskyKit/Models/RichText.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/BlueskyKit/Models/Union.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/BlueskyKit/Models/Union.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/BlueskyKit/Networking/HTTP.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/BlueskyKit/Networking/HTTP.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/ChannelService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/ChannelService.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/ClientService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/ClientService.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/InstanceService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/InstanceService.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/ListService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/ListService.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Client.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Client.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/ClientError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/ClientError.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/ClientType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/ClientType.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Foundation/CharacterSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Foundation/CharacterSet.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Foundation/Data.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Foundation/Data.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Foundation/Decodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Foundation/Decodable.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Foundation/String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Foundation/String.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Foundation/URLRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Foundation/URLRequest.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Functions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Functions.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/HTTPMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/HTTPMethod.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/MediaAttachment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/MediaAttachment.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/AccessScope.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/AccessScope.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/Account.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/Account.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/Application.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/Application.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/Attachment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/Attachment.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/AttachmentType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/AttachmentType.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/Card.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/Card.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/CardType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/CardType.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/Category.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/Category.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/Channel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/Channel.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/ChannelOwner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/ChannelOwner.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/Context.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/Context.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/Conversation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/Conversation.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/Emoji.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/Emoji.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/Empty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/Empty.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/Familiar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/Familiar.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/Filters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/Filters.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/HashType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/HashType.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/Hashtag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/Hashtag.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/Instance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/Instance.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/Joke.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/Joke.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/List.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/List.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/LoginSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/LoginSettings.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/Marker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/Marker.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/Mention.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/Mention.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/Notification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/Notification.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/NotificationType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/NotificationType.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/Poll.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/Poll.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/Relationship.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/Relationship.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/Report.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/Report.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/RequestError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/RequestError.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/Results.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/Results.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/ScheduledStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/ScheduledStatus.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/Status.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/Status.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/StatusEdit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/StatusEdit.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/StatusPara.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/StatusPara.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/StatusSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/StatusSource.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/StatusSourceType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/StatusSourceType.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/Suggestion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/Suggestion.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/Tag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/Tag.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/URL+Mastodon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/URL+Mastodon.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/Visibility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/Visibility.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Models/WebFinger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Models/WebFinger.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/NetworkMonitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/NetworkMonitor.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Pagination.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Pagination.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/PaginationItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/PaginationItem.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Parameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Parameter.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Payload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Payload.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Request.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/RequestRange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/RequestRange.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Requests/Accounts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Requests/Accounts.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Requests/Blocks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Requests/Blocks.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Requests/Bookmarks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Requests/Bookmarks.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Requests/Channels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Requests/Channels.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Requests/Clients.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Requests/Clients.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Requests/DomainBlocks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Requests/DomainBlocks.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Requests/Favourites.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Requests/Favourites.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Requests/FilterPosts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Requests/FilterPosts.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Requests/FollowRequests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Requests/FollowRequests.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Requests/ForYou.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Requests/ForYou.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Requests/Instances.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Requests/Instances.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Requests/Lists.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Requests/Lists.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Requests/Login.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Requests/Login.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Requests/Media.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Requests/Media.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Requests/Mutes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Requests/Mutes.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Requests/Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Requests/Notifications.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Requests/Polls.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Requests/Polls.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Requests/Reports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Requests/Reports.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Requests/Search.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Requests/Search.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Requests/Statuses.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Requests/Statuses.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Requests/Timelines.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Requests/Timelines.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Requests/Trending.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Requests/Trending.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/MastodonKit/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/MastodonKit/Result.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/PollService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/PollService.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/SearchService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/SearchService.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/StatusService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/StatusService.swift -------------------------------------------------------------------------------- /Mammoth/Services/Backend/TimelineService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Backend/TimelineService.swift -------------------------------------------------------------------------------- /Mammoth/Services/Haptics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Haptics.swift -------------------------------------------------------------------------------- /Mammoth/Services/Log.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Log.swift -------------------------------------------------------------------------------- /Mammoth/Services/Push/Decode85.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Push/Decode85.swift -------------------------------------------------------------------------------- /Mammoth/Services/Push/DecryptNotification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Push/DecryptNotification.swift -------------------------------------------------------------------------------- /Mammoth/Services/Push/KeyChainHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Push/KeyChainHelper.swift -------------------------------------------------------------------------------- /Mammoth/Services/Push/PushNotificationDataObjects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Push/PushNotificationDataObjects.swift -------------------------------------------------------------------------------- /Mammoth/Services/Push/PushNotificationReceiver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Push/PushNotificationReceiver.swift -------------------------------------------------------------------------------- /Mammoth/Services/Push/SwiftGCM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Push/SwiftGCM.swift -------------------------------------------------------------------------------- /Mammoth/Services/Shortcuts/Intents.intentdefinition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Shortcuts/Intents.intentdefinition -------------------------------------------------------------------------------- /Mammoth/Services/Shortcuts/PostTweetIntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Shortcuts/PostTweetIntentHandler.swift -------------------------------------------------------------------------------- /Mammoth/Services/Sound/Mute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Sound/Mute.swift -------------------------------------------------------------------------------- /Mammoth/Services/Sound/Sound.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/Sound/Sound.swift -------------------------------------------------------------------------------- /Mammoth/Services/VideoProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/VideoProcessor.swift -------------------------------------------------------------------------------- /Mammoth/Services/l10n/CrowdinService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Services/l10n/CrowdinService.swift -------------------------------------------------------------------------------- /Mammoth/StoreKitTestCertificate.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/StoreKitTestCertificate.cer -------------------------------------------------------------------------------- /Mammoth/Utils/Appearance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Appearance.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Codable/FailableDecodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Codable/FailableDecodable.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Codable/Indirect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Codable/Indirect.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Codable/MothSocialJWT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Codable/MothSocialJWT.swift -------------------------------------------------------------------------------- /Mammoth/Utils/ColumnFlowLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/ColumnFlowLayout.swift -------------------------------------------------------------------------------- /Mammoth/Utils/DeviceHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/DeviceHelpers.swift -------------------------------------------------------------------------------- /Mammoth/Utils/DiffSections.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/DiffSections.swift -------------------------------------------------------------------------------- /Mammoth/Utils/EmailHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/EmailHandler.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/AccountExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/AccountExtension.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/Array+Diff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/Array+Diff.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/Array+Duplicates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/Array+Duplicates.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/Bundle+decode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/Bundle+decode.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/BundleExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/BundleExtension.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/CharacterSet+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/CharacterSet+.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/Date.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/Date.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/Disk/Disk+Codable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/Disk/Disk+Codable.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/Disk/Disk+Data.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/Disk/Disk+Data.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/Disk/Disk+Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/Disk/Disk+Errors.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/Disk/Disk+Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/Disk/Disk+Helpers.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/Disk/Disk+InternalHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/Disk/Disk+InternalHelpers.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/Disk/Disk+UIImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/Disk/Disk+UIImage.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/Disk/Disk+VolumeInformation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/Disk/Disk+VolumeInformation.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/Disk/Disk+[Data].swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/Disk/Disk+[Data].swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/Disk/Disk+[UIImage].swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/Disk/Disk+[UIImage].swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/Disk/Disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/Disk/Disk.h -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/Disk/Disk.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/Disk/Disk.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/Layout/UIView+Layout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/Layout/UIView+Layout.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/NumberFormatter+kNotation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/NumberFormatter+kNotation.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/ProcessID.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/ProcessID.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/ProcessInfo+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/ProcessInfo+.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/Sequence+Async.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/Sequence+Async.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/StatusBar+Height.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/StatusBar+Height.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/String+Filename.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/String+Filename.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/String+Height.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/String+Height.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/String+Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/String+Image.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/String+StripEmojis.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/String+StripEmojis.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/Task+Sleep.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/Task+Sleep.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/UIColor+Gradient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/UIColor+Gradient.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/UIControl+AddAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/UIControl+AddAction.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/UIImage+Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/UIImage+Utils.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/UIImageView+Caching.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/UIImageView+Caching.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/UILabel+IsTruncated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/UILabel+IsTruncated.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/UITableView+HeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/UITableView+HeaderView.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/UITableView+SafeScrollToRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/UITableView+SafeScrollToRow.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/UIView+Constraints.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/UIView+Constraints.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/View/UIButton+Misc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/View/UIButton+Misc.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Extensions/View/UIColor+Asset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Extensions/View/UIColor+Asset.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Formatters/AbbreviatedNumberFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Formatters/AbbreviatedNumberFormatter.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Formatters/RelativeShortDateFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Formatters/RelativeShortDateFormatter.swift -------------------------------------------------------------------------------- /Mammoth/Utils/GIF2MP4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/GIF2MP4.swift -------------------------------------------------------------------------------- /Mammoth/Utils/InstanceFeatures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/InstanceFeatures.swift -------------------------------------------------------------------------------- /Mammoth/Utils/LinkOpener.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/LinkOpener.swift -------------------------------------------------------------------------------- /Mammoth/Utils/NavigationHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/NavigationHelpers.swift -------------------------------------------------------------------------------- /Mammoth/Utils/ObjectMapper/CodableTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/ObjectMapper/CodableTransform.swift -------------------------------------------------------------------------------- /Mammoth/Utils/ObjectMapper/CustomDateFormatTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/ObjectMapper/CustomDateFormatTransform.swift -------------------------------------------------------------------------------- /Mammoth/Utils/ObjectMapper/DataTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/ObjectMapper/DataTransform.swift -------------------------------------------------------------------------------- /Mammoth/Utils/ObjectMapper/DateFormatterTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/ObjectMapper/DateFormatterTransform.swift -------------------------------------------------------------------------------- /Mammoth/Utils/ObjectMapper/DateTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/ObjectMapper/DateTransform.swift -------------------------------------------------------------------------------- /Mammoth/Utils/ObjectMapper/DictionaryTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/ObjectMapper/DictionaryTransform.swift -------------------------------------------------------------------------------- /Mammoth/Utils/ObjectMapper/EnumOperators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/ObjectMapper/EnumOperators.swift -------------------------------------------------------------------------------- /Mammoth/Utils/ObjectMapper/EnumTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/ObjectMapper/EnumTransform.swift -------------------------------------------------------------------------------- /Mammoth/Utils/ObjectMapper/FromJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/ObjectMapper/FromJSON.swift -------------------------------------------------------------------------------- /Mammoth/Utils/ObjectMapper/HexColorTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/ObjectMapper/HexColorTransform.swift -------------------------------------------------------------------------------- /Mammoth/Utils/ObjectMapper/ISO8601DateTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/ObjectMapper/ISO8601DateTransform.swift -------------------------------------------------------------------------------- /Mammoth/Utils/ObjectMapper/ImmutableMappable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/ObjectMapper/ImmutableMappable.swift -------------------------------------------------------------------------------- /Mammoth/Utils/ObjectMapper/IntegerOperators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/ObjectMapper/IntegerOperators.swift -------------------------------------------------------------------------------- /Mammoth/Utils/ObjectMapper/Map.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/ObjectMapper/Map.swift -------------------------------------------------------------------------------- /Mammoth/Utils/ObjectMapper/MapError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/ObjectMapper/MapError.swift -------------------------------------------------------------------------------- /Mammoth/Utils/ObjectMapper/Mappable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/ObjectMapper/Mappable.swift -------------------------------------------------------------------------------- /Mammoth/Utils/ObjectMapper/Mapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/ObjectMapper/Mapper.swift -------------------------------------------------------------------------------- /Mammoth/Utils/ObjectMapper/NSDecimalNumberTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/ObjectMapper/NSDecimalNumberTransform.swift -------------------------------------------------------------------------------- /Mammoth/Utils/ObjectMapper/Operators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/ObjectMapper/Operators.swift -------------------------------------------------------------------------------- /Mammoth/Utils/ObjectMapper/ToJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/ObjectMapper/ToJSON.swift -------------------------------------------------------------------------------- /Mammoth/Utils/ObjectMapper/TransformOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/ObjectMapper/TransformOf.swift -------------------------------------------------------------------------------- /Mammoth/Utils/ObjectMapper/TransformOperators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/ObjectMapper/TransformOperators.swift -------------------------------------------------------------------------------- /Mammoth/Utils/ObjectMapper/TransformType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/ObjectMapper/TransformType.swift -------------------------------------------------------------------------------- /Mammoth/Utils/ObjectMapper/URLTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/ObjectMapper/URLTransform.swift -------------------------------------------------------------------------------- /Mammoth/Utils/ParseTextAttachments.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/ParseTextAttachments.swift -------------------------------------------------------------------------------- /Mammoth/Utils/PostActions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/PostActions.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Protocols/Jumpable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Protocols/Jumpable.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Protocols/RequestDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Protocols/RequestDelegate.swift -------------------------------------------------------------------------------- /Mammoth/Utils/Protocols/RotatingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/Protocols/RotatingViewController.swift -------------------------------------------------------------------------------- /Mammoth/Utils/SDImageTransformers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/SDImageTransformers.swift -------------------------------------------------------------------------------- /Mammoth/Utils/SettingsIcons.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/SettingsIcons.swift -------------------------------------------------------------------------------- /Mammoth/Utils/UIKitScreenTracking.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/UIKitScreenTracking.swift -------------------------------------------------------------------------------- /Mammoth/Utils/UndoStruct.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/UndoStruct.swift -------------------------------------------------------------------------------- /Mammoth/Utils/UserActions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Utils/UserActions.swift -------------------------------------------------------------------------------- /Mammoth/Views/AccountSwitcherButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/AccountSwitcherButton.swift -------------------------------------------------------------------------------- /Mammoth/Views/AnimatedTabBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/AnimatedTabBar.swift -------------------------------------------------------------------------------- /Mammoth/Views/BlurredBackground.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/BlurredBackground.swift -------------------------------------------------------------------------------- /Mammoth/Views/CarouselNavigationHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/CarouselNavigationHeader.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/ActivityCardCell/ActivityCardCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/ActivityCardCell/ActivityCardCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/ActivityCardCell/ActivityCardHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/ActivityCardCell/ActivityCardHeader.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/AltTextCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/AltTextCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/CollectionImageCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/CollectionImageCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/ComposeCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/ComposeCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/ComposeQuotePostCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/ComposeQuotePostCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/DetailActionsCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/DetailActionsCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/DetailCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/DetailCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/DetailFooterCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/DetailFooterCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/DetailImageCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/DetailImageCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/DetailImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/DetailImageView.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/DetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/DetailView.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/EditedFooterCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/EditedFooterCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/EmptyFeedCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/EmptyFeedCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/ErrorCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/ErrorCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/FeedEditorCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/FeedEditorCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/HashtagCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/HashtagCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/ImagePreviewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/ImagePreviewCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/InstanceCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/InstanceCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/LoadMoreCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/LoadMoreCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/LoadingCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/LoadingCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/MessageCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/MessageCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/MessageDisclaimerCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/MessageDisclaimerCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/NoResultsCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/NoResultsCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/PlainButtonCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/PlainButtonCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/PollCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/PollCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/PostCardCell/PostCardCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/PostCardCell/PostCardCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/PostCardCell/PostCardFooter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/PostCardCell/PostCardFooter.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/PostCardCell/PostCardHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/PostCardCell/PostCardHeader.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/PostCardCell/PostCardHeaderExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/PostCardCell/PostCardHeaderExtension.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/PostCardCell/PostCardImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/PostCardCell/PostCardImage.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/PostCardCell/PostCardImageAttachment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/PostCardCell/PostCardImageAttachment.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/PostCardCell/PostCardImageCollectionCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/PostCardCell/PostCardImageCollectionCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/PostCardCell/PostCardLinkPreview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/PostCardCell/PostCardLinkPreview.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/PostCardCell/PostCardMediaGallery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/PostCardCell/PostCardMediaGallery.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/PostCardCell/PostCardMediaStack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/PostCardCell/PostCardMediaStack.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/PostCardCell/PostCardMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/PostCardCell/PostCardMetadata.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/PostCardCell/PostCardPoll.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/PostCardCell/PostCardPoll.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/PostCardCell/PostCardProfilePic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/PostCardCell/PostCardProfilePic.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/PostCardCell/PostCardQuotePost.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/PostCardCell/PostCardQuotePost.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/PostCardCell/PostCardVideo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/PostCardCell/PostCardVideo.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/PostCardCell/PostCardWebview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/PostCardCell/PostCardWebview.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/PostCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/PostCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/PostView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/PostView.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/ProfileCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/ProfileCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/ProfileNoteCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/ProfileNoteCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/QuotePostHostView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/QuotePostHostView.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/QuotePostMutedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/QuotePostMutedView.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/QuotePostMutedView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/QuotePostMutedView.xib -------------------------------------------------------------------------------- /Mammoth/Views/Cells/RepostButtonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/RepostButtonView.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/SelectionCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/SelectionCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/SignInInstanceCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/SignInInstanceCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/TextSizeCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/TextSizeCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/TrendsCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/TrendsCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/TrendsTopCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/TrendsTopCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/UpgradeCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/UpgradeCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/UserCardCell/UserCardActionButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/UserCardCell/UserCardActionButton.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/UserCardCell/UserCardCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/UserCardCell/UserCardCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/UserCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/UserCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/Cells/VIPCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/Cells/VIPCell.swift -------------------------------------------------------------------------------- /Mammoth/Views/ChannelPic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/ChannelPic.swift -------------------------------------------------------------------------------- /Mammoth/Views/CustomVideoPlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/CustomVideoPlayer.swift -------------------------------------------------------------------------------- /Mammoth/Views/ExtendedTouchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/ExtendedTouchView.swift -------------------------------------------------------------------------------- /Mammoth/Views/External/ALProgressView/Model/ALTimingFunction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/External/ALProgressView/Model/ALTimingFunction.swift -------------------------------------------------------------------------------- /Mammoth/Views/External/ALProgressView/Views/ALProgressBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/External/ALProgressView/Views/ALProgressBar.swift -------------------------------------------------------------------------------- /Mammoth/Views/External/ActiveLabel/ActiveBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/External/ActiveLabel/ActiveBuilder.swift -------------------------------------------------------------------------------- /Mammoth/Views/External/ActiveLabel/ActiveLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/External/ActiveLabel/ActiveLabel.h -------------------------------------------------------------------------------- /Mammoth/Views/External/ActiveLabel/ActiveLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/External/ActiveLabel/ActiveLabel.swift -------------------------------------------------------------------------------- /Mammoth/Views/External/ActiveLabel/ActiveType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/External/ActiveLabel/ActiveType.swift -------------------------------------------------------------------------------- /Mammoth/Views/External/ActiveLabel/RegexParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/External/ActiveLabel/RegexParser.swift -------------------------------------------------------------------------------- /Mammoth/Views/External/ActiveLabel/StringTrimExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/External/ActiveLabel/StringTrimExtension.swift -------------------------------------------------------------------------------- /Mammoth/Views/External/Giphy/CornerRoundingMaskView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/External/Giphy/CornerRoundingMaskView.swift -------------------------------------------------------------------------------- /Mammoth/Views/External/Giphy/GiphyImageSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/External/Giphy/GiphyImageSet.swift -------------------------------------------------------------------------------- /Mammoth/Views/External/Giphy/GiphyItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/External/Giphy/GiphyItem.swift -------------------------------------------------------------------------------- /Mammoth/Views/External/Giphy/GiphyMeta.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/External/Giphy/GiphyMeta.swift -------------------------------------------------------------------------------- /Mammoth/Views/External/Giphy/GiphyMultipleGIFResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/External/Giphy/GiphyMultipleGIFResponse.swift -------------------------------------------------------------------------------- /Mammoth/Views/External/Giphy/GiphyPagination.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/External/Giphy/GiphyPagination.swift -------------------------------------------------------------------------------- /Mammoth/Views/External/Giphy/GiphySimpleItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/External/Giphy/GiphySimpleItem.swift -------------------------------------------------------------------------------- /Mammoth/Views/External/Giphy/GiphySimpleSingleGIFResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/External/Giphy/GiphySimpleSingleGIFResponse.swift -------------------------------------------------------------------------------- /Mammoth/Views/External/Giphy/GiphySingleGIFResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/External/Giphy/GiphySingleGIFResponse.swift -------------------------------------------------------------------------------- /Mammoth/Views/External/Giphy/GiphyUser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/External/Giphy/GiphyUser.swift -------------------------------------------------------------------------------- /Mammoth/Views/External/Giphy/ParsingTransforms.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/External/Giphy/ParsingTransforms.swift -------------------------------------------------------------------------------- /Mammoth/Views/External/Giphy/RoundedCornerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/External/Giphy/RoundedCornerView.swift -------------------------------------------------------------------------------- /Mammoth/Views/External/Giphy/SwiftyGiphyAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/External/Giphy/SwiftyGiphyAPI.swift -------------------------------------------------------------------------------- /Mammoth/Views/External/Giphy/SwiftyGiphyGridLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/External/Giphy/SwiftyGiphyGridLayout.swift -------------------------------------------------------------------------------- /Mammoth/Views/External/Giphy/SwiftyGiphyViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/External/Giphy/SwiftyGiphyViewController.swift -------------------------------------------------------------------------------- /Mammoth/Views/External/UIPiPView/UIPiPView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/External/UIPiPView/UIPiPView.swift -------------------------------------------------------------------------------- /Mammoth/Views/External/UIPiPView/UIView+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/External/UIPiPView/UIView+.swift -------------------------------------------------------------------------------- /Mammoth/Views/FloatLabelFields/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/FloatLabelFields/LICENSE -------------------------------------------------------------------------------- /Mammoth/Views/FloatLabelFields/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/FloatLabelFields/README.md -------------------------------------------------------------------------------- /Mammoth/Views/FollowButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/FollowButton.swift -------------------------------------------------------------------------------- /Mammoth/Views/GradientBorderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/GradientBorderView.swift -------------------------------------------------------------------------------- /Mammoth/Views/GradientButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/GradientButton.swift -------------------------------------------------------------------------------- /Mammoth/Views/GradientLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/GradientLabel.swift -------------------------------------------------------------------------------- /Mammoth/Views/LargerTapTargetButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/LargerTapTargetButton.swift -------------------------------------------------------------------------------- /Mammoth/Views/MultilineTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/MultilineTextField.swift -------------------------------------------------------------------------------- /Mammoth/Views/NavigationBarTitle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/NavigationBarTitle.swift -------------------------------------------------------------------------------- /Mammoth/Views/NewPostButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/NewPostButton.swift -------------------------------------------------------------------------------- /Mammoth/Views/PhotoPicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/PhotoPicker.swift -------------------------------------------------------------------------------- /Mammoth/Views/ProfileImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/ProfileImage.swift -------------------------------------------------------------------------------- /Mammoth/Views/ReadMoreButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/ReadMoreButton.swift -------------------------------------------------------------------------------- /Mammoth/Views/SAConfettiView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/SAConfettiView.swift -------------------------------------------------------------------------------- /Mammoth/Views/StaticPic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/StaticPic.swift -------------------------------------------------------------------------------- /Mammoth/Views/TableOfContentsSelector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/TableOfContentsSelector.swift -------------------------------------------------------------------------------- /Mammoth/Views/ThinSlider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/Mammoth/Views/ThinSlider.swift -------------------------------------------------------------------------------- /MammothNotificationServiceExtension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/MammothNotificationServiceExtension/Info.plist -------------------------------------------------------------------------------- /MammothNotificationServiceExtension/NotificationService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/MammothNotificationServiceExtension/NotificationService.swift -------------------------------------------------------------------------------- /MammothNotificationServiceExtension/Utils/String+Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/MammothNotificationServiceExtension/Utils/String+Helpers.swift -------------------------------------------------------------------------------- /MammothTests/FollowManagerTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/MammothTests/FollowManagerTest.swift -------------------------------------------------------------------------------- /MammothTests/LinkOpenerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/MammothTests/LinkOpenerTests.swift -------------------------------------------------------------------------------- /MammothUITests/MammothUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/MammothUITests/MammothUITests.swift -------------------------------------------------------------------------------- /MammothUITests/MammothUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/MammothUITests/MammothUITestsLaunchTests.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/README.md -------------------------------------------------------------------------------- /bin/arkana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/bin/arkana -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/crowdin.yml -------------------------------------------------------------------------------- /sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheBLVD/mammoth/HEAD/sample.env --------------------------------------------------------------------------------