├── .gitignore ├── .swiftlint.yml ├── Anilibria.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ └── xcschemes │ └── AniLiberty.xcscheme ├── Anilibria ├── Anilibria.entitlements ├── Classes │ ├── ApplicationLayer │ │ ├── AppDelegate │ │ │ └── AppDelegate.swift │ │ ├── Dependencies │ │ │ ├── AppFramework.swift │ │ │ └── DependenciesConfiguration.swift │ │ └── MainCoordinator │ │ │ ├── AppRouter.swift │ │ │ └── MainAppCoordinator.swift │ ├── Common │ │ ├── Error │ │ │ ├── AppError.swift │ │ │ └── ErrorCodes.swift │ │ ├── Logger │ │ │ ├── Logger.swift │ │ │ └── SimpleLogger.swift │ │ ├── Mapping │ │ │ ├── AttributedConverter.swift │ │ │ ├── Converter.swift │ │ │ ├── DateConverter.swift │ │ │ └── URLConverter.swift │ │ ├── Models │ │ │ ├── AniConfig.swift │ │ │ ├── AuthProvider.swift │ │ │ ├── FilterData.swift │ │ │ ├── Franchise.swift │ │ │ ├── FranchiseRelease.swift │ │ │ ├── HistoryData.swift │ │ │ ├── LinkData.swift │ │ │ ├── ListItem.swift │ │ │ ├── MenuItems.swift │ │ │ ├── News.swift │ │ │ ├── PageData.swift │ │ │ ├── PlayListItem.swift │ │ │ ├── PlayerContext.swift │ │ │ ├── PlayerSettings.swift │ │ │ ├── PromoItem.swift │ │ │ ├── Schedule.swift │ │ │ ├── ScheduleItem.swift │ │ │ ├── Series.swift │ │ │ ├── SessionState.swift │ │ │ ├── ShortSchedule.swift │ │ │ ├── Sorting.swift │ │ │ ├── TeamMember.swift │ │ │ ├── Torrent.swift │ │ │ ├── User.swift │ │ │ ├── UserCollectionData.swift │ │ │ ├── UserCollectionKey.swift │ │ │ ├── UserCollectionType.swift │ │ │ └── WeekDay.swift │ │ └── Other │ │ │ ├── AttributeStringBuilder.swift │ │ │ ├── MacOSHelper.swift │ │ │ ├── ObjcActionHolder.swift │ │ │ └── OrderedSet.swift │ ├── DataLayer │ │ ├── BackendRepository │ │ │ ├── BackendRepository.swift │ │ │ ├── Extension │ │ │ │ ├── CodableExtension.swift │ │ │ │ ├── DictionaryExtension.swift │ │ │ │ ├── PublisherExtension.swift │ │ │ │ └── ThreadSafeCombineLatest.swift │ │ │ ├── Interseptors │ │ │ │ ├── MainRequestModifier.swift │ │ │ │ ├── MainRetrier.swift │ │ │ │ └── SimpleRetrier.swift │ │ │ ├── Network │ │ │ │ ├── NetworkManager.swift │ │ │ │ └── NetworkProtocols.swift │ │ │ ├── Request │ │ │ │ ├── BackendAPIRequest.swift │ │ │ │ ├── BackendConfiguration.swift │ │ │ │ └── PlainUrlRequest.swift │ │ │ └── Response │ │ │ │ └── BackendResponseConverter.swift │ │ ├── ClearableManager.swift │ │ ├── ConfigRepository │ │ │ └── ConfigRepository.swift │ │ ├── HistoryRepository │ │ │ └── HistoryRepository.swift │ │ ├── LInksRepository │ │ │ └── LinksRepository.swift │ │ ├── PlayerSettingsRepository │ │ │ └── PlayerSettingsRepository.swift │ │ ├── SecureStorage.swift │ │ ├── TokenRepository │ │ │ └── TokenRepository.swift │ │ └── UserRepository │ │ │ └── UserRepository.swift │ ├── PresentationLayer │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ ├── BaseClasses │ │ │ ├── BaseCell │ │ │ │ └── BaseCollectionCell.swift │ │ │ ├── BaseRouter │ │ │ │ ├── Chaperone.swift │ │ │ │ ├── Router.swift │ │ │ │ └── Transition │ │ │ │ │ └── WindowTransition.swift │ │ │ ├── BaseViewController │ │ │ │ ├── BaseCollectionViewController.swift │ │ │ │ ├── BaseNavigationController.swift │ │ │ │ └── BaseViewController.swift │ │ │ ├── PresentationControllers │ │ │ │ ├── BlurPresentationController.swift │ │ │ │ └── DropDownPresentationController.swift │ │ │ └── Protocols │ │ │ │ ├── ActivityBehavior.swift │ │ │ │ ├── RefreshBehavior.swift │ │ │ │ ├── ViewControllerEventHandler.swift │ │ │ │ └── WaitingBehavior.swift │ │ ├── Common │ │ │ ├── Alert │ │ │ │ └── MRAppAlertController.swift │ │ │ ├── CollectionAdapter │ │ │ │ ├── CollectionAdapter.swift │ │ │ │ ├── CollectionContent.swift │ │ │ │ ├── CollectionContext.swift │ │ │ │ └── SectionAdapter.swift │ │ │ ├── Pagination │ │ │ │ ├── PaginationAdapter.swift │ │ │ │ ├── PaginationCell.swift │ │ │ │ ├── PaginationCell.xib │ │ │ │ └── PaginationViewModel.swift │ │ │ ├── Routes │ │ │ │ ├── AlertRoute.swift │ │ │ │ ├── AppUrlRoute.swift │ │ │ │ ├── BackRoute.swift │ │ │ │ ├── ErrorHandlingRoute.swift │ │ │ │ ├── PermissionRoute.swift │ │ │ │ ├── SafariRoute.swift │ │ │ │ └── ShareRoute.swift │ │ │ └── Views │ │ │ │ ├── AttributeLinksView.swift │ │ │ │ ├── BarButton.swift │ │ │ │ ├── BorderedView.swift │ │ │ │ ├── DraggableRippleCell.swift │ │ │ │ ├── DraggableView.swift │ │ │ │ ├── FeedbackGenerator.swift │ │ │ │ ├── Gradient.swift │ │ │ │ ├── HideableView.swift │ │ │ │ ├── Layouts │ │ │ │ └── SectionBackgroundCollectionViewCompositionalLayout.swift │ │ │ │ ├── LoadableView.swift │ │ │ │ ├── Loader │ │ │ │ ├── MRLoaderView.swift │ │ │ │ └── MRLoaderView.xib │ │ │ │ ├── MRLoaderManager.swift │ │ │ │ ├── MRTextField.swift │ │ │ │ ├── PagerView.swift │ │ │ │ ├── PlaceholderViewController │ │ │ │ ├── PlaceholderViewController.swift │ │ │ │ └── PlaceholderViewController.xib │ │ │ │ ├── Player │ │ │ │ ├── DefaultPlayer │ │ │ │ │ └── DefaultPlayerView.swift │ │ │ │ ├── Player.swift │ │ │ │ └── PlayerStatus.swift │ │ │ │ ├── PromoView │ │ │ │ ├── PromoVIew.swift │ │ │ │ ├── PromoView.xib │ │ │ │ └── PromoViewModel.swift │ │ │ │ ├── PseudoInteractiveDismissManager.swift │ │ │ │ ├── RangeView │ │ │ │ └── RangeView.swift │ │ │ │ ├── RippleView.swift │ │ │ │ ├── SearchView │ │ │ │ ├── SearchView.swift │ │ │ │ └── SearchView.xib │ │ │ │ ├── ShadowView.swift │ │ │ │ ├── ShimmerView.swift │ │ │ │ ├── StabView │ │ │ │ ├── StubView.swift │ │ │ │ └── StubView.xib │ │ │ │ ├── TagsView.swift │ │ │ │ └── TouchesScrollView.swift │ │ └── Modules │ │ │ ├── ActionSheet │ │ │ ├── ActionSheetAssembly.swift │ │ │ ├── ActionSheetContracts.swift │ │ │ ├── ActionSheetPresenter.swift │ │ │ ├── ActionSheetRouter.swift │ │ │ ├── ActionSheetViewController.swift │ │ │ ├── ActionSheetViewController.xib │ │ │ └── cells │ │ │ │ ├── ChoiceCell │ │ │ │ ├── ChoiceCell.swift │ │ │ │ ├── ChoiceCell.xib │ │ │ │ └── ChoiceCellAdaper.swift │ │ │ │ ├── SheetAdapterSectionFactory.swift │ │ │ │ ├── SheetGroup.swift │ │ │ │ ├── SheetHeaderView.swift │ │ │ │ └── SheetSectionAdapter.swift │ │ │ ├── Catalog │ │ │ ├── CatalogViewController.xib │ │ │ ├── CatalogViewModel.swift │ │ │ ├── MRCatalogAssembly.swift │ │ │ ├── MRCatalogContracts.swift │ │ │ ├── MRCatalogPresenter.swift │ │ │ ├── MRCatalogRouter.swift │ │ │ ├── MRCatalogView.swift │ │ │ └── cells │ │ │ │ ├── SeriesCell.swift │ │ │ │ ├── SeriesCell.xib │ │ │ │ ├── SeriesCellAdapter.swift │ │ │ │ └── SeriesSectionsAdapter.swift │ │ │ ├── Configuration │ │ │ ├── ConfigurationAssembly.swift │ │ │ ├── ConfigurationContracts.swift │ │ │ ├── ConfigurationPresenter.swift │ │ │ ├── ConfigurationRouter.swift │ │ │ ├── ConfigurationViewController.swift │ │ │ └── ConfigurationViewController.xib │ │ │ ├── Feed │ │ │ ├── FeedViewController.xib │ │ │ ├── MRFeedAssembly.swift │ │ │ ├── MRFeedContracts.swift │ │ │ ├── MRFeedPresenter.swift │ │ │ ├── MRFeedRouter.swift │ │ │ ├── MRFeedView.swift │ │ │ └── cells │ │ │ │ ├── ActionCell │ │ │ │ ├── ActionCell.swift │ │ │ │ ├── ActionCell.xib │ │ │ │ └── ActionCellAdapter.swift │ │ │ │ ├── PromoCell │ │ │ │ ├── PromoCell.swift │ │ │ │ ├── PromoCell.xib │ │ │ │ └── PromoCellAdapter.swift │ │ │ │ ├── ScheduleSeriesCell │ │ │ │ ├── ScheduleSeriesCell.swift │ │ │ │ ├── ScheduleSeriesCell.xib │ │ │ │ └── ScheduleSeriesCellAdapter.swift │ │ │ │ ├── SoonCell │ │ │ │ ├── SoonCell.swift │ │ │ │ ├── SoonCell.xib │ │ │ │ ├── SoonCellAdapter.swift │ │ │ │ ├── SoonSectionsAdapter.swift │ │ │ │ └── SoonViewModel.swift │ │ │ │ └── TitleCell │ │ │ │ ├── TitleCell.swift │ │ │ │ ├── TitleCell.xib │ │ │ │ └── TitleCellAdapter.swift │ │ │ ├── Filter │ │ │ ├── FilterViewController.xib │ │ │ ├── MRFilterAssembly.swift │ │ │ ├── MRFilterContracts.swift │ │ │ ├── MRFilterPresenter.swift │ │ │ ├── MRFilterRouter.swift │ │ │ ├── MRFilterView.swift │ │ │ └── cells │ │ │ │ ├── FilterHeaderCell │ │ │ │ ├── FilterHeaderAdapter.swift │ │ │ │ ├── FilterHeaderCell.swift │ │ │ │ └── FilterHeaderCell.xib │ │ │ │ ├── FilterRangeCell │ │ │ │ ├── FilterRangeCell.swift │ │ │ │ ├── FilterRangeCell.xib │ │ │ │ └── FilterRangeItemAdapter.swift │ │ │ │ ├── FilterSingleItemCell │ │ │ │ ├── FilterSingleItemAdapter.swift │ │ │ │ ├── FilterSingleItemCell.swift │ │ │ │ └── FilterSingleItemCell.xib │ │ │ │ ├── FilterTagsCell │ │ │ │ ├── FilterTagCell.swift │ │ │ │ ├── FilterTagCell.xib │ │ │ │ └── FilterTagsAdapter.swift │ │ │ │ └── FilterTitleView │ │ │ │ ├── FilterTitleView.swift │ │ │ │ └── FilterTitleView.xib │ │ │ ├── History │ │ │ ├── HistoryViewController.xib │ │ │ ├── MRHistoryAssembly.swift │ │ │ ├── MRHistoryContracts.swift │ │ │ ├── MRHistoryPresenter.swift │ │ │ ├── MRHistoryRouter.swift │ │ │ └── MRHistoryView.swift │ │ │ ├── LInkDevice │ │ │ ├── LinkDeviceAssembly.swift │ │ │ ├── LinkDeviceContracts.swift │ │ │ ├── LinkDevicePresenter.swift │ │ │ ├── LinkDeviceRouter.swift │ │ │ ├── LinkDeviceViewController.swift │ │ │ └── LinkDeviceViewController.xib │ │ │ ├── MainContainer │ │ │ ├── MRMainContainerAssembly.swift │ │ │ ├── MRMainContainerContracts.swift │ │ │ ├── MRMainContainerPresenter.swift │ │ │ ├── MRMainContainerRouter.swift │ │ │ ├── MRMainContainerView.swift │ │ │ ├── MainContainerViewController.xib │ │ │ └── views │ │ │ │ ├── MenuItemView.swift │ │ │ │ └── MenuItemView.xib │ │ │ ├── News │ │ │ ├── MRNewsAssembly.swift │ │ │ ├── MRNewsContracts.swift │ │ │ ├── MRNewsPresenter.swift │ │ │ ├── MRNewsRouter.swift │ │ │ ├── MRNewsView.swift │ │ │ ├── NewsViewController.xib │ │ │ └── cells │ │ │ │ ├── NewsCell.swift │ │ │ │ ├── NewsCell.xib │ │ │ │ └── NewsCellAdapter.swift │ │ │ ├── Other │ │ │ ├── MROtherAssembly.swift │ │ │ ├── MROtherContracts.swift │ │ │ ├── MROtherPresenter.swift │ │ │ ├── MROtherRouter.swift │ │ │ ├── MROtherView.swift │ │ │ ├── OtherViewController.xib │ │ │ └── views │ │ │ │ ├── LinkView.swift │ │ │ │ └── LinkView.xib │ │ │ ├── Player │ │ │ ├── MRPlayerAssembly.swift │ │ │ ├── MRPlayerRouter.swift │ │ │ ├── MRPlayerView.swift │ │ │ ├── PlayerProgressView.swift │ │ │ ├── PlayerViewController.xib │ │ │ ├── PlayerViewModel.swift │ │ │ └── Views │ │ │ │ ├── PlayItemFilterView │ │ │ │ ├── PlayItemFilterView.swift │ │ │ │ ├── PlayItemFilterView.xib │ │ │ │ ├── PlaylistItemSelectionModel.swift │ │ │ │ └── PlaylistItemSelectionRoute.swift │ │ │ │ ├── PlayerContainerView.swift │ │ │ │ ├── RewindView.swift │ │ │ │ └── SkipContainerVIew │ │ │ │ ├── SkipContainerView.swift │ │ │ │ └── SkipViewModel.swift │ │ │ ├── RestorePassword │ │ │ ├── RestorePasswordAssembly.swift │ │ │ ├── RestorePasswordRouter.swift │ │ │ ├── RestorePasswordViewController.swift │ │ │ ├── RestorePasswordViewController.xib │ │ │ └── RestorePasswordViewModel.swift │ │ │ ├── Schedule │ │ │ ├── MRScheduleAssembly.swift │ │ │ ├── MRScheduleContracts.swift │ │ │ ├── MRSchedulePresenter.swift │ │ │ ├── MRScheduleRouter.swift │ │ │ ├── MRScheduleView.swift │ │ │ └── ScheduleViewController.xib │ │ │ ├── Search │ │ │ ├── MRSearchAssembly.swift │ │ │ ├── MRSearchContracts.swift │ │ │ ├── MRSearchPresenter.swift │ │ │ ├── MRSearchRouter.swift │ │ │ ├── MRSearchView.swift │ │ │ ├── SearchViewController.xib │ │ │ └── cells │ │ │ │ ├── SearchResultAdapter.swift │ │ │ │ ├── SearchResultCell.swift │ │ │ │ └── SearchResultCell.xib │ │ │ ├── Series │ │ │ ├── MRSeriesAssembly.swift │ │ │ ├── MRSeriesContracts.swift │ │ │ ├── MRSeriesPresenter.swift │ │ │ ├── MRSeriesRouter.swift │ │ │ ├── MRSeriesView.swift │ │ │ ├── SeriesViewController.xib │ │ │ └── views │ │ │ │ ├── RelatedSeriesView.swift │ │ │ │ ├── RelatedSeriesView.xib │ │ │ │ ├── SeriesCollectionTypeView.swift │ │ │ │ ├── SeriesFavoriteView.swift │ │ │ │ ├── SeriesHeaderView.swift │ │ │ │ ├── SeriesHeaderView.xib │ │ │ │ ├── TorrentView.swift │ │ │ │ ├── TorrentView.xib │ │ │ │ └── WeekDayView.swift │ │ │ ├── Settings │ │ │ ├── MRSettingsAssembly.swift │ │ │ ├── MRSettingsContracts.swift │ │ │ ├── MRSettingsPresenter.swift │ │ │ ├── MRSettingsRouter.swift │ │ │ ├── MRSettingsView.swift │ │ │ ├── SettingsControlView.swift │ │ │ ├── SettingsControlView.xib │ │ │ └── SettingsViewController.xib │ │ │ ├── SignIn │ │ │ ├── MRSignInAssembly.swift │ │ │ ├── MRSignInContracts.swift │ │ │ ├── MRSignInPresenter.swift │ │ │ ├── MRSignInRouter.swift │ │ │ ├── MRSignInView.swift │ │ │ └── SignInViewController.xib │ │ │ ├── Team │ │ │ ├── MRTeamAssembly.swift │ │ │ ├── MRTeamContracts.swift │ │ │ ├── MRTeamPresenter.swift │ │ │ ├── MRTeamRouter.swift │ │ │ ├── MRTeamView.swift │ │ │ ├── TeamViewController.xib │ │ │ └── cells │ │ │ │ ├── TeamMemberCell.swift │ │ │ │ ├── TeamMemberCell.xib │ │ │ │ ├── TeamMemberCellAdapter.swift │ │ │ │ ├── TeamTitleView.swift │ │ │ │ └── TeamTitleView.xib │ │ │ └── UserCollections │ │ │ ├── UserCollection │ │ │ ├── FavoriteViewModel.swift │ │ │ ├── UserCollectionAssembly.swift │ │ │ ├── UserCollectionRouter.swift │ │ │ ├── UserCollectionViewController.swift │ │ │ ├── UserCollectionViewController.xib │ │ │ └── UserCollectionViewModel.swift │ │ │ ├── UserCollectionsAssembly.swift │ │ │ ├── UserCollectionsViewController.swift │ │ │ ├── UserCollectionsViewController.xib │ │ │ ├── UserCollectionsViewModel.swift │ │ │ └── cells │ │ │ ├── RemovableSeriesCell.swift │ │ │ ├── RemovableSeriesCell.xib │ │ │ ├── RemovableSeriesCellAdapter.swift │ │ │ ├── UserCollectionKeyAdapter.swift │ │ │ ├── UserCollectionKeyCell.swift │ │ │ └── UserCollectionKeyCell.xib │ └── ServiceLayer │ │ ├── AppConfigurationService │ │ └── AppConfigirationService.swift │ │ ├── CatalogService │ │ ├── CatalogService.swift │ │ └── Requests │ │ │ ├── AgeRatingsRequest.swift │ │ │ ├── CatalogRequest.swift │ │ │ ├── GenresRequest.swift │ │ │ ├── ProductionStatusesRequest.swift │ │ │ ├── PublishStatusesRequest.swift │ │ │ ├── ReleaseTypesRequest.swift │ │ │ ├── SeasonsRequest.swift │ │ │ ├── SortingRequest.swift │ │ │ └── YearsRequest.swift │ │ ├── DownloadService │ │ ├── DownloadService.swift │ │ └── Requests │ │ │ └── GetTorrentRequest.swift │ │ ├── FavoriteService │ │ ├── FavoriteService.swift │ │ └── Requests │ │ │ ├── ChangeFavoriteRequest.swift │ │ │ ├── FavoriteFilterAgeRatingsRequest.swift │ │ │ ├── FavoriteFilterGenresRequest.swift │ │ │ ├── FavoriteFilterReleaseTypesRequest.swift │ │ │ ├── FavoriteFilterSortingRequest.swift │ │ │ ├── FavoriteFilterYearsRequest.swift │ │ │ ├── FavoriteIDsRequest.swift │ │ │ └── FavoriteListRequest.swift │ │ ├── LinksService │ │ ├── LinksService.swift │ │ └── Requests │ │ │ └── LinksRequest.swift │ │ ├── MainService │ │ ├── MainService.swift │ │ └── Requests │ │ │ ├── FranchiseRequest.swift │ │ │ ├── NewsRequest.swift │ │ │ ├── PromoRequest.swift │ │ │ ├── RandomSeriesRequest.swift │ │ │ ├── ScheduleNowRequest.swift │ │ │ ├── ScheduleWeekRequest.swift │ │ │ ├── SearchRequest.swift │ │ │ ├── SeriesRequest.swift │ │ │ └── TeamMembersRequest.swift │ │ ├── MenuService │ │ └── MenuService.swift │ │ ├── PlayerService │ │ └── PlayerService.swift │ │ ├── SessionService │ │ ├── Requests │ │ │ ├── AcceptOTPRequest.swift │ │ │ ├── AuthProviderDataRequest.swift │ │ │ ├── ForgotPasswordRequest.swift │ │ │ ├── LoginRequest.swift │ │ │ ├── LogoutRequest.swift │ │ │ ├── ResetPasswordRequest.swift │ │ │ └── UserRequest.swift │ │ └── SessionService.swift │ │ └── UserCollectionsService │ │ ├── Requests │ │ ├── ChangeUserCollectionRequest.swift │ │ ├── CollectionsFilterAgeRatingsRequest.swift │ │ ├── CollectionsFilterGenresRequest.swift │ │ ├── CollectionsFilterReleaseTypesRequest.swift │ │ ├── CollectionsFilterYearsRequest.swift │ │ ├── GetUserCollectionDataRequest.swift │ │ └── UserCollectionListRequest.swift │ │ └── UserCollectionsService.swift ├── Extensions │ ├── ArrayExtension.swift │ ├── BundleExtenstion.swift │ ├── CGFloatExtension.swift │ ├── NSObjectExtension.swift │ ├── PublisherExtensions.swift │ ├── StringExtension.swift │ ├── UICollectionViewCellExtension.swift │ ├── UIControlExtension.swift │ ├── UIImageViewExtension.swift │ ├── UIInterfaceOrientationExtension.swift │ ├── UIScreenExtension.swift │ ├── UITextFieldExtension.swift │ ├── UIViewExtension.swift │ └── UserDefaultsExtension.swift ├── Resources │ ├── Animations │ │ └── nyan_cat.gif │ ├── AppIcon.icon │ │ ├── Assets │ │ │ └── logo-final-black.svg │ │ └── icon.json │ ├── Assets.xcassets │ │ ├── Contents.json │ │ ├── colors │ │ │ ├── Contents.json │ │ │ ├── buttons │ │ │ │ ├── Contents.json │ │ │ │ ├── selected.colorset │ │ │ │ │ └── Contents.json │ │ │ │ └── unselected.colorset │ │ │ │ │ └── Contents.json │ │ │ ├── surfaces │ │ │ │ ├── Contents.json │ │ │ │ ├── background.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── base.colorset │ │ │ │ │ └── Contents.json │ │ │ │ └── content.colorset │ │ │ │ │ └── Contents.json │ │ │ ├── text │ │ │ │ ├── Contents.json │ │ │ │ ├── main.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── monoDark.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── monoLight.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── reversed_main.colorset │ │ │ │ │ └── Contents.json │ │ │ │ └── secondary.colorset │ │ │ │ │ └── Contents.json │ │ │ └── tint │ │ │ │ ├── Contents.json │ │ │ │ ├── active.colorset │ │ │ │ └── Contents.json │ │ │ │ ├── main.colorset │ │ │ │ └── Contents.json │ │ │ │ ├── separator.colorset │ │ │ │ └── Contents.json │ │ │ │ └── shimmer.colorset │ │ │ │ └── Contents.json │ │ └── icons │ │ │ ├── Contents.json │ │ │ ├── icon_anilibria.imageset │ │ │ ├── Contents.json │ │ │ └── logo-final-black.svg │ │ │ ├── icon_boosty.imageset │ │ │ ├── Contents.json │ │ │ └── icon_boosty.svg │ │ │ ├── icon_discord.imageset │ │ │ ├── Contents.json │ │ │ └── icon_discord.pdf │ │ │ ├── icon_filter.imageset │ │ │ ├── Contents.json │ │ │ └── filter.pdf │ │ │ ├── icon_google.imageset │ │ │ ├── Contents.json │ │ │ └── google.pdf │ │ │ ├── icon_patreon.imageset │ │ │ ├── Contents.json │ │ │ └── icon_patreon.pdf │ │ │ ├── icon_settings.imageset │ │ │ ├── Contents.json │ │ │ └── settings.pdf │ │ │ ├── icon_telegram.imageset │ │ │ ├── Contents.json │ │ │ └── icon_telegram.pdf │ │ │ ├── icon_vk.imageset │ │ │ ├── Contents.json │ │ │ └── icon_vk.pdf │ │ │ └── icon_youtube.imageset │ │ │ ├── Contents.json │ │ │ └── menu_item_youtube.pdf │ ├── Configuration.swift │ ├── Constants.swift │ ├── Font │ │ └── AppFont.swift │ ├── Formatters.swift │ ├── Images.swift │ ├── Info.plist │ ├── Localize │ │ ├── GenerationScript.swift │ │ ├── Localizable.swift │ │ ├── Localizable.xcstrings │ │ └── Localization.swift │ └── Theme │ │ ├── AppTheme.swift │ │ ├── InterfaceAppearance.swift │ │ └── InterfaceOrientation.swift └── Vendor │ └── SpringIndicator │ ├── LICENSE │ └── SpringIndicator │ ├── AnimationProcess.swift │ ├── CALayer+Animation.swift │ ├── CAPropertyAnimation+Key.swift │ ├── Double+Math.swift │ ├── RefreshIndicator.swift │ ├── SpringIndicator.h │ └── SpringIndicator.swift ├── LICENSE ├── MacBundle ├── Info.plist ├── MacApp.h └── MacApp.m ├── README.md └── scripts └── release.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /Anilibria.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Anilibria.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Anilibria.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Anilibria.xcodeproj/xcshareddata/xcschemes/AniLiberty.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria.xcodeproj/xcshareddata/xcschemes/AniLiberty.xcscheme -------------------------------------------------------------------------------- /Anilibria/Anilibria.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Anilibria.entitlements -------------------------------------------------------------------------------- /Anilibria/Classes/ApplicationLayer/AppDelegate/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ApplicationLayer/AppDelegate/AppDelegate.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ApplicationLayer/Dependencies/AppFramework.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ApplicationLayer/Dependencies/AppFramework.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ApplicationLayer/Dependencies/DependenciesConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ApplicationLayer/Dependencies/DependenciesConfiguration.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ApplicationLayer/MainCoordinator/AppRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ApplicationLayer/MainCoordinator/AppRouter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ApplicationLayer/MainCoordinator/MainAppCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ApplicationLayer/MainCoordinator/MainAppCoordinator.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Error/AppError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Error/AppError.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Error/ErrorCodes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Error/ErrorCodes.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Logger/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Logger/Logger.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Logger/SimpleLogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Logger/SimpleLogger.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Mapping/AttributedConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Mapping/AttributedConverter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Mapping/Converter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Mapping/Converter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Mapping/DateConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Mapping/DateConverter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Mapping/URLConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Mapping/URLConverter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Models/AniConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Models/AniConfig.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Models/AuthProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Models/AuthProvider.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Models/FilterData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Models/FilterData.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Models/Franchise.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Models/Franchise.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Models/FranchiseRelease.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Models/FranchiseRelease.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Models/HistoryData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Models/HistoryData.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Models/LinkData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Models/LinkData.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Models/ListItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Models/ListItem.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Models/MenuItems.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Models/MenuItems.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Models/News.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Models/News.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Models/PageData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Models/PageData.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Models/PlayListItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Models/PlayListItem.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Models/PlayerContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Models/PlayerContext.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Models/PlayerSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Models/PlayerSettings.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Models/PromoItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Models/PromoItem.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Models/Schedule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Models/Schedule.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Models/ScheduleItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Models/ScheduleItem.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Models/Series.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Models/Series.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Models/SessionState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Models/SessionState.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Models/ShortSchedule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Models/ShortSchedule.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Models/Sorting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Models/Sorting.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Models/TeamMember.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Models/TeamMember.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Models/Torrent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Models/Torrent.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Models/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Models/User.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Models/UserCollectionData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Models/UserCollectionData.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Models/UserCollectionKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Models/UserCollectionKey.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Models/UserCollectionType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Models/UserCollectionType.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Models/WeekDay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Models/WeekDay.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Other/AttributeStringBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Other/AttributeStringBuilder.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Other/MacOSHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Other/MacOSHelper.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Other/ObjcActionHolder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Other/ObjcActionHolder.swift -------------------------------------------------------------------------------- /Anilibria/Classes/Common/Other/OrderedSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/Common/Other/OrderedSet.swift -------------------------------------------------------------------------------- /Anilibria/Classes/DataLayer/BackendRepository/BackendRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/DataLayer/BackendRepository/BackendRepository.swift -------------------------------------------------------------------------------- /Anilibria/Classes/DataLayer/BackendRepository/Extension/CodableExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/DataLayer/BackendRepository/Extension/CodableExtension.swift -------------------------------------------------------------------------------- /Anilibria/Classes/DataLayer/BackendRepository/Extension/DictionaryExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/DataLayer/BackendRepository/Extension/DictionaryExtension.swift -------------------------------------------------------------------------------- /Anilibria/Classes/DataLayer/BackendRepository/Extension/PublisherExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/DataLayer/BackendRepository/Extension/PublisherExtension.swift -------------------------------------------------------------------------------- /Anilibria/Classes/DataLayer/BackendRepository/Extension/ThreadSafeCombineLatest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/DataLayer/BackendRepository/Extension/ThreadSafeCombineLatest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/DataLayer/BackendRepository/Interseptors/MainRequestModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/DataLayer/BackendRepository/Interseptors/MainRequestModifier.swift -------------------------------------------------------------------------------- /Anilibria/Classes/DataLayer/BackendRepository/Interseptors/MainRetrier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/DataLayer/BackendRepository/Interseptors/MainRetrier.swift -------------------------------------------------------------------------------- /Anilibria/Classes/DataLayer/BackendRepository/Interseptors/SimpleRetrier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/DataLayer/BackendRepository/Interseptors/SimpleRetrier.swift -------------------------------------------------------------------------------- /Anilibria/Classes/DataLayer/BackendRepository/Network/NetworkManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/DataLayer/BackendRepository/Network/NetworkManager.swift -------------------------------------------------------------------------------- /Anilibria/Classes/DataLayer/BackendRepository/Network/NetworkProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/DataLayer/BackendRepository/Network/NetworkProtocols.swift -------------------------------------------------------------------------------- /Anilibria/Classes/DataLayer/BackendRepository/Request/BackendAPIRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/DataLayer/BackendRepository/Request/BackendAPIRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/DataLayer/BackendRepository/Request/BackendConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/DataLayer/BackendRepository/Request/BackendConfiguration.swift -------------------------------------------------------------------------------- /Anilibria/Classes/DataLayer/BackendRepository/Request/PlainUrlRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/DataLayer/BackendRepository/Request/PlainUrlRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/DataLayer/BackendRepository/Response/BackendResponseConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/DataLayer/BackendRepository/Response/BackendResponseConverter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/DataLayer/ClearableManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/DataLayer/ClearableManager.swift -------------------------------------------------------------------------------- /Anilibria/Classes/DataLayer/ConfigRepository/ConfigRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/DataLayer/ConfigRepository/ConfigRepository.swift -------------------------------------------------------------------------------- /Anilibria/Classes/DataLayer/HistoryRepository/HistoryRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/DataLayer/HistoryRepository/HistoryRepository.swift -------------------------------------------------------------------------------- /Anilibria/Classes/DataLayer/LInksRepository/LinksRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/DataLayer/LInksRepository/LinksRepository.swift -------------------------------------------------------------------------------- /Anilibria/Classes/DataLayer/PlayerSettingsRepository/PlayerSettingsRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/DataLayer/PlayerSettingsRepository/PlayerSettingsRepository.swift -------------------------------------------------------------------------------- /Anilibria/Classes/DataLayer/SecureStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/DataLayer/SecureStorage.swift -------------------------------------------------------------------------------- /Anilibria/Classes/DataLayer/TokenRepository/TokenRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/DataLayer/TokenRepository/TokenRepository.swift -------------------------------------------------------------------------------- /Anilibria/Classes/DataLayer/UserRepository/UserRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/DataLayer/UserRepository/UserRepository.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/BaseClasses/BaseCell/BaseCollectionCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/BaseClasses/BaseCell/BaseCollectionCell.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/BaseClasses/BaseRouter/Chaperone.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/BaseClasses/BaseRouter/Chaperone.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/BaseClasses/BaseRouter/Router.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/BaseClasses/BaseRouter/Router.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/BaseClasses/BaseRouter/Transition/WindowTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/BaseClasses/BaseRouter/Transition/WindowTransition.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/BaseClasses/BaseViewController/BaseCollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/BaseClasses/BaseViewController/BaseCollectionViewController.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/BaseClasses/BaseViewController/BaseNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/BaseClasses/BaseViewController/BaseNavigationController.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/BaseClasses/BaseViewController/BaseViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/BaseClasses/BaseViewController/BaseViewController.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/BaseClasses/PresentationControllers/BlurPresentationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/BaseClasses/PresentationControllers/BlurPresentationController.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/BaseClasses/PresentationControllers/DropDownPresentationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/BaseClasses/PresentationControllers/DropDownPresentationController.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/BaseClasses/Protocols/ActivityBehavior.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/BaseClasses/Protocols/ActivityBehavior.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/BaseClasses/Protocols/RefreshBehavior.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/BaseClasses/Protocols/RefreshBehavior.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/BaseClasses/Protocols/ViewControllerEventHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/BaseClasses/Protocols/ViewControllerEventHandler.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/BaseClasses/Protocols/WaitingBehavior.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/BaseClasses/Protocols/WaitingBehavior.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Alert/MRAppAlertController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Alert/MRAppAlertController.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/CollectionAdapter/CollectionAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/CollectionAdapter/CollectionAdapter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/CollectionAdapter/CollectionContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/CollectionAdapter/CollectionContent.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/CollectionAdapter/CollectionContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/CollectionAdapter/CollectionContext.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/CollectionAdapter/SectionAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/CollectionAdapter/SectionAdapter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Pagination/PaginationAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Pagination/PaginationAdapter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Pagination/PaginationCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Pagination/PaginationCell.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Pagination/PaginationCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Pagination/PaginationCell.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Pagination/PaginationViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Pagination/PaginationViewModel.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Routes/AlertRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Routes/AlertRoute.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Routes/AppUrlRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Routes/AppUrlRoute.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Routes/BackRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Routes/BackRoute.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Routes/ErrorHandlingRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Routes/ErrorHandlingRoute.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Routes/PermissionRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Routes/PermissionRoute.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Routes/SafariRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Routes/SafariRoute.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Routes/ShareRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Routes/ShareRoute.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/AttributeLinksView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/AttributeLinksView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/BarButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/BarButton.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/BorderedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/BorderedView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/DraggableRippleCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/DraggableRippleCell.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/DraggableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/DraggableView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/FeedbackGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/FeedbackGenerator.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/Gradient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/Gradient.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/HideableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/HideableView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/Layouts/SectionBackgroundCollectionViewCompositionalLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/Layouts/SectionBackgroundCollectionViewCompositionalLayout.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/LoadableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/LoadableView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/Loader/MRLoaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/Loader/MRLoaderView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/Loader/MRLoaderView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/Loader/MRLoaderView.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/MRLoaderManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/MRLoaderManager.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/MRTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/MRTextField.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/PagerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/PagerView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/PlaceholderViewController/PlaceholderViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/PlaceholderViewController/PlaceholderViewController.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/PlaceholderViewController/PlaceholderViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/PlaceholderViewController/PlaceholderViewController.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/Player/DefaultPlayer/DefaultPlayerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/Player/DefaultPlayer/DefaultPlayerView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/Player/Player.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/Player/Player.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/Player/PlayerStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/Player/PlayerStatus.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/PromoView/PromoVIew.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/PromoView/PromoVIew.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/PromoView/PromoView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/PromoView/PromoView.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/PromoView/PromoViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/PromoView/PromoViewModel.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/PseudoInteractiveDismissManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/PseudoInteractiveDismissManager.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/RangeView/RangeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/RangeView/RangeView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/RippleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/RippleView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/SearchView/SearchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/SearchView/SearchView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/SearchView/SearchView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/SearchView/SearchView.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/ShadowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/ShadowView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/ShimmerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/ShimmerView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/StabView/StubView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/StabView/StubView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/StabView/StubView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/StabView/StubView.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/TagsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/TagsView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Common/Views/TouchesScrollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Common/Views/TouchesScrollView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/ActionSheet/ActionSheetAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/ActionSheet/ActionSheetAssembly.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/ActionSheet/ActionSheetContracts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/ActionSheet/ActionSheetContracts.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/ActionSheet/ActionSheetPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/ActionSheet/ActionSheetPresenter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/ActionSheet/ActionSheetRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/ActionSheet/ActionSheetRouter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/ActionSheet/ActionSheetViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/ActionSheet/ActionSheetViewController.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/ActionSheet/ActionSheetViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/ActionSheet/ActionSheetViewController.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/ActionSheet/cells/ChoiceCell/ChoiceCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/ActionSheet/cells/ChoiceCell/ChoiceCell.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/ActionSheet/cells/ChoiceCell/ChoiceCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/ActionSheet/cells/ChoiceCell/ChoiceCell.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/ActionSheet/cells/ChoiceCell/ChoiceCellAdaper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/ActionSheet/cells/ChoiceCell/ChoiceCellAdaper.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/ActionSheet/cells/SheetAdapterSectionFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/ActionSheet/cells/SheetAdapterSectionFactory.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/ActionSheet/cells/SheetGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/ActionSheet/cells/SheetGroup.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/ActionSheet/cells/SheetHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/ActionSheet/cells/SheetHeaderView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/ActionSheet/cells/SheetSectionAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/ActionSheet/cells/SheetSectionAdapter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Catalog/CatalogViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Catalog/CatalogViewController.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Catalog/CatalogViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Catalog/CatalogViewModel.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Catalog/MRCatalogAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Catalog/MRCatalogAssembly.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Catalog/MRCatalogContracts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Catalog/MRCatalogContracts.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Catalog/MRCatalogPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Catalog/MRCatalogPresenter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Catalog/MRCatalogRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Catalog/MRCatalogRouter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Catalog/MRCatalogView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Catalog/MRCatalogView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Catalog/cells/SeriesCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Catalog/cells/SeriesCell.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Catalog/cells/SeriesCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Catalog/cells/SeriesCell.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Catalog/cells/SeriesCellAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Catalog/cells/SeriesCellAdapter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Catalog/cells/SeriesSectionsAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Catalog/cells/SeriesSectionsAdapter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Configuration/ConfigurationAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Configuration/ConfigurationAssembly.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Configuration/ConfigurationContracts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Configuration/ConfigurationContracts.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Configuration/ConfigurationPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Configuration/ConfigurationPresenter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Configuration/ConfigurationRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Configuration/ConfigurationRouter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Configuration/ConfigurationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Configuration/ConfigurationViewController.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Configuration/ConfigurationViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Configuration/ConfigurationViewController.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Feed/FeedViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Feed/FeedViewController.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Feed/MRFeedAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Feed/MRFeedAssembly.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Feed/MRFeedContracts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Feed/MRFeedContracts.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Feed/MRFeedPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Feed/MRFeedPresenter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Feed/MRFeedRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Feed/MRFeedRouter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Feed/MRFeedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Feed/MRFeedView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Feed/cells/ActionCell/ActionCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Feed/cells/ActionCell/ActionCell.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Feed/cells/ActionCell/ActionCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Feed/cells/ActionCell/ActionCell.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Feed/cells/ActionCell/ActionCellAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Feed/cells/ActionCell/ActionCellAdapter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Feed/cells/PromoCell/PromoCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Feed/cells/PromoCell/PromoCell.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Feed/cells/PromoCell/PromoCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Feed/cells/PromoCell/PromoCell.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Feed/cells/PromoCell/PromoCellAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Feed/cells/PromoCell/PromoCellAdapter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Feed/cells/ScheduleSeriesCell/ScheduleSeriesCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Feed/cells/ScheduleSeriesCell/ScheduleSeriesCell.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Feed/cells/ScheduleSeriesCell/ScheduleSeriesCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Feed/cells/ScheduleSeriesCell/ScheduleSeriesCell.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Feed/cells/ScheduleSeriesCell/ScheduleSeriesCellAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Feed/cells/ScheduleSeriesCell/ScheduleSeriesCellAdapter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Feed/cells/SoonCell/SoonCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Feed/cells/SoonCell/SoonCell.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Feed/cells/SoonCell/SoonCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Feed/cells/SoonCell/SoonCell.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Feed/cells/SoonCell/SoonCellAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Feed/cells/SoonCell/SoonCellAdapter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Feed/cells/SoonCell/SoonSectionsAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Feed/cells/SoonCell/SoonSectionsAdapter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Feed/cells/SoonCell/SoonViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Feed/cells/SoonCell/SoonViewModel.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Feed/cells/TitleCell/TitleCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Feed/cells/TitleCell/TitleCell.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Feed/cells/TitleCell/TitleCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Feed/cells/TitleCell/TitleCell.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Feed/cells/TitleCell/TitleCellAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Feed/cells/TitleCell/TitleCellAdapter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Filter/FilterViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Filter/FilterViewController.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Filter/MRFilterAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Filter/MRFilterAssembly.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Filter/MRFilterContracts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Filter/MRFilterContracts.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Filter/MRFilterPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Filter/MRFilterPresenter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Filter/MRFilterRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Filter/MRFilterRouter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Filter/MRFilterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Filter/MRFilterView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Filter/cells/FilterHeaderCell/FilterHeaderAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Filter/cells/FilterHeaderCell/FilterHeaderAdapter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Filter/cells/FilterHeaderCell/FilterHeaderCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Filter/cells/FilterHeaderCell/FilterHeaderCell.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Filter/cells/FilterHeaderCell/FilterHeaderCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Filter/cells/FilterHeaderCell/FilterHeaderCell.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Filter/cells/FilterRangeCell/FilterRangeCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Filter/cells/FilterRangeCell/FilterRangeCell.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Filter/cells/FilterRangeCell/FilterRangeCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Filter/cells/FilterRangeCell/FilterRangeCell.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Filter/cells/FilterRangeCell/FilterRangeItemAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Filter/cells/FilterRangeCell/FilterRangeItemAdapter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Filter/cells/FilterSingleItemCell/FilterSingleItemAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Filter/cells/FilterSingleItemCell/FilterSingleItemAdapter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Filter/cells/FilterSingleItemCell/FilterSingleItemCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Filter/cells/FilterSingleItemCell/FilterSingleItemCell.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Filter/cells/FilterSingleItemCell/FilterSingleItemCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Filter/cells/FilterSingleItemCell/FilterSingleItemCell.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Filter/cells/FilterTagsCell/FilterTagCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Filter/cells/FilterTagsCell/FilterTagCell.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Filter/cells/FilterTagsCell/FilterTagCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Filter/cells/FilterTagsCell/FilterTagCell.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Filter/cells/FilterTagsCell/FilterTagsAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Filter/cells/FilterTagsCell/FilterTagsAdapter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Filter/cells/FilterTitleView/FilterTitleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Filter/cells/FilterTitleView/FilterTitleView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Filter/cells/FilterTitleView/FilterTitleView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Filter/cells/FilterTitleView/FilterTitleView.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/History/HistoryViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/History/HistoryViewController.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/History/MRHistoryAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/History/MRHistoryAssembly.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/History/MRHistoryContracts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/History/MRHistoryContracts.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/History/MRHistoryPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/History/MRHistoryPresenter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/History/MRHistoryRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/History/MRHistoryRouter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/History/MRHistoryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/History/MRHistoryView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/LInkDevice/LinkDeviceAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/LInkDevice/LinkDeviceAssembly.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/LInkDevice/LinkDeviceContracts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/LInkDevice/LinkDeviceContracts.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/LInkDevice/LinkDevicePresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/LInkDevice/LinkDevicePresenter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/LInkDevice/LinkDeviceRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/LInkDevice/LinkDeviceRouter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/LInkDevice/LinkDeviceViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/LInkDevice/LinkDeviceViewController.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/LInkDevice/LinkDeviceViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/LInkDevice/LinkDeviceViewController.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/MainContainer/MRMainContainerAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/MainContainer/MRMainContainerAssembly.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/MainContainer/MRMainContainerContracts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/MainContainer/MRMainContainerContracts.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/MainContainer/MRMainContainerPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/MainContainer/MRMainContainerPresenter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/MainContainer/MRMainContainerRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/MainContainer/MRMainContainerRouter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/MainContainer/MRMainContainerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/MainContainer/MRMainContainerView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/MainContainer/MainContainerViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/MainContainer/MainContainerViewController.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/MainContainer/views/MenuItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/MainContainer/views/MenuItemView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/MainContainer/views/MenuItemView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/MainContainer/views/MenuItemView.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/News/MRNewsAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/News/MRNewsAssembly.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/News/MRNewsContracts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/News/MRNewsContracts.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/News/MRNewsPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/News/MRNewsPresenter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/News/MRNewsRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/News/MRNewsRouter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/News/MRNewsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/News/MRNewsView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/News/NewsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/News/NewsViewController.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/News/cells/NewsCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/News/cells/NewsCell.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/News/cells/NewsCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/News/cells/NewsCell.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/News/cells/NewsCellAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/News/cells/NewsCellAdapter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Other/MROtherAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Other/MROtherAssembly.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Other/MROtherContracts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Other/MROtherContracts.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Other/MROtherPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Other/MROtherPresenter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Other/MROtherRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Other/MROtherRouter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Other/MROtherView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Other/MROtherView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Other/OtherViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Other/OtherViewController.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Other/views/LinkView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Other/views/LinkView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Other/views/LinkView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Other/views/LinkView.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Player/MRPlayerAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Player/MRPlayerAssembly.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Player/MRPlayerRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Player/MRPlayerRouter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Player/MRPlayerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Player/MRPlayerView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Player/PlayerProgressView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Player/PlayerProgressView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Player/PlayerViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Player/PlayerViewController.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Player/PlayerViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Player/PlayerViewModel.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Player/Views/PlayItemFilterView/PlayItemFilterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Player/Views/PlayItemFilterView/PlayItemFilterView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Player/Views/PlayItemFilterView/PlayItemFilterView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Player/Views/PlayItemFilterView/PlayItemFilterView.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Player/Views/PlayItemFilterView/PlaylistItemSelectionModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Player/Views/PlayItemFilterView/PlaylistItemSelectionModel.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Player/Views/PlayItemFilterView/PlaylistItemSelectionRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Player/Views/PlayItemFilterView/PlaylistItemSelectionRoute.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Player/Views/PlayerContainerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Player/Views/PlayerContainerView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Player/Views/RewindView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Player/Views/RewindView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Player/Views/SkipContainerVIew/SkipContainerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Player/Views/SkipContainerVIew/SkipContainerView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Player/Views/SkipContainerVIew/SkipViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Player/Views/SkipContainerVIew/SkipViewModel.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/RestorePassword/RestorePasswordAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/RestorePassword/RestorePasswordAssembly.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/RestorePassword/RestorePasswordRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/RestorePassword/RestorePasswordRouter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/RestorePassword/RestorePasswordViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/RestorePassword/RestorePasswordViewController.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/RestorePassword/RestorePasswordViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/RestorePassword/RestorePasswordViewController.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/RestorePassword/RestorePasswordViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/RestorePassword/RestorePasswordViewModel.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Schedule/MRScheduleAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Schedule/MRScheduleAssembly.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Schedule/MRScheduleContracts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Schedule/MRScheduleContracts.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Schedule/MRSchedulePresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Schedule/MRSchedulePresenter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Schedule/MRScheduleRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Schedule/MRScheduleRouter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Schedule/MRScheduleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Schedule/MRScheduleView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Schedule/ScheduleViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Schedule/ScheduleViewController.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Search/MRSearchAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Search/MRSearchAssembly.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Search/MRSearchContracts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Search/MRSearchContracts.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Search/MRSearchPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Search/MRSearchPresenter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Search/MRSearchRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Search/MRSearchRouter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Search/MRSearchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Search/MRSearchView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Search/SearchViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Search/SearchViewController.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Search/cells/SearchResultAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Search/cells/SearchResultAdapter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Search/cells/SearchResultCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Search/cells/SearchResultCell.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Search/cells/SearchResultCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Search/cells/SearchResultCell.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Series/MRSeriesAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Series/MRSeriesAssembly.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Series/MRSeriesContracts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Series/MRSeriesContracts.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Series/MRSeriesPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Series/MRSeriesPresenter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Series/MRSeriesRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Series/MRSeriesRouter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Series/MRSeriesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Series/MRSeriesView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Series/SeriesViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Series/SeriesViewController.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Series/views/RelatedSeriesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Series/views/RelatedSeriesView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Series/views/RelatedSeriesView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Series/views/RelatedSeriesView.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Series/views/SeriesCollectionTypeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Series/views/SeriesCollectionTypeView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Series/views/SeriesFavoriteView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Series/views/SeriesFavoriteView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Series/views/SeriesHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Series/views/SeriesHeaderView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Series/views/SeriesHeaderView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Series/views/SeriesHeaderView.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Series/views/TorrentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Series/views/TorrentView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Series/views/TorrentView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Series/views/TorrentView.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Series/views/WeekDayView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Series/views/WeekDayView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Settings/MRSettingsAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Settings/MRSettingsAssembly.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Settings/MRSettingsContracts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Settings/MRSettingsContracts.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Settings/MRSettingsPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Settings/MRSettingsPresenter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Settings/MRSettingsRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Settings/MRSettingsRouter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Settings/MRSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Settings/MRSettingsView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Settings/SettingsControlView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Settings/SettingsControlView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Settings/SettingsControlView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Settings/SettingsControlView.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Settings/SettingsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Settings/SettingsViewController.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/SignIn/MRSignInAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/SignIn/MRSignInAssembly.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/SignIn/MRSignInContracts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/SignIn/MRSignInContracts.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/SignIn/MRSignInPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/SignIn/MRSignInPresenter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/SignIn/MRSignInRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/SignIn/MRSignInRouter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/SignIn/MRSignInView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/SignIn/MRSignInView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/SignIn/SignInViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/SignIn/SignInViewController.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Team/MRTeamAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Team/MRTeamAssembly.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Team/MRTeamContracts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Team/MRTeamContracts.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Team/MRTeamPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Team/MRTeamPresenter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Team/MRTeamRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Team/MRTeamRouter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Team/MRTeamView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Team/MRTeamView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Team/TeamViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Team/TeamViewController.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Team/cells/TeamMemberCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Team/cells/TeamMemberCell.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Team/cells/TeamMemberCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Team/cells/TeamMemberCell.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Team/cells/TeamMemberCellAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Team/cells/TeamMemberCellAdapter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Team/cells/TeamTitleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Team/cells/TeamTitleView.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/Team/cells/TeamTitleView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/Team/cells/TeamTitleView.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/UserCollections/UserCollection/FavoriteViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/UserCollections/UserCollection/FavoriteViewModel.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/UserCollections/UserCollection/UserCollectionAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/UserCollections/UserCollection/UserCollectionAssembly.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/UserCollections/UserCollection/UserCollectionRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/UserCollections/UserCollection/UserCollectionRouter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/UserCollections/UserCollection/UserCollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/UserCollections/UserCollection/UserCollectionViewController.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/UserCollections/UserCollection/UserCollectionViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/UserCollections/UserCollection/UserCollectionViewController.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/UserCollections/UserCollection/UserCollectionViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/UserCollections/UserCollection/UserCollectionViewModel.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/UserCollections/UserCollectionsAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/UserCollections/UserCollectionsAssembly.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/UserCollections/UserCollectionsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/UserCollections/UserCollectionsViewController.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/UserCollections/UserCollectionsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/UserCollections/UserCollectionsViewController.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/UserCollections/UserCollectionsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/UserCollections/UserCollectionsViewModel.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/UserCollections/cells/RemovableSeriesCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/UserCollections/cells/RemovableSeriesCell.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/UserCollections/cells/RemovableSeriesCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/UserCollections/cells/RemovableSeriesCell.xib -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/UserCollections/cells/RemovableSeriesCellAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/UserCollections/cells/RemovableSeriesCellAdapter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/UserCollections/cells/UserCollectionKeyAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/UserCollections/cells/UserCollectionKeyAdapter.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/UserCollections/cells/UserCollectionKeyCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/UserCollections/cells/UserCollectionKeyCell.swift -------------------------------------------------------------------------------- /Anilibria/Classes/PresentationLayer/Modules/UserCollections/cells/UserCollectionKeyCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/PresentationLayer/Modules/UserCollections/cells/UserCollectionKeyCell.xib -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/AppConfigurationService/AppConfigirationService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/AppConfigurationService/AppConfigirationService.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/CatalogService/CatalogService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/CatalogService/CatalogService.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/CatalogService/Requests/AgeRatingsRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/CatalogService/Requests/AgeRatingsRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/CatalogService/Requests/CatalogRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/CatalogService/Requests/CatalogRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/CatalogService/Requests/GenresRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/CatalogService/Requests/GenresRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/CatalogService/Requests/ProductionStatusesRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/CatalogService/Requests/ProductionStatusesRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/CatalogService/Requests/PublishStatusesRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/CatalogService/Requests/PublishStatusesRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/CatalogService/Requests/ReleaseTypesRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/CatalogService/Requests/ReleaseTypesRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/CatalogService/Requests/SeasonsRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/CatalogService/Requests/SeasonsRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/CatalogService/Requests/SortingRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/CatalogService/Requests/SortingRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/CatalogService/Requests/YearsRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/CatalogService/Requests/YearsRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/DownloadService/DownloadService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/DownloadService/DownloadService.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/DownloadService/Requests/GetTorrentRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/DownloadService/Requests/GetTorrentRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/FavoriteService/FavoriteService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/FavoriteService/FavoriteService.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/FavoriteService/Requests/ChangeFavoriteRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/FavoriteService/Requests/ChangeFavoriteRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/FavoriteService/Requests/FavoriteFilterAgeRatingsRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/FavoriteService/Requests/FavoriteFilterAgeRatingsRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/FavoriteService/Requests/FavoriteFilterGenresRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/FavoriteService/Requests/FavoriteFilterGenresRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/FavoriteService/Requests/FavoriteFilterReleaseTypesRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/FavoriteService/Requests/FavoriteFilterReleaseTypesRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/FavoriteService/Requests/FavoriteFilterSortingRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/FavoriteService/Requests/FavoriteFilterSortingRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/FavoriteService/Requests/FavoriteFilterYearsRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/FavoriteService/Requests/FavoriteFilterYearsRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/FavoriteService/Requests/FavoriteIDsRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/FavoriteService/Requests/FavoriteIDsRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/FavoriteService/Requests/FavoriteListRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/FavoriteService/Requests/FavoriteListRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/LinksService/LinksService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/LinksService/LinksService.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/LinksService/Requests/LinksRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/LinksService/Requests/LinksRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/MainService/MainService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/MainService/MainService.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/MainService/Requests/FranchiseRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/MainService/Requests/FranchiseRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/MainService/Requests/NewsRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/MainService/Requests/NewsRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/MainService/Requests/PromoRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/MainService/Requests/PromoRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/MainService/Requests/RandomSeriesRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/MainService/Requests/RandomSeriesRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/MainService/Requests/ScheduleNowRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/MainService/Requests/ScheduleNowRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/MainService/Requests/ScheduleWeekRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/MainService/Requests/ScheduleWeekRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/MainService/Requests/SearchRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/MainService/Requests/SearchRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/MainService/Requests/SeriesRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/MainService/Requests/SeriesRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/MainService/Requests/TeamMembersRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/MainService/Requests/TeamMembersRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/MenuService/MenuService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/MenuService/MenuService.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/PlayerService/PlayerService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/PlayerService/PlayerService.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/SessionService/Requests/AcceptOTPRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/SessionService/Requests/AcceptOTPRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/SessionService/Requests/AuthProviderDataRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/SessionService/Requests/AuthProviderDataRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/SessionService/Requests/ForgotPasswordRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/SessionService/Requests/ForgotPasswordRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/SessionService/Requests/LoginRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/SessionService/Requests/LoginRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/SessionService/Requests/LogoutRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/SessionService/Requests/LogoutRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/SessionService/Requests/ResetPasswordRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/SessionService/Requests/ResetPasswordRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/SessionService/Requests/UserRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/SessionService/Requests/UserRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/SessionService/SessionService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/SessionService/SessionService.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/UserCollectionsService/Requests/ChangeUserCollectionRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/UserCollectionsService/Requests/ChangeUserCollectionRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/UserCollectionsService/Requests/CollectionsFilterAgeRatingsRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/UserCollectionsService/Requests/CollectionsFilterAgeRatingsRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/UserCollectionsService/Requests/CollectionsFilterGenresRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/UserCollectionsService/Requests/CollectionsFilterGenresRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/UserCollectionsService/Requests/CollectionsFilterReleaseTypesRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/UserCollectionsService/Requests/CollectionsFilterReleaseTypesRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/UserCollectionsService/Requests/CollectionsFilterYearsRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/UserCollectionsService/Requests/CollectionsFilterYearsRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/UserCollectionsService/Requests/GetUserCollectionDataRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/UserCollectionsService/Requests/GetUserCollectionDataRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/UserCollectionsService/Requests/UserCollectionListRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/UserCollectionsService/Requests/UserCollectionListRequest.swift -------------------------------------------------------------------------------- /Anilibria/Classes/ServiceLayer/UserCollectionsService/UserCollectionsService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Classes/ServiceLayer/UserCollectionsService/UserCollectionsService.swift -------------------------------------------------------------------------------- /Anilibria/Extensions/ArrayExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Extensions/ArrayExtension.swift -------------------------------------------------------------------------------- /Anilibria/Extensions/BundleExtenstion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Extensions/BundleExtenstion.swift -------------------------------------------------------------------------------- /Anilibria/Extensions/CGFloatExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Extensions/CGFloatExtension.swift -------------------------------------------------------------------------------- /Anilibria/Extensions/NSObjectExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Extensions/NSObjectExtension.swift -------------------------------------------------------------------------------- /Anilibria/Extensions/PublisherExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Extensions/PublisherExtensions.swift -------------------------------------------------------------------------------- /Anilibria/Extensions/StringExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Extensions/StringExtension.swift -------------------------------------------------------------------------------- /Anilibria/Extensions/UICollectionViewCellExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Extensions/UICollectionViewCellExtension.swift -------------------------------------------------------------------------------- /Anilibria/Extensions/UIControlExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Extensions/UIControlExtension.swift -------------------------------------------------------------------------------- /Anilibria/Extensions/UIImageViewExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Extensions/UIImageViewExtension.swift -------------------------------------------------------------------------------- /Anilibria/Extensions/UIInterfaceOrientationExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Extensions/UIInterfaceOrientationExtension.swift -------------------------------------------------------------------------------- /Anilibria/Extensions/UIScreenExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Extensions/UIScreenExtension.swift -------------------------------------------------------------------------------- /Anilibria/Extensions/UITextFieldExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Extensions/UITextFieldExtension.swift -------------------------------------------------------------------------------- /Anilibria/Extensions/UIViewExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Extensions/UIViewExtension.swift -------------------------------------------------------------------------------- /Anilibria/Extensions/UserDefaultsExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Extensions/UserDefaultsExtension.swift -------------------------------------------------------------------------------- /Anilibria/Resources/Animations/nyan_cat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Animations/nyan_cat.gif -------------------------------------------------------------------------------- /Anilibria/Resources/AppIcon.icon/Assets/logo-final-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/AppIcon.icon/Assets/logo-final-black.svg -------------------------------------------------------------------------------- /Anilibria/Resources/AppIcon.icon/icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/AppIcon.icon/icon.json -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/colors/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/colors/Contents.json -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/colors/buttons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/colors/buttons/Contents.json -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/colors/buttons/selected.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/colors/buttons/selected.colorset/Contents.json -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/colors/buttons/unselected.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/colors/buttons/unselected.colorset/Contents.json -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/colors/surfaces/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/colors/surfaces/Contents.json -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/colors/surfaces/background.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/colors/surfaces/background.colorset/Contents.json -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/colors/surfaces/base.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/colors/surfaces/base.colorset/Contents.json -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/colors/surfaces/content.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/colors/surfaces/content.colorset/Contents.json -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/colors/text/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/colors/text/Contents.json -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/colors/text/main.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/colors/text/main.colorset/Contents.json -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/colors/text/monoDark.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/colors/text/monoDark.colorset/Contents.json -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/colors/text/monoLight.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/colors/text/monoLight.colorset/Contents.json -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/colors/text/reversed_main.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/colors/text/reversed_main.colorset/Contents.json -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/colors/text/secondary.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/colors/text/secondary.colorset/Contents.json -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/colors/tint/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/colors/tint/Contents.json -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/colors/tint/active.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/colors/tint/active.colorset/Contents.json -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/colors/tint/main.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/colors/tint/main.colorset/Contents.json -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/colors/tint/separator.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/colors/tint/separator.colorset/Contents.json -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/colors/tint/shimmer.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/colors/tint/shimmer.colorset/Contents.json -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/icons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/icons/Contents.json -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/icons/icon_anilibria.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/icons/icon_anilibria.imageset/Contents.json -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/icons/icon_anilibria.imageset/logo-final-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/icons/icon_anilibria.imageset/logo-final-black.svg -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/icons/icon_boosty.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/icons/icon_boosty.imageset/Contents.json -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/icons/icon_boosty.imageset/icon_boosty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/icons/icon_boosty.imageset/icon_boosty.svg -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/icons/icon_discord.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/icons/icon_discord.imageset/Contents.json -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/icons/icon_discord.imageset/icon_discord.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/icons/icon_discord.imageset/icon_discord.pdf -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/icons/icon_filter.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/icons/icon_filter.imageset/Contents.json -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/icons/icon_filter.imageset/filter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/icons/icon_filter.imageset/filter.pdf -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/icons/icon_google.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/icons/icon_google.imageset/Contents.json -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/icons/icon_google.imageset/google.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/icons/icon_google.imageset/google.pdf -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/icons/icon_patreon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/icons/icon_patreon.imageset/Contents.json -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/icons/icon_patreon.imageset/icon_patreon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/icons/icon_patreon.imageset/icon_patreon.pdf -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/icons/icon_settings.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/icons/icon_settings.imageset/Contents.json -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/icons/icon_settings.imageset/settings.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/icons/icon_settings.imageset/settings.pdf -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/icons/icon_telegram.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/icons/icon_telegram.imageset/Contents.json -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/icons/icon_telegram.imageset/icon_telegram.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/icons/icon_telegram.imageset/icon_telegram.pdf -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/icons/icon_vk.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/icons/icon_vk.imageset/Contents.json -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/icons/icon_vk.imageset/icon_vk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/icons/icon_vk.imageset/icon_vk.pdf -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/icons/icon_youtube.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/icons/icon_youtube.imageset/Contents.json -------------------------------------------------------------------------------- /Anilibria/Resources/Assets.xcassets/icons/icon_youtube.imageset/menu_item_youtube.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Assets.xcassets/icons/icon_youtube.imageset/menu_item_youtube.pdf -------------------------------------------------------------------------------- /Anilibria/Resources/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Configuration.swift -------------------------------------------------------------------------------- /Anilibria/Resources/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Constants.swift -------------------------------------------------------------------------------- /Anilibria/Resources/Font/AppFont.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Font/AppFont.swift -------------------------------------------------------------------------------- /Anilibria/Resources/Formatters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Formatters.swift -------------------------------------------------------------------------------- /Anilibria/Resources/Images.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Images.swift -------------------------------------------------------------------------------- /Anilibria/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Info.plist -------------------------------------------------------------------------------- /Anilibria/Resources/Localize/GenerationScript.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Localize/GenerationScript.swift -------------------------------------------------------------------------------- /Anilibria/Resources/Localize/Localizable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Localize/Localizable.swift -------------------------------------------------------------------------------- /Anilibria/Resources/Localize/Localizable.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Localize/Localizable.xcstrings -------------------------------------------------------------------------------- /Anilibria/Resources/Localize/Localization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Localize/Localization.swift -------------------------------------------------------------------------------- /Anilibria/Resources/Theme/AppTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Theme/AppTheme.swift -------------------------------------------------------------------------------- /Anilibria/Resources/Theme/InterfaceAppearance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Theme/InterfaceAppearance.swift -------------------------------------------------------------------------------- /Anilibria/Resources/Theme/InterfaceOrientation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Resources/Theme/InterfaceOrientation.swift -------------------------------------------------------------------------------- /Anilibria/Vendor/SpringIndicator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Vendor/SpringIndicator/LICENSE -------------------------------------------------------------------------------- /Anilibria/Vendor/SpringIndicator/SpringIndicator/AnimationProcess.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Vendor/SpringIndicator/SpringIndicator/AnimationProcess.swift -------------------------------------------------------------------------------- /Anilibria/Vendor/SpringIndicator/SpringIndicator/CALayer+Animation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Vendor/SpringIndicator/SpringIndicator/CALayer+Animation.swift -------------------------------------------------------------------------------- /Anilibria/Vendor/SpringIndicator/SpringIndicator/CAPropertyAnimation+Key.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Vendor/SpringIndicator/SpringIndicator/CAPropertyAnimation+Key.swift -------------------------------------------------------------------------------- /Anilibria/Vendor/SpringIndicator/SpringIndicator/Double+Math.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Vendor/SpringIndicator/SpringIndicator/Double+Math.swift -------------------------------------------------------------------------------- /Anilibria/Vendor/SpringIndicator/SpringIndicator/RefreshIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Vendor/SpringIndicator/SpringIndicator/RefreshIndicator.swift -------------------------------------------------------------------------------- /Anilibria/Vendor/SpringIndicator/SpringIndicator/SpringIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Vendor/SpringIndicator/SpringIndicator/SpringIndicator.h -------------------------------------------------------------------------------- /Anilibria/Vendor/SpringIndicator/SpringIndicator/SpringIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/Anilibria/Vendor/SpringIndicator/SpringIndicator/SpringIndicator.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /MacBundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/MacBundle/Info.plist -------------------------------------------------------------------------------- /MacBundle/MacApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/MacBundle/MacApp.h -------------------------------------------------------------------------------- /MacBundle/MacApp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/MacBundle/MacApp.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/README.md -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anilibria/anilibria-ios/HEAD/scripts/release.sh --------------------------------------------------------------------------------