├── .github ├── CONTRIBUTING.md └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .swiftlint.yml ├── CODE_OF_CONDUCT.md ├── Classes ├── Bookmark │ ├── Bookmark.swift │ ├── BookmarkCell.swift │ ├── BookmarkCloudMigrator.swift │ ├── BookmarkCloudStore.swift │ ├── BookmarkHeaderSectionController.swift │ ├── BookmarkIssueSectionController.swift │ ├── BookmarkIssueViewModel.swift │ ├── BookmarkMigrationCell.swift │ ├── BookmarkMigrationSectionController.swift │ ├── BookmarkNavigationController.swift │ ├── BookmarkRepoCell.swift │ ├── BookmarkRepoSectionController.swift │ ├── BookmarkStore.swift │ ├── BookmarkViewController.swift │ ├── GitHubClient+Bookmarks.swift │ └── RepositoryDetails+ListSwiftDiffable.swift ├── History │ ├── Client+History.swift │ ├── PathCommitCell.swift │ ├── PathCommitModel.swift │ ├── PathCommitSectionController.swift │ ├── PathHistoryViewController.swift │ ├── PathHistoryViewModel.swift │ ├── RepoFileHistoryQueryDataToPathHistoryViewModel.swift │ └── UIViewController+HistoryAction.swift ├── Image Upload │ ├── ImageUpload.storyboard │ ├── ImageUploadTableViewController.swift │ └── ImgurClient.swift ├── Issues │ ├── AddCommentClient.swift │ ├── Assignees │ │ ├── IssueAssigneeAvatarCell.swift │ │ ├── IssueAssigneeSummaryCell.swift │ │ ├── IssueAssigneeSummaryModel.swift │ │ ├── IssueAssigneeUserCell.swift │ │ ├── IssueAssigneeViewModel.swift │ │ ├── IssueAssigneesModel.swift │ │ └── IssueAssigneesSectionController.swift │ ├── Branches │ │ ├── IssueBranchesSectionController.swift │ │ ├── IssueTargetBranchCell.swift │ │ └── IssueTargetBranchModel.swift │ ├── Comments │ │ ├── CodeBlock │ │ │ ├── IssueCommentCodeBlockCell.swift │ │ │ └── IssueCommentCodeBlockModel.swift │ │ ├── Details │ │ │ ├── IssueCommentDetailCell.swift │ │ │ ├── IssueCommentDetailsViewModel.swift │ │ │ └── IssueDetailBadgeView.swift │ │ ├── Hr │ │ │ ├── IssueCommentHrCell.swift │ │ │ └── IssueCommentHrModel.swift │ │ ├── Html │ │ │ ├── IssueCommentHtmlCell.swift │ │ │ └── IssueCommentHtmlModel.swift │ │ ├── Images │ │ │ ├── IssueCommentImageCell.swift │ │ │ ├── IssueCommentImageModel.swift │ │ │ └── IssueCommentPhoto.swift │ │ ├── IssueCollapsedBodies.swift │ │ ├── IssueCommentBaseCell.swift │ │ ├── IssueCommentEmptyCell.swift │ │ ├── IssueCommentModel+Inset.swift │ │ ├── IssueCommentModel.swift │ │ ├── IssueCommentSectionController.swift │ │ ├── Markdown │ │ │ ├── CMarkParsing.swift │ │ │ ├── CheckIfSentWithGitHawk.swift │ │ │ ├── CodeBlockModel.swift │ │ │ ├── IssueCommentTableModel+Models.swift │ │ │ ├── MarkdownAttribute.swift │ │ │ ├── MarkdownCheckboxModel.swift │ │ │ ├── String+CustomBuilding.swift │ │ │ ├── String+GitHubEmoji.swift │ │ │ ├── String+Shortlink.swift │ │ │ ├── String+StripHTMLComments.swift │ │ │ ├── StyledTextBuilder+Checkbox.swift │ │ │ ├── StyledTextBuilder+NewBase.swift │ │ │ ├── UIFont+MutableTraits.swift │ │ │ └── ViewMarkdownViewController.swift │ │ ├── Quotes │ │ │ ├── IssueCommentQuoteCell.swift │ │ │ └── IssueCommentQuoteModel.swift │ │ ├── Reactions │ │ │ ├── Defaults+Reaction.swift │ │ │ ├── IssueCommentReactionCell.swift │ │ │ ├── IssueCommentReactionViewModel.swift │ │ │ ├── IssueLocalReaction.swift │ │ │ ├── IssueReactionCell.swift │ │ │ ├── ReactionContent+ReactionType.swift │ │ │ ├── ReactionViewModel.swift │ │ │ ├── ReactionsMenuViewController.swift │ │ │ └── UIMenuController+Reactions.swift │ │ ├── Summary │ │ │ ├── IssueCommentSummaryCell.swift │ │ │ └── IssueCommentSummaryModel.swift │ │ ├── Tables │ │ │ ├── IssueCommentTableCell.swift │ │ │ ├── IssueCommentTableCollectionCell.swift │ │ │ └── IssueCommentTableModel.swift │ │ ├── Text │ │ │ └── IssueCommentTextCell.swift │ │ └── Unsupported │ │ │ ├── IssueCommentUnsupportedCell.swift │ │ │ └── IssueCommentUnsupportedModel.swift │ ├── Commit │ │ ├── IssueCommitCell.swift │ │ ├── IssueCommitModel.swift │ │ └── IssueCommitSectionController.swift │ ├── DiffHunk │ │ ├── IssueDiffHunkModel.swift │ │ ├── IssueDiffHunkPathCell.swift │ │ ├── IssueDiffHunkPreviewCell.swift │ │ └── IssueDiffHunkSectionController.swift │ ├── EditComment │ │ └── EditCommentViewController.swift │ ├── Files │ │ ├── File+ListDiffable.swift │ │ ├── IssueFileCell.swift │ │ ├── IssueFileChangesModel.swift │ │ ├── IssueFilesSectionController.swift │ │ ├── IssueFilesViewController.swift │ │ ├── IssuePatchContentViewController.swift │ │ ├── IssueViewFilesCell.swift │ │ └── IssueViewFilesSectionController.swift │ ├── GithubClient+Issues.swift │ ├── Issue+IssueType.swift │ ├── IssueCommentModelHandling.swift │ ├── IssueDetailsModel.swift │ ├── IssueManageButton.swift │ ├── IssueManagingContextController.swift │ ├── IssueResult.swift │ ├── IssueStatus+ButtonState.swift │ ├── IssueStatus.swift │ ├── IssueTextActionsView.swift │ ├── IssueType.swift │ ├── IssueViewModels.swift │ ├── IssuesViewController.swift │ ├── Labeled │ │ ├── IssueLabeledCell.swift │ │ ├── IssueLabeledModel.swift │ │ └── IssueLabeledSectionController.swift │ ├── Labels │ │ ├── IssueLabelCell.swift │ │ ├── IssueLabelDotCell.swift │ │ ├── IssueLabelEditCell.swift │ │ ├── IssueLabelStatusCell.swift │ │ ├── IssueLabelStatusModel.swift │ │ ├── IssueLabelsModel.swift │ │ └── IssueLabelsSectionController.swift │ ├── Managing │ │ ├── IssueManagingActionCell.swift │ │ ├── IssueManagingActionModel.swift │ │ ├── IssueManagingExpansionCell.swift │ │ ├── IssueManagingExpansionModel.swift │ │ ├── IssueManagingModel.swift │ │ ├── IssueManagingNavSectionController.swift │ │ └── IssueManagingSectionController.swift │ ├── Merge │ │ ├── GithubClient+Merge.swift │ │ ├── IssueMergeButtonCell.swift │ │ ├── IssueMergeButtonModel.swift │ │ ├── IssueMergeContextCell.swift │ │ ├── IssueMergeContextModel.swift │ │ ├── IssueMergeModel.swift │ │ ├── IssueMergeSectionController.swift │ │ ├── IssueMergeSummaryCell.swift │ │ ├── IssueMergeSummaryModel.swift │ │ ├── IssueMergeType.swift │ │ ├── MergeButton.swift │ │ └── MergeHelper.swift │ ├── Milestone │ │ ├── IssueMilestoneCell.swift │ │ └── IssueMilestoneSectionController.swift │ ├── MilestoneEvent │ │ ├── IssueMilestoneEventCell.swift │ │ ├── IssueMilestoneEventModel.swift │ │ └── IssueMilestoneEventSectionController.swift │ ├── NeckLoad │ │ ├── IssueNeckLoadModel.swift │ │ └── IssueNeckLoadSectionController.swift │ ├── Preview │ │ ├── IssuePreviewModel.swift │ │ ├── IssuePreviewSectionController.swift │ │ └── IssuePreviewViewController.swift │ ├── PullRequest+IssueType.swift │ ├── Referenced │ │ ├── IssueReferencedCell.swift │ │ ├── IssueReferencedModel.swift │ │ └── IssueReferencedSectionController.swift │ ├── ReferencedCommit │ │ ├── IssueReferencedCommitCell.swift │ │ ├── IssueReferencedCommitModel.swift │ │ └── IssueReferencedCommitSectionController.swift │ ├── Renamed │ │ ├── IssueRenamedCell.swift │ │ ├── IssueRenamedModel.swift │ │ ├── IssueRenamedSectionController.swift │ │ └── IssueRenamedString.swift │ ├── Request │ │ ├── IssueRequestCell.swift │ │ ├── IssueRequestModel.swift │ │ └── IssueRequestSectionController.swift │ ├── Review │ │ ├── IssueReviewDetailsCell.swift │ │ ├── IssueReviewDetailsModel.swift │ │ ├── IssueReviewEmptyTailCell.swift │ │ ├── IssueReviewModel.swift │ │ ├── IssueReviewSectionController.swift │ │ └── IssueReviewViewCommentsCell.swift │ ├── Spacer │ │ ├── SpacerCell.swift │ │ ├── SpacerModel.swift │ │ └── SpacerSectionController.swift │ ├── Status │ │ ├── IssueStatusCell.swift │ │ ├── IssueStatusModel.swift │ │ └── IssueStatusSectionController.swift │ ├── StatusEvent │ │ ├── IssueStatusEvent+ButtonState.swift │ │ ├── IssueStatusEvent.swift │ │ ├── IssueStatusEventCell.swift │ │ ├── IssueStatusEventModel.swift │ │ └── IssueStatusEventSectionController.swift │ ├── Title │ │ ├── IssueTitleCell.swift │ │ ├── IssueTitleModel.swift │ │ └── IssueTitleSectionController.swift │ └── UserAutocomplete+GraphQL.swift ├── Labels │ ├── LabelMenuCell.swift │ ├── LabelSectionController.swift │ └── LabelsViewController.swift ├── Login │ ├── Client+AccessToken.swift │ ├── LoginSplashViewController.swift │ ├── OauthLogin.storyboard │ └── SplashView │ │ └── SplashView.swift ├── Milestones │ ├── GithubClient+Milestones.swift │ ├── Milestone.swift │ ├── MilestoneCell.swift │ ├── MilestoneSectionController.swift │ ├── MilestoneViewModel.swift │ └── MilestonesViewController.swift ├── Models │ ├── CommitDetails.swift │ ├── File+Filename.swift │ ├── File.swift │ ├── FilePath.swift │ ├── LabelDetails.swift │ ├── LabelableFields+IssueLabelModel.swift │ ├── Repository.swift │ ├── RepositoryLabel.swift │ └── String+ListSwift.swift ├── New Issue │ ├── NewIssue.storyboard │ └── NewIssueTableViewController.swift ├── Notifications │ ├── CreateNotificationTitle.swift │ ├── Filter │ │ ├── GithubClient+InboxFilterController.swift │ │ ├── InboxFilterController.swift │ │ ├── InboxFilterModel.swift │ │ ├── InboxFilterRepoCell.swift │ │ ├── InboxFilterRepoSectionController.swift │ │ └── InboxFilterReposViewController.swift │ ├── InboxDashboardCell.swift │ ├── InboxDashboardModel.swift │ ├── InboxDashboardSectionController.swift │ ├── NewFeaturesCell.swift │ ├── NewFeaturesController.swift │ ├── NewFeaturesSectionController.swift │ ├── NoNewNotificationsCell.swift │ ├── NoNewNotificationsSectionController.swift │ ├── Notification+NotificationViewModel.swift │ ├── NotificationCell.swift │ ├── NotificationModelController.swift │ ├── NotificationSectionController.swift │ ├── NotificationType+Icon.swift │ ├── NotificationType.swift │ ├── NotificationViewModel.swift │ └── NotificationsViewController.swift ├── People │ ├── PeopleCell.swift │ ├── PeopleSectionController.swift │ └── PeopleViewController.swift ├── PullRequestReviews │ ├── GithubClient+PullRequestReviewComments.swift │ ├── PullRequestReviewCommentsViewController.swift │ ├── PullRequestReviewReplyCell.swift │ ├── PullRequestReviewReplyModel.swift │ └── PullRequestReviewReplySectionController.swift ├── Repository │ ├── Empty │ │ ├── RepositoryEmptyResultsCell.swift │ │ ├── RepositoryEmptyResultsSectionController.swift │ │ ├── RepositoryEmptyResultsSectionController2.swift │ │ └── RepositoryEmptyResultsType.swift │ ├── GQL+RepositoryIssueSummaryType.swift │ ├── GitHubClient+Repository.swift │ ├── RepositoryBranches │ │ ├── GitHubClient+RepositoryBranches.swift │ │ ├── RepositoryBranchUpdatable.swift │ │ ├── RepositoryBranchesCell.swift │ │ ├── RepositoryBranchesSectionController.swift │ │ ├── RepositoryBranchesViewController.swift │ │ └── RepositoryBranchesViewModel.swift │ ├── RepositoryClient.swift │ ├── RepositoryCodeBlobViewController.swift │ ├── RepositoryCodeDirectorySectionController.swift │ ├── RepositoryCodeDirectoryViewController.swift │ ├── RepositoryDetails.swift │ ├── RepositoryErrorViewController.swift │ ├── RepositoryFile.swift │ ├── RepositoryFileCell.swift │ ├── RepositoryImageViewController.swift │ ├── RepositoryIssueSummaryModel+Filterable.swift │ ├── RepositoryIssueSummaryModel.swift │ ├── RepositoryIssueSummaryType.swift │ ├── RepositoryIssuesViewController.swift │ ├── RepositoryLoadingViewController.swift │ ├── RepositoryOverviewViewController.swift │ ├── RepositoryReadmeModel.swift │ ├── RepositoryReadmeSectionController.swift │ ├── RepositorySummaryCell.swift │ ├── RepositorySummarySectionController.swift │ ├── RepositoryViewController.swift │ └── RepositoryWebViewController.swift ├── Search │ ├── GithubClient+Search.swift │ ├── SearchLoadingView.swift │ ├── SearchNoResultsCell.swift │ ├── SearchNoResultsSectionController.swift │ ├── SearchQuery.swift │ ├── SearchRecentCell.swift │ ├── SearchRecentHeaderSectionController.swift │ ├── SearchRecentSectionController.swift │ ├── SearchRecentStore.swift │ ├── SearchRecentViewModel.swift │ ├── SearchRepoResult.swift │ ├── SearchRepoResultCell.swift │ ├── SearchResultSectionController.swift │ └── SearchViewController.swift ├── Section Controllers │ ├── Empty │ │ ├── EmptyMessageSectionController.swift │ │ ├── InitialEmptyViewCell.swift │ │ ├── InitialEmptyViewModel.swift │ │ └── InitialEmptyViewSectionController.swift │ ├── LoadMore │ │ ├── LoadMoreCell.swift │ │ ├── LoadMoreSectionController.swift │ │ └── LoadMoreSectionController2.swift │ ├── SearchBar │ │ ├── SearchBarCell.swift │ │ └── SearchBarSectionController.swift │ └── SegmentedControl │ │ ├── SegmentedControlCell.swift │ │ ├── SegmentedControlModel.swift │ │ └── SegmentedControlSectionController.swift ├── Settings │ ├── DefaultReactionDetailController.swift │ ├── Defaults+ExternalLinks.swift │ ├── PushNotificationsDisclaimerViewController.swift │ ├── Settings.storyboard │ ├── SettingsAccountCell.swift │ ├── SettingsAccountsViewController.swift │ ├── SettingsLabel.swift │ └── SettingsViewController.swift ├── Systems │ ├── Announcer.swift │ ├── AppDelegate.swift │ ├── AppRouter │ │ ├── AppController+UNUserNotificationCenterDelegate.swift │ │ ├── AppController.swift │ │ ├── AppSplitViewController.swift │ │ ├── BookmarkShortcutRoute+RoutePerformable.swift │ │ ├── IssueRoute+RoutePerformable.swift │ │ ├── RepoRoute+RoutePerformable.swift │ │ ├── RoutePerformable.swift │ │ ├── Router.swift │ │ ├── SearchShortcutRoute+RoutePerformable.swift │ │ ├── SwitchAccountShortcutRoute+RoutePerformable.swift │ │ ├── UNMutableNotificationContent+Routable.swift │ │ └── UNNotificationContent+Routable.swift │ ├── Autocomplete │ │ ├── AutocompleteCell.swift │ │ ├── AutocompleteController.swift │ │ ├── AutocompleteType.swift │ │ ├── EmojiAutocomplete.swift │ │ ├── IssueAutocomplete.swift │ │ ├── IssueCommentAutocomplete.swift │ │ └── UserAutocomplete.swift │ ├── BadgeNotifications.swift │ ├── Client+GithubUserSession.swift │ ├── Debouncer.swift │ ├── Feed.swift │ ├── FeedSelectionProviding.swift │ ├── GithubAPIDateFormatter.swift │ ├── GithubClient.swift │ ├── GithubEmoji.swift │ ├── GithubHighlighting.swift │ ├── GraphQLIDDecode.swift │ ├── ImageCellHeightCache.swift │ ├── InboxZeroLoader.swift │ ├── LabelLayoutManager.swift │ ├── ListAdapter+Scrolling.swift │ ├── LocalNotificationsCache.swift │ ├── PhotoViewHandler.swift │ ├── Rating │ │ ├── RatingCell.swift │ │ ├── RatingController.swift │ │ └── RatingSectionController.swift │ ├── Result.swift │ ├── ScrollViewKeyboardAdjuster.swift │ ├── Secrets.swift │ ├── ShortcutHandler.swift │ ├── Signature.swift │ ├── SpecialGitHubEmoji.swift │ ├── SpinnerSectionController.swift │ ├── Squawk+GitHawk.swift │ ├── String+GithubDate.swift │ ├── UIContentSizeCategoryChangeHandler.swift │ ├── WebviewCellHeightCache.swift │ ├── WidthCache.swift │ └── WrappingStaticSpacingFlowLayout.swift ├── Utility │ ├── Accessibility.swift │ ├── AlertAction.swift │ ├── AlertActionBuilder.swift │ ├── Bundle+Version.swift │ ├── DeleteSwipeAction.swift │ ├── Error+GraphQLForbidden.swift │ ├── Filterable.swift │ ├── GithubURL.swift │ ├── HapticFeedback.swift │ ├── Image+Base64.swift │ ├── Int+Abbreviated.swift │ ├── IsCancellationError.swift │ ├── LogEnvironmentInformation.swift │ ├── NSRegularExpression+StaticString.swift │ ├── RepositoryAttributedString.swift │ ├── SearchQueryTokenizer.swift │ ├── Sequence+Contains.swift │ ├── Store.swift │ ├── String+FirstLine.swift │ ├── String+Size.swift │ ├── UIAlertController+Action.swift │ ├── UIApplication+ReviewAccess.swift │ ├── UIApplication+WriteReview.swift │ ├── UIContentSizeCategory+Preferred.swift │ ├── UIDevice+Model.swift │ ├── UIImage+Color.swift │ ├── UIImage+StaticString.swift │ ├── UINavigationController+Replace.swift │ ├── UIViewController+Routing.swift │ └── URLBuilder.swift ├── View Controllers │ ├── BaseListViewController.swift │ ├── ContrastContextMenu.swift │ ├── CreateProfileViewController.swift │ ├── RootViewControllers.swift │ ├── SplitPlaceholderViewController.swift │ ├── SplitViewControllerDelegate.swift │ ├── TabBarControllerDelegate.swift │ ├── TabNavRootViewControllerType.swift │ ├── UINavigationItem+TitleSubtitle.swift │ ├── UIPopoverPresentationController+SourceView.swift │ ├── UITabBarController+SelectType.swift │ ├── UIViewController+Alerts.swift │ ├── UIViewController+CancelAction.swift │ ├── UIViewController+CommonActionItems.swift │ ├── UIViewController+EmptyBackBar.swift │ ├── UIViewController+FilePathTitle.swift │ ├── UIViewController+IssueCommentHtmlCellNavigationDelegate.swift │ ├── UIViewController+LoadingIndicator.swift │ ├── UIViewController+MenuDone.swift │ ├── UIViewController+MessageAutocompleteControllerLayoutDelegate.swift │ ├── UIViewController+PresentLabels.swift │ ├── UIViewController+Safari.swift │ ├── UIViewController+SmartDeselection.swift │ ├── UIViewController+StyledTextViewCellDelegate.swift │ └── UIViewController+UserActivity.swift └── Views │ ├── BoundedImageSize.swift │ ├── ButtonCell.swift │ ├── CardCollectionViewCell.swift │ ├── ClearAllHeaderCell.swift │ ├── CodeView.swift │ ├── Constants.swift │ ├── ContentWidthUtils.swift │ ├── DateDetailsFormatter.swift │ ├── DiffString.swift │ ├── DotListView.swift │ ├── EmptyLoadingView.swift │ ├── EmptyView.swift │ ├── FeedRefresh.swift │ ├── FixedRefreshControl.swift │ ├── FlexController.h │ ├── FlexController.m │ ├── HittableButton.swift │ ├── IGListCollectionViewLayout+GitHawk.swift │ ├── InitialEmptyView.swift │ ├── IssueTextActionsView+Markdown.swift │ ├── LabelCell.swift │ ├── LabelListCell.swift │ ├── LabelListView.swift │ ├── MarkdownAttributeHandling.swift │ ├── MarkdownStyledTextView.swift │ ├── MessageView+Styles.swift │ ├── ResponderButton.swift │ ├── SegmentedControlCell.swift │ ├── SelectableCell.swift │ ├── ShowErrorStatusBar.swift │ ├── ShowMoreDetailsLabel+Date.swift │ ├── ShowMoreDetailsLabel.swift │ ├── SpinnerCell.swift │ ├── StyledTableCell.swift │ ├── StyledTextRenderer+ListDiffable.swift │ ├── StyledTextViewCell.swift │ ├── Styles.swift │ ├── TextActionsController.swift │ ├── UIBarButtonItem+TightSpacing.swift │ ├── UIButton+Label.swift │ ├── UICollectionViewLayout+Orientation.swift │ ├── UIColor+Hex.swift │ ├── UIColor+Overlay.swift │ ├── UIControlEffects.swift │ ├── UIImageView+Avatar.swift │ ├── UIImageView+StoryboardTintFix.swift │ ├── UIScrollView+LeftRightSafeInset.swift │ ├── UIScrollView+ScrollToBottom.swift │ ├── UIScrollView+ScrollToTop.swift │ ├── UITextView+GitHawk.swift │ ├── UITextView+SelectedRange.swift │ ├── UIView+BottomBorder.swift │ └── UIView+DateDetails.swift ├── Freetime.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── Freetime-AppCenter.xcscheme ├── Freetime.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── FreetimeTests ├── BookmarkCloudMigratorTests.swift ├── BookmarkIDCloudStoreTests.swift ├── BookmarkViewControllerTests.swift ├── ContentWidthUtilsTests.swift ├── DetectShortlinkTests.swift ├── EmojiTests.swift ├── FilePathTests.swift ├── GithubURLTests.swift ├── GraphQLIDDecodeTests.swift ├── InboxZeroLoaderTests.swift ├── Info.plist ├── IssueCommentTableTests.swift ├── IssueLabelCellTests.swift ├── IssueTests.swift ├── ListKitTestCase.swift ├── ListTestKit.swift ├── LocalNotificationCacheTests.swift ├── MergeTests.swift ├── Mocks │ └── MockSearchEmptyViewDelegate.swift ├── NetworkingURLPathTests.swift ├── ReactionTests.swift ├── Search Tests │ ├── SearchEmptyViewTests.swift │ ├── SearchQueryTests.swift │ ├── SearchRecentStoreTests.swift │ └── SearchRecentViewModelTests.swift ├── SecretsTests.swift ├── SequenceTests.swift ├── SignatureTests.swift ├── Snapshot Tests │ └── ReferenceImages_64 │ │ └── FreetimeTests.AttributedStringViewTests │ │ ├── testAttributedStringUIEmailIsCorrect@2x.png │ │ └── testAttributedStringUIWithSimpleTextIsCorrect@2x.png ├── SortUsers.swift ├── SplitViewTests.swift ├── SwitchBranches.swift ├── Test.md ├── URLBuilderTests.swift └── ViewControllerTestUtil.swift ├── FreetimeWatch Extension ├── Assets.xcassets │ ├── Contents.json │ ├── alert.imageset │ │ ├── Contents.json │ │ ├── alert@2x.png │ │ └── alert@3x.png │ ├── git-commit.imageset │ │ ├── Contents.json │ │ └── git-commit@2x.png │ ├── git-pull-request.imageset │ │ ├── Contents.json │ │ └── git-pull-request@2x.png │ ├── issue-opened.imageset │ │ ├── Contents.json │ │ └── issue-opened@2x.png │ ├── mail.imageset │ │ ├── Contents.json │ │ ├── mail@2x.png │ │ └── mail@3x.png │ ├── repo.imageset │ │ ├── Contents.json │ │ ├── repo@2x.png │ │ └── repo@3x.png │ └── tag.imageset │ │ ├── Contents.json │ │ ├── tag@2x.png │ │ └── tag@3x.png ├── EmptyRowController.swift ├── ErrorRowController.swift ├── ExtensionDelegate.swift ├── FreetimeWatch Extension.entitlements ├── InboxController.swift ├── InboxDataController.swift ├── InboxRowController.swift ├── Info.plist ├── LoadingRowController.swift ├── ReadAllRowController.swift ├── RepoInboxController.swift ├── RepoInboxRowController.swift ├── SignInRowController.swift └── Utility │ ├── NSObject+RowControllerIdentifier.swift │ └── V3Repository+HashableEquatable.swift ├── FreetimeWatch ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-AppStore-1024x1024.png │ │ ├── Icon-HomeScreen-38mm-24x24@2x.png │ │ ├── Icon-HomeScreen-38mm-40x40@2x.png │ │ ├── Icon-HomeScreen-38mm-86x86@2x.png │ │ ├── Icon-HomeScreen-42mm-27.5x27.5@2x.png │ │ ├── Icon-HomeScreen-42mm-44x44@2x.png │ │ ├── Icon-HomeScreen-42mm-98x98@2x.png │ │ ├── Icon-HomeScreen-44mm-108x108@2x.png │ │ ├── Icon-HomeScreen-44mm-50x50@2x.png │ │ ├── Icon-HomeScreen-Companion-29x29@2x.png │ │ └── Icon-HomeScreen-Companion-29x29@3x.png │ ├── Contents.json │ ├── bubble.imageset │ │ ├── Contents.json │ │ └── bubble@2x.png │ └── issue-opened.imageset │ │ ├── Contents.json │ │ └── issue-opened@2x.png ├── Base.lproj │ └── Interface.storyboard ├── FreetimeWatch.entitlements └── Info.plist ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Local Pods ├── DateAgo │ ├── DateAgo.podspec │ ├── DateAgo.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── DateAgo │ │ ├── Date+Ago.swift │ │ ├── Date+AgoString.swift │ │ ├── DateAgo.h │ │ ├── Info.plist │ │ └── Localizable.stringsdict │ └── DateAgoTests │ │ ├── DateAgoLongTests.swift │ │ ├── DateAgoShortTests.swift │ │ └── Info.plist ├── GitHubAPI │ ├── GitHubAPI.podspec │ ├── GitHubAPI.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── GitHubAPI.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── GitHubAPI │ │ ├── Alamofire+GitHubAPI.swift │ │ ├── Client.swift │ │ ├── ClientError.swift │ │ ├── ConfiguredNetworkers.swift │ │ ├── GitHubAPI.h │ │ ├── GitHubAPIStatusRequest.swift │ │ ├── GitHubAccessTokenRequest.swift │ │ ├── HTTPRequest.swift │ │ ├── Info.plist │ │ ├── JSONResponse.swift │ │ ├── ManualGraphQLRequest.swift │ │ ├── Processing.swift │ │ ├── Request.swift │ │ ├── Response.swift │ │ ├── Result.swift │ │ ├── String+V3Links.swift │ │ ├── V3AddPeopleRequest.swift │ │ ├── V3AssigneesRequest.swift │ │ ├── V3Content.swift │ │ ├── V3CreateIssueRequest.swift │ │ ├── V3DataResponse.swift │ │ ├── V3DeleteCommentRequest.swift │ │ ├── V3EditCommentRequest.swift │ │ ├── V3File.swift │ │ ├── V3Issue.swift │ │ ├── V3IssuesRequest.swift │ │ ├── V3LockIssueRequest.swift │ │ ├── V3MarkNotificationsRequest.swift │ │ ├── V3MarkRepositoryNotificationsRequest.swift │ │ ├── V3MarkThreadsRequest.swift │ │ ├── V3MergePullRequestReqeust.swift │ │ ├── V3Milestone.swift │ │ ├── V3MilestoneRequest.swift │ │ ├── V3Notification.swift │ │ ├── V3NotificationRequest.swift │ │ ├── V3NotificationSubject.swift │ │ ├── V3PullRequestCommentsRequest.swift │ │ ├── V3PullRequestFilesRequest.swift │ │ ├── V3Release.swift │ │ ├── V3ReleaseRequest.swift │ │ ├── V3Repository.swift │ │ ├── V3RepositoryNotificationRequest.swift │ │ ├── V3RepositoryReadmeRequest.swift │ │ ├── V3Request.swift │ │ ├── V3SendPullRequestCommentRequest.swift │ │ ├── V3SetIssueStatusRequest.swift │ │ ├── V3SetMilestonesRequest.swift │ │ ├── V3SetRepositoryLabelsRequest.swift │ │ ├── V3StatusCode205.swift │ │ ├── V3StatusCodeResponse.swift │ │ ├── V3SubscribeThreadRequest.swift │ │ ├── V3SubscriptionsRequest.swift │ │ ├── V3User.swift │ │ ├── V3VerifyPersonalAccessTokenRequest.swift │ │ └── V3ViewerIsCollaboratorRequest.swift │ ├── GitHubAPITests │ │ ├── GitHubAPITests.swift │ │ ├── HTTPLinkNextPageTests.swift │ │ ├── Info.plist │ │ ├── invitation_notification.json │ │ ├── no_milestone_description.json │ │ ├── notifications.json │ │ └── security_vulnerability.json │ ├── Podfile │ ├── Podfile.lock │ └── Pods │ │ ├── Alamofire │ │ ├── LICENSE │ │ ├── README.md │ │ └── Source │ │ │ ├── AFError.swift │ │ │ ├── Alamofire.swift │ │ │ ├── DispatchQueue+Alamofire.swift │ │ │ ├── MultipartFormData.swift │ │ │ ├── NetworkReachabilityManager.swift │ │ │ ├── Notifications.swift │ │ │ ├── ParameterEncoding.swift │ │ │ ├── Request.swift │ │ │ ├── Response.swift │ │ │ ├── ResponseSerialization.swift │ │ │ ├── Result.swift │ │ │ ├── ServerTrustPolicy.swift │ │ │ ├── SessionDelegate.swift │ │ │ ├── SessionManager.swift │ │ │ ├── TaskDelegate.swift │ │ │ ├── Timeline.swift │ │ │ └── Validation.swift │ │ ├── Apollo │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Sources │ │ │ └── Apollo │ │ │ │ ├── ApolloClient.swift │ │ │ │ ├── ApolloStore.swift │ │ │ │ ├── AsynchronousOperation.swift │ │ │ │ ├── Collections.swift │ │ │ │ ├── DataLoader.swift │ │ │ │ ├── GraphQLDependencyTracker.swift │ │ │ │ ├── GraphQLError.swift │ │ │ │ ├── GraphQLExecutor.swift │ │ │ │ ├── GraphQLInputValue.swift │ │ │ │ ├── GraphQLOperation.swift │ │ │ │ ├── GraphQLQueryWatcher.swift │ │ │ │ ├── GraphQLResponse.swift │ │ │ │ ├── GraphQLResponseGenerator.swift │ │ │ │ ├── GraphQLResult.swift │ │ │ │ ├── GraphQLResultAccumulator.swift │ │ │ │ ├── GraphQLResultNormalizer.swift │ │ │ │ ├── GraphQLSelectionSet.swift │ │ │ │ ├── GraphQLSelectionSetMapper.swift │ │ │ │ ├── HTTPNetworkTransport.swift │ │ │ │ ├── InMemoryNormalizedCache.swift │ │ │ │ ├── JSON.swift │ │ │ │ ├── JSONSerializationFormat.swift │ │ │ │ ├── JSONStandardTypeConversions.swift │ │ │ │ ├── Locking.swift │ │ │ │ ├── NetworkTransport.swift │ │ │ │ ├── NormalizedCache.swift │ │ │ │ ├── Promise.swift │ │ │ │ ├── Record.swift │ │ │ │ ├── RecordSet.swift │ │ │ │ ├── Result.swift │ │ │ │ ├── ResultOrPromise.swift │ │ │ │ └── Utilities.swift │ │ └── scripts │ │ │ └── check-and-run-apollo-codegen.sh │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ │ └── Target Support Files │ │ ├── Alamofire │ │ ├── Alamofire-Info.plist │ │ ├── Alamofire-dummy.m │ │ ├── Alamofire-prefix.pch │ │ ├── Alamofire-umbrella.h │ │ ├── Alamofire.modulemap │ │ ├── Alamofire.xcconfig │ │ └── Info.plist │ │ ├── Apollo │ │ ├── Apollo-Info.plist │ │ ├── Apollo-dummy.m │ │ ├── Apollo-prefix.pch │ │ ├── Apollo-umbrella.h │ │ ├── Apollo.modulemap │ │ ├── Apollo.xcconfig │ │ └── Info.plist │ │ ├── Pods-GitHubAPI │ │ ├── Info.plist │ │ ├── Pods-GitHubAPI-Info.plist │ │ ├── Pods-GitHubAPI-acknowledgements.markdown │ │ ├── Pods-GitHubAPI-acknowledgements.plist │ │ ├── Pods-GitHubAPI-dummy.m │ │ ├── Pods-GitHubAPI-resources.sh │ │ ├── Pods-GitHubAPI-umbrella.h │ │ ├── Pods-GitHubAPI.debug.xcconfig │ │ ├── Pods-GitHubAPI.modulemap │ │ └── Pods-GitHubAPI.release.xcconfig │ │ └── Pods-GitHubAPITests │ │ ├── Info.plist │ │ ├── Pods-GitHubAPITests-Info.plist │ │ ├── Pods-GitHubAPITests-acknowledgements.markdown │ │ ├── Pods-GitHubAPITests-acknowledgements.plist │ │ ├── Pods-GitHubAPITests-dummy.m │ │ ├── Pods-GitHubAPITests-frameworks.sh │ │ ├── Pods-GitHubAPITests-resources.sh │ │ ├── Pods-GitHubAPITests-umbrella.h │ │ ├── Pods-GitHubAPITests.debug.xcconfig │ │ ├── Pods-GitHubAPITests.modulemap │ │ └── Pods-GitHubAPITests.release.xcconfig ├── GitHubSession │ ├── GitHubSession.podspec │ ├── GitHubSession.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── GitHubSession │ │ ├── GitHubSession.h │ │ ├── GitHubSessionManager.swift │ │ ├── GitHubUserSession+NetworkingConfigs.swift │ │ ├── GitHubUserSession.swift │ │ ├── Info.plist │ │ └── WatchAppUserSessionSync.swift ├── StringHelpers │ ├── StringHelpers.podspec │ ├── StringHelpers.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── StringHelpers │ │ ├── Info.plist │ │ ├── String+HashDisplay.swift │ │ ├── String+NSRange.swift │ │ └── StringHelpers.h └── SwipeCellKit │ ├── .gitignore │ ├── .swift-version │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── Example │ ├── MailExample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── MailExample.xcscheme │ └── MailExample │ │ ├── ActionDescriptor.swift │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Archive.imageset │ │ │ ├── Archive Icon.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Disclosure.imageset │ │ │ ├── Contents.json │ │ │ └── Disclosure.png │ │ ├── Flag-circle.imageset │ │ │ ├── Contents.json │ │ │ └── flag-circle.png │ │ ├── Flag.imageset │ │ │ ├── Contents.json │ │ │ └── Flag Icon.png │ │ ├── More-circle.imageset │ │ │ ├── Contents.json │ │ │ └── more-circle.png │ │ ├── More.imageset │ │ │ ├── Contents.json │ │ │ └── More Icon.png │ │ ├── MoreOutline.imageset │ │ │ ├── Contents.json │ │ │ └── MoreOutline.png │ │ ├── Read-circle.imageset │ │ │ ├── Contents.json │ │ │ └── read-circle.png │ │ ├── Read.imageset │ │ │ ├── Contents.json │ │ │ └── read.png │ │ ├── Trash-circle.imageset │ │ │ ├── Contents.json │ │ │ └── trash-circle.png │ │ ├── Trash.imageset │ │ │ ├── Contents.json │ │ │ └── Trash Icon.png │ │ ├── Unread-circle.imageset │ │ │ ├── Contents.json │ │ │ └── unread-circle.png │ │ └── Unread.imageset │ │ │ ├── Contents.json │ │ │ └── Unread Icon.png │ │ ├── Buttons.swift │ │ ├── Data.swift │ │ ├── IndicatorView.swift │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ ├── MailCollectionCell.swift │ │ ├── MailCollectionViewController.swift │ │ ├── MailTableCell.swift │ │ ├── MailViewController.swift │ │ └── Main.storyboard │ ├── Guides │ └── Advanced.md │ ├── LICENSE │ ├── Package.swift │ ├── README.md │ ├── SHOWCASE.md │ ├── Screenshots │ ├── Expansion-Delegate.gif │ ├── Expansion-Destructive.gif │ ├── Expansion-None.gif │ ├── Expansion-Selection.gif │ ├── Hero.gif │ ├── Transition-Border.gif │ ├── Transition-Delegate.gif │ ├── Transition-Drag.gif │ └── Transition-Reveal.gif │ ├── Source │ ├── Extensions.swift │ ├── Info.plist │ ├── SwipeAction.swift │ ├── SwipeActionButton.swift │ ├── SwipeActionTransitioning.swift │ ├── SwipeActionsView.swift │ ├── SwipeAnimator.swift │ ├── SwipeCellKit.h │ ├── SwipeCollectionViewCell+Display.swift │ ├── SwipeCollectionViewCell.swift │ ├── SwipeCollectionViewCellDelegate.swift │ ├── SwipeExpanding.swift │ ├── SwipeExpansionStyle.swift │ ├── SwipeFeedback.swift │ ├── SwipeTableOptions.swift │ ├── SwipeTableViewCell+Accessibility.swift │ ├── SwipeTableViewCell+Display.swift │ ├── SwipeTableViewCell.swift │ ├── SwipeTableViewCellDelegate.swift │ ├── SwipeTransitionLayout.swift │ └── Swipeable.swift │ ├── SwipeCellKit.podspec │ ├── SwipeCellKit.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── SwipeCellKit.xcscheme │ ├── SwipeCellKit.xcworkspace │ └── contents.xcworkspacedata │ ├── build_docs.sh │ └── docs │ ├── Classes.html │ ├── Classes │ ├── SwipeAction.html │ └── SwipeTableViewCell.html │ ├── Enums.html │ ├── Enums │ ├── ExpansionFulfillmentStyle.html │ ├── SwipeActionStyle.html │ ├── SwipeActionsOrientation.html │ ├── SwipeTransitionStyle.html │ └── SwipeVerticalAlignment.html │ ├── Guides.html │ ├── Protocols.html │ ├── Protocols │ ├── SwipeActionTransitioning.html │ ├── SwipeExpanding.html │ └── SwipeTableViewCellDelegate.html │ ├── Structs.html │ ├── Structs │ ├── ScaleAndAlphaExpansion.html │ ├── ScaleTransition.html │ ├── SwipeActionTransitioningContext.html │ ├── SwipeExpansionAnimationTimingParameters.html │ ├── SwipeExpansionStyle.html │ ├── SwipeExpansionStyle │ │ ├── CompletionAnimation.html │ │ ├── FillOptions.html │ │ ├── FillOptions │ │ │ └── HandlerInvocationTiming.html │ │ ├── Target.html │ │ └── Trigger.html │ └── SwipeTableOptions.html │ ├── advanced.html │ ├── css │ ├── highlight.css │ └── jazzy.css │ ├── docsets │ ├── SwipeCellKit.docset │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ ├── Documents │ │ │ ├── Classes.html │ │ │ ├── Classes │ │ │ │ ├── SwipeAction.html │ │ │ │ └── SwipeTableViewCell.html │ │ │ ├── Enums.html │ │ │ ├── Enums │ │ │ │ ├── ExpansionFulfillmentStyle.html │ │ │ │ ├── SwipeActionStyle.html │ │ │ │ ├── SwipeActionsOrientation.html │ │ │ │ ├── SwipeTransitionStyle.html │ │ │ │ └── SwipeVerticalAlignment.html │ │ │ ├── Guides.html │ │ │ ├── Protocols.html │ │ │ ├── Protocols │ │ │ │ ├── SwipeActionTransitioning.html │ │ │ │ ├── SwipeExpanding.html │ │ │ │ └── SwipeTableViewCellDelegate.html │ │ │ ├── Structs.html │ │ │ ├── Structs │ │ │ │ ├── ScaleAndAlphaExpansion.html │ │ │ │ ├── ScaleTransition.html │ │ │ │ ├── SwipeActionTransitioningContext.html │ │ │ │ ├── SwipeExpansionAnimationTimingParameters.html │ │ │ │ ├── SwipeExpansionStyle.html │ │ │ │ ├── SwipeExpansionStyle │ │ │ │ │ ├── CompletionAnimation.html │ │ │ │ │ ├── FillOptions.html │ │ │ │ │ ├── FillOptions │ │ │ │ │ │ └── HandlerInvocationTiming.html │ │ │ │ │ ├── Target.html │ │ │ │ │ └── Trigger.html │ │ │ │ └── SwipeTableOptions.html │ │ │ ├── advanced.html │ │ │ ├── css │ │ │ │ ├── highlight.css │ │ │ │ └── jazzy.css │ │ │ ├── img │ │ │ │ ├── carat.png │ │ │ │ ├── dash.png │ │ │ │ └── gh.png │ │ │ ├── index.html │ │ │ └── js │ │ │ │ ├── jazzy.js │ │ │ │ └── jquery.min.js │ │ │ └── docSet.dsidx │ └── SwipeCellKit.tgz │ ├── img │ ├── carat.png │ ├── dash.png │ └── gh.png │ ├── index.html │ ├── js │ ├── jazzy.js │ └── jquery.min.js │ └── undocumented.json ├── Playgrounds ├── ButtonAnimation.playground │ ├── Contents.swift │ └── contents.xcplayground ├── Github API.playground │ ├── Contents.swift │ └── contents.xcplayground ├── Github API │ ├── .config.json │ ├── comment.json │ ├── done │ │ └── authorizations.json │ ├── event.json │ ├── examples │ │ ├── instagram-iglistkit-issues-715-comments.json │ │ ├── instagram-iglistkit-issues-715-events.json │ │ ├── instagram-iglistkit-issues-715.json │ │ ├── instagram-iglistkit-pulls-715-comments.json │ │ ├── instagram-iglistkit-pulls-715.json │ │ └── notifications.json │ ├── issue.json │ ├── notification.json │ ├── pull_request.json │ ├── reactions.json │ ├── repository.json │ └── user.json ├── LabelPopover.playground │ ├── Contents.swift │ └── contents.xcplayground └── TextViews.playground │ ├── Contents.swift │ └── contents.xcplayground ├── Podfile ├── Podfile.lock ├── Pods ├── Alamofire │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── AFError.swift │ │ ├── Alamofire.swift │ │ ├── DispatchQueue+Alamofire.swift │ │ ├── MultipartFormData.swift │ │ ├── NetworkReachabilityManager.swift │ │ ├── Notifications.swift │ │ ├── ParameterEncoding.swift │ │ ├── Request.swift │ │ ├── Response.swift │ │ ├── ResponseSerialization.swift │ │ ├── Result.swift │ │ ├── ServerTrustPolicy.swift │ │ ├── SessionDelegate.swift │ │ ├── SessionManager.swift │ │ ├── TaskDelegate.swift │ │ ├── Timeline.swift │ │ └── Validation.swift ├── AlamofireNetworkActivityIndicator │ ├── LICENSE │ ├── README.md │ └── Source │ │ └── NetworkActivityIndicatorManager.swift ├── Apollo │ ├── LICENSE │ ├── README.md │ ├── Sources │ │ └── Apollo │ │ │ ├── ApolloClient.swift │ │ │ ├── ApolloStore.swift │ │ │ ├── AsynchronousOperation.swift │ │ │ ├── Collections.swift │ │ │ ├── DataLoader.swift │ │ │ ├── GraphQLDependencyTracker.swift │ │ │ ├── GraphQLError.swift │ │ │ ├── GraphQLExecutor.swift │ │ │ ├── GraphQLInputValue.swift │ │ │ ├── GraphQLOperation.swift │ │ │ ├── GraphQLQueryWatcher.swift │ │ │ ├── GraphQLResponse.swift │ │ │ ├── GraphQLResponseGenerator.swift │ │ │ ├── GraphQLResult.swift │ │ │ ├── GraphQLResultAccumulator.swift │ │ │ ├── GraphQLResultNormalizer.swift │ │ │ ├── GraphQLSelectionSet.swift │ │ │ ├── GraphQLSelectionSetMapper.swift │ │ │ ├── HTTPNetworkTransport.swift │ │ │ ├── InMemoryNormalizedCache.swift │ │ │ ├── JSON.swift │ │ │ ├── JSONSerializationFormat.swift │ │ │ ├── JSONStandardTypeConversions.swift │ │ │ ├── Locking.swift │ │ │ ├── NetworkTransport.swift │ │ │ ├── NormalizedCache.swift │ │ │ ├── Promise.swift │ │ │ ├── Record.swift │ │ │ ├── RecordSet.swift │ │ │ ├── Result.swift │ │ │ ├── ResultOrPromise.swift │ │ │ └── Utilities.swift │ └── scripts │ │ ├── check-and-run-apollo-cli.sh │ │ └── check-and-run-apollo-codegen.sh ├── ContextMenu │ ├── ContextMenu │ │ ├── CGRect+Area.swift │ │ ├── CGRect+DominantCorner.swift │ │ ├── ClippedContainerViewController.swift │ │ ├── ContextMenu+Animations.swift │ │ ├── ContextMenu+ContainerStyle.swift │ │ ├── ContextMenu+ContextMenuPresentationControllerDelegate.swift │ │ ├── ContextMenu+HapticFeedbackStyle.swift │ │ ├── ContextMenu+Item.swift │ │ ├── ContextMenu+MenuStyle.swift │ │ ├── ContextMenu+Options.swift │ │ ├── ContextMenu+Position.swift │ │ ├── ContextMenu+UIViewControllerTransitioningDelegate.swift │ │ ├── ContextMenu.swift │ │ ├── ContextMenuDelegate.swift │ │ ├── ContextMenuDismissing.swift │ │ ├── ContextMenuPresentationController.swift │ │ ├── ContextMenuPresenting.swift │ │ ├── SourceViewCorner.swift │ │ └── UIViewController+Extensions.swift │ ├── LICENSE │ └── README.md ├── Crashlytics │ ├── Crashlytics.framework │ │ ├── README │ │ └── submit │ ├── README.md │ ├── iOS │ │ └── Crashlytics.framework │ │ │ ├── Crashlytics │ │ │ ├── Headers │ │ │ ├── ANSCompatibility.h │ │ │ ├── Answers.h │ │ │ ├── CLSAttributes.h │ │ │ ├── CLSLogging.h │ │ │ ├── CLSReport.h │ │ │ ├── CLSStackFrame.h │ │ │ └── Crashlytics.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ └── module.modulemap │ │ │ ├── run │ │ │ ├── submit │ │ │ └── uploadDSYM │ └── submit ├── DropdownTitleView │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── Assets.xcassets │ │ ├── Contents.json │ │ └── chevron-down-small.imageset │ │ │ ├── Contents.json │ │ │ ├── chevron-down-small@2x.png │ │ │ └── chevron-down-small@3x.png │ │ └── DropdownTitleView.swift ├── FBSnapshotTestCase │ ├── FBSnapshotTestCase │ │ ├── Categories │ │ │ ├── UIApplication+StrictKeyWindow.h │ │ │ ├── UIApplication+StrictKeyWindow.m │ │ │ ├── UIImage+Compare.h │ │ │ ├── UIImage+Compare.m │ │ │ ├── UIImage+Diff.h │ │ │ ├── UIImage+Diff.m │ │ │ ├── UIImage+Snapshot.h │ │ │ └── UIImage+Snapshot.m │ │ ├── FBSnapshotTestCase.h │ │ ├── FBSnapshotTestCase.m │ │ ├── FBSnapshotTestCasePlatform.h │ │ ├── FBSnapshotTestCasePlatform.m │ │ ├── FBSnapshotTestController.h │ │ ├── FBSnapshotTestController.m │ │ └── SwiftSupport.swift │ ├── LICENSE │ └── README.md ├── FLAnimatedImage │ ├── FLAnimatedImage │ │ ├── FLAnimatedImage.h │ │ ├── FLAnimatedImage.m │ │ ├── FLAnimatedImageView.h │ │ └── FLAnimatedImageView.m │ ├── LICENSE │ └── README.md ├── FLEX │ ├── Classes │ │ ├── Editing │ │ │ ├── ArgumentInputViews │ │ │ │ ├── FLEXArgumentInputColorView.h │ │ │ │ ├── FLEXArgumentInputColorView.m │ │ │ │ ├── FLEXArgumentInputDateView.h │ │ │ │ ├── FLEXArgumentInputDateView.m │ │ │ │ ├── FLEXArgumentInputFontView.h │ │ │ │ ├── FLEXArgumentInputFontView.m │ │ │ │ ├── FLEXArgumentInputFontsPickerView.h │ │ │ │ ├── FLEXArgumentInputFontsPickerView.m │ │ │ │ ├── FLEXArgumentInputJSONObjectView.h │ │ │ │ ├── FLEXArgumentInputJSONObjectView.m │ │ │ │ ├── FLEXArgumentInputNotSupportedView.h │ │ │ │ ├── FLEXArgumentInputNotSupportedView.m │ │ │ │ ├── FLEXArgumentInputNumberView.h │ │ │ │ ├── FLEXArgumentInputNumberView.m │ │ │ │ ├── FLEXArgumentInputStringView.h │ │ │ │ ├── FLEXArgumentInputStringView.m │ │ │ │ ├── FLEXArgumentInputStructView.h │ │ │ │ ├── FLEXArgumentInputStructView.m │ │ │ │ ├── FLEXArgumentInputSwitchView.h │ │ │ │ ├── FLEXArgumentInputSwitchView.m │ │ │ │ ├── FLEXArgumentInputTextView.h │ │ │ │ ├── FLEXArgumentInputTextView.m │ │ │ │ ├── FLEXArgumentInputView.h │ │ │ │ ├── FLEXArgumentInputView.m │ │ │ │ ├── FLEXArgumentInputViewFactory.h │ │ │ │ └── FLEXArgumentInputViewFactory.m │ │ │ ├── FLEXDefaultEditorViewController.h │ │ │ ├── FLEXDefaultEditorViewController.m │ │ │ ├── FLEXFieldEditorView.h │ │ │ ├── FLEXFieldEditorView.m │ │ │ ├── FLEXFieldEditorViewController.h │ │ │ ├── FLEXFieldEditorViewController.m │ │ │ ├── FLEXIvarEditorViewController.h │ │ │ ├── FLEXIvarEditorViewController.m │ │ │ ├── FLEXMethodCallingViewController.h │ │ │ ├── FLEXMethodCallingViewController.m │ │ │ ├── FLEXPropertyEditorViewController.h │ │ │ └── FLEXPropertyEditorViewController.m │ │ ├── ExplorerInterface │ │ │ ├── FLEXExplorerViewController.h │ │ │ ├── FLEXExplorerViewController.m │ │ │ ├── FLEXWindow.h │ │ │ └── FLEXWindow.m │ │ ├── FLEX.h │ │ ├── FLEXManager.h │ │ ├── GlobalStateExplorers │ │ │ ├── DatabaseBrowser │ │ │ │ ├── FLEXDatabaseManager.h │ │ │ │ ├── FLEXMultiColumnTableView.h │ │ │ │ ├── FLEXMultiColumnTableView.m │ │ │ │ ├── FLEXRealmDatabaseManager.h │ │ │ │ ├── FLEXRealmDatabaseManager.m │ │ │ │ ├── FLEXRealmDefines.h │ │ │ │ ├── FLEXSQLiteDatabaseManager.h │ │ │ │ ├── FLEXSQLiteDatabaseManager.m │ │ │ │ ├── FLEXTableColumnHeader.h │ │ │ │ ├── FLEXTableColumnHeader.m │ │ │ │ ├── FLEXTableContentCell.h │ │ │ │ ├── FLEXTableContentCell.m │ │ │ │ ├── FLEXTableContentViewController.h │ │ │ │ ├── FLEXTableContentViewController.m │ │ │ │ ├── FLEXTableLeftCell.h │ │ │ │ ├── FLEXTableLeftCell.m │ │ │ │ ├── FLEXTableListViewController.h │ │ │ │ └── FLEXTableListViewController.m │ │ │ ├── FLEXClassesTableViewController.h │ │ │ ├── FLEXClassesTableViewController.m │ │ │ ├── FLEXCookiesTableViewController.h │ │ │ ├── FLEXCookiesTableViewController.m │ │ │ ├── FLEXFileBrowserFileOperationController.h │ │ │ ├── FLEXFileBrowserFileOperationController.m │ │ │ ├── FLEXFileBrowserSearchOperation.h │ │ │ ├── FLEXFileBrowserSearchOperation.m │ │ │ ├── FLEXFileBrowserTableViewController.h │ │ │ ├── FLEXFileBrowserTableViewController.m │ │ │ ├── FLEXGlobalsTableViewController.h │ │ │ ├── FLEXGlobalsTableViewController.m │ │ │ ├── FLEXInstancesTableViewController.h │ │ │ ├── FLEXInstancesTableViewController.m │ │ │ ├── FLEXLibrariesTableViewController.h │ │ │ ├── FLEXLibrariesTableViewController.m │ │ │ ├── FLEXLiveObjectsTableViewController.h │ │ │ ├── FLEXLiveObjectsTableViewController.m │ │ │ ├── FLEXWebViewController.h │ │ │ ├── FLEXWebViewController.m │ │ │ └── SystemLog │ │ │ │ ├── FLEXSystemLogMessage.h │ │ │ │ ├── FLEXSystemLogMessage.m │ │ │ │ ├── FLEXSystemLogTableViewCell.h │ │ │ │ ├── FLEXSystemLogTableViewCell.m │ │ │ │ ├── FLEXSystemLogTableViewController.h │ │ │ │ └── FLEXSystemLogTableViewController.m │ │ ├── Manager │ │ │ ├── FLEXManager+Private.h │ │ │ └── FLEXManager.m │ │ ├── Network │ │ │ ├── FLEXNetworkCurlLogger.h │ │ │ ├── FLEXNetworkCurlLogger.m │ │ │ ├── FLEXNetworkHistoryTableViewController.h │ │ │ ├── FLEXNetworkHistoryTableViewController.m │ │ │ ├── FLEXNetworkRecorder.h │ │ │ ├── FLEXNetworkRecorder.m │ │ │ ├── FLEXNetworkSettingsTableViewController.h │ │ │ ├── FLEXNetworkSettingsTableViewController.m │ │ │ ├── FLEXNetworkTransaction.h │ │ │ ├── FLEXNetworkTransaction.m │ │ │ ├── FLEXNetworkTransactionDetailTableViewController.h │ │ │ ├── FLEXNetworkTransactionDetailTableViewController.m │ │ │ ├── FLEXNetworkTransactionTableViewCell.h │ │ │ ├── FLEXNetworkTransactionTableViewCell.m │ │ │ └── PonyDebugger │ │ │ │ ├── FLEXNetworkObserver.h │ │ │ │ └── FLEXNetworkObserver.m │ │ ├── ObjectExplorers │ │ │ ├── FLEXArrayExplorerViewController.h │ │ │ ├── FLEXArrayExplorerViewController.m │ │ │ ├── FLEXClassExplorerViewController.h │ │ │ ├── FLEXClassExplorerViewController.m │ │ │ ├── FLEXDefaultsExplorerViewController.h │ │ │ ├── FLEXDefaultsExplorerViewController.m │ │ │ ├── FLEXDictionaryExplorerViewController.h │ │ │ ├── FLEXDictionaryExplorerViewController.m │ │ │ ├── FLEXGlobalsTableViewControllerEntry.h │ │ │ ├── FLEXGlobalsTableViewControllerEntry.m │ │ │ ├── FLEXImageExplorerViewController.h │ │ │ ├── FLEXImageExplorerViewController.m │ │ │ ├── FLEXLayerExplorerViewController.h │ │ │ ├── FLEXLayerExplorerViewController.m │ │ │ ├── FLEXObjectExplorerFactory.h │ │ │ ├── FLEXObjectExplorerFactory.m │ │ │ ├── FLEXObjectExplorerViewController.h │ │ │ ├── FLEXObjectExplorerViewController.m │ │ │ ├── FLEXSetExplorerViewController.h │ │ │ ├── FLEXSetExplorerViewController.m │ │ │ ├── FLEXViewControllerExplorerViewController.h │ │ │ ├── FLEXViewControllerExplorerViewController.m │ │ │ ├── FLEXViewExplorerViewController.h │ │ │ └── FLEXViewExplorerViewController.m │ │ ├── Toolbar │ │ │ ├── FLEXExplorerToolbar.h │ │ │ ├── FLEXExplorerToolbar.m │ │ │ ├── FLEXToolbarItem.h │ │ │ └── FLEXToolbarItem.m │ │ ├── Utility │ │ │ ├── FLEXHeapEnumerator.h │ │ │ ├── FLEXHeapEnumerator.m │ │ │ ├── FLEXKeyboardHelpViewController.h │ │ │ ├── FLEXKeyboardHelpViewController.m │ │ │ ├── FLEXKeyboardShortcutManager.h │ │ │ ├── FLEXKeyboardShortcutManager.m │ │ │ ├── FLEXMultilineTableViewCell.h │ │ │ ├── FLEXMultilineTableViewCell.m │ │ │ ├── FLEXResources.h │ │ │ ├── FLEXResources.m │ │ │ ├── FLEXRuntimeUtility.h │ │ │ ├── FLEXRuntimeUtility.m │ │ │ ├── FLEXUtility.h │ │ │ └── FLEXUtility.m │ │ └── ViewHierarchy │ │ │ ├── FLEXHierarchyTableViewCell.h │ │ │ ├── FLEXHierarchyTableViewCell.m │ │ │ ├── FLEXHierarchyTableViewController.h │ │ │ ├── FLEXHierarchyTableViewController.m │ │ │ ├── FLEXImagePreviewViewController.h │ │ │ └── FLEXImagePreviewViewController.m │ ├── LICENSE │ └── README.md ├── FMDB │ ├── LICENSE.txt │ ├── README.markdown │ └── src │ │ └── fmdb │ │ ├── FMDB.h │ │ ├── FMDatabase.h │ │ ├── FMDatabase.m │ │ ├── FMDatabaseAdditions.h │ │ ├── FMDatabaseAdditions.m │ │ ├── FMDatabasePool.h │ │ ├── FMDatabasePool.m │ │ ├── FMDatabaseQueue.h │ │ ├── FMDatabaseQueue.m │ │ ├── FMResultSet.h │ │ └── FMResultSet.m ├── Fabric │ ├── Fabric.framework │ │ ├── README │ │ └── run │ ├── README.md │ ├── iOS │ │ └── Fabric.framework │ │ │ ├── Fabric │ │ │ ├── Headers │ │ │ ├── FABAttributes.h │ │ │ └── Fabric.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ └── module.modulemap │ │ │ ├── run │ │ │ └── uploadDSYM │ ├── run │ ├── upload-symbols │ └── uploadDSYM ├── FlatCache │ ├── FlatCache │ │ └── FlatCache.swift │ ├── LICENSE │ └── README.md ├── GitHawkRoutes │ ├── GitHawkRoutes │ │ ├── BookmarkShortcutRoute.swift │ │ ├── IssueRoute.swift │ │ ├── RepoRoute.swift │ │ ├── Routable.swift │ │ ├── SearchShortcutRoute.swift │ │ ├── SwitchAccountShortcutRoute.swift │ │ ├── UIApplication+Routable.swift │ │ └── URL+Routable.swift │ ├── LICENSE │ └── README.md ├── HTMLString │ ├── LICENSE │ ├── README.md │ └── Sources │ │ └── HTMLString │ │ ├── Deprecated.swift │ │ ├── HTMLString.swift │ │ ├── Mappings.swift │ │ └── NSString+HTMLString.swift ├── Highlightr │ ├── LICENSE │ ├── Pod │ │ ├── Assets │ │ │ ├── Highlighter │ │ │ │ ├── highlight.min.js │ │ │ │ └── languages │ │ │ │ │ ├── 1c.min.js │ │ │ │ │ ├── abnf.min.js │ │ │ │ │ ├── accesslog.min.js │ │ │ │ │ ├── actionscript.min.js │ │ │ │ │ ├── ada.min.js │ │ │ │ │ ├── apache.min.js │ │ │ │ │ ├── applescript.min.js │ │ │ │ │ ├── arduino.min.js │ │ │ │ │ ├── armasm.min.js │ │ │ │ │ ├── asciidoc.min.js │ │ │ │ │ ├── aspectj.min.js │ │ │ │ │ ├── autohotkey.min.js │ │ │ │ │ ├── autoit.min.js │ │ │ │ │ ├── avrasm.min.js │ │ │ │ │ ├── awk.min.js │ │ │ │ │ ├── axapta.min.js │ │ │ │ │ ├── bash.min.js │ │ │ │ │ ├── basic.min.js │ │ │ │ │ ├── bnf.min.js │ │ │ │ │ ├── brainfuck.min.js │ │ │ │ │ ├── cal.min.js │ │ │ │ │ ├── capnproto.min.js │ │ │ │ │ ├── ceylon.min.js │ │ │ │ │ ├── clean.min.js │ │ │ │ │ ├── clojure-repl.min.js │ │ │ │ │ ├── clojure.min.js │ │ │ │ │ ├── cmake.min.js │ │ │ │ │ ├── coffeescript.min.js │ │ │ │ │ ├── coq.min.js │ │ │ │ │ ├── cos.min.js │ │ │ │ │ ├── cpp.min.js │ │ │ │ │ ├── crmsh.min.js │ │ │ │ │ ├── crystal.min.js │ │ │ │ │ ├── cs.min.js │ │ │ │ │ ├── csp.min.js │ │ │ │ │ ├── css.min.js │ │ │ │ │ ├── d.min.js │ │ │ │ │ ├── dart.min.js │ │ │ │ │ ├── delphi.min.js │ │ │ │ │ ├── diff.min.js │ │ │ │ │ ├── django.min.js │ │ │ │ │ ├── dns.min.js │ │ │ │ │ ├── dockerfile.min.js │ │ │ │ │ ├── dos.min.js │ │ │ │ │ ├── dsconfig.min.js │ │ │ │ │ ├── dts.min.js │ │ │ │ │ ├── dust.min.js │ │ │ │ │ ├── ebnf.min.js │ │ │ │ │ ├── elixir.min.js │ │ │ │ │ ├── elm.min.js │ │ │ │ │ ├── erb.min.js │ │ │ │ │ ├── erlang-repl.min.js │ │ │ │ │ ├── erlang.min.js │ │ │ │ │ ├── excel.min.js │ │ │ │ │ ├── fix.min.js │ │ │ │ │ ├── flix.min.js │ │ │ │ │ ├── fortran.min.js │ │ │ │ │ ├── fsharp.min.js │ │ │ │ │ ├── gams.min.js │ │ │ │ │ ├── gauss.min.js │ │ │ │ │ ├── gcode.min.js │ │ │ │ │ ├── gherkin.min.js │ │ │ │ │ ├── glsl.min.js │ │ │ │ │ ├── go.min.js │ │ │ │ │ ├── golo.min.js │ │ │ │ │ ├── gradle.min.js │ │ │ │ │ ├── groovy.min.js │ │ │ │ │ ├── haml.min.js │ │ │ │ │ ├── handlebars.min.js │ │ │ │ │ ├── haskell.min.js │ │ │ │ │ ├── haxe.min.js │ │ │ │ │ ├── hsp.min.js │ │ │ │ │ ├── htmlbars.min.js │ │ │ │ │ ├── http.min.js │ │ │ │ │ ├── hy.min.js │ │ │ │ │ ├── inform7.min.js │ │ │ │ │ ├── ini.min.js │ │ │ │ │ ├── irpf90.min.js │ │ │ │ │ ├── java.min.js │ │ │ │ │ ├── javascript.min.js │ │ │ │ │ ├── jboss-cli.min.js │ │ │ │ │ ├── json.min.js │ │ │ │ │ ├── julia-repl.min.js │ │ │ │ │ ├── julia.min.js │ │ │ │ │ ├── kotlin.min.js │ │ │ │ │ ├── lasso.min.js │ │ │ │ │ ├── ldif.min.js │ │ │ │ │ ├── leaf.min.js │ │ │ │ │ ├── less.min.js │ │ │ │ │ ├── lisp.min.js │ │ │ │ │ ├── livecodeserver.min.js │ │ │ │ │ ├── livescript.min.js │ │ │ │ │ ├── llvm.min.js │ │ │ │ │ ├── lsl.min.js │ │ │ │ │ ├── lua.min.js │ │ │ │ │ ├── makefile.min.js │ │ │ │ │ ├── markdown.min.js │ │ │ │ │ ├── mathematica.min.js │ │ │ │ │ ├── matlab.min.js │ │ │ │ │ ├── maxima.min.js │ │ │ │ │ ├── mel.min.js │ │ │ │ │ ├── mercury.min.js │ │ │ │ │ ├── mipsasm.min.js │ │ │ │ │ ├── mizar.min.js │ │ │ │ │ ├── mojolicious.min.js │ │ │ │ │ ├── monkey.min.js │ │ │ │ │ ├── moonscript.min.js │ │ │ │ │ ├── n1ql.min.js │ │ │ │ │ ├── nginx.min.js │ │ │ │ │ ├── nimrod.min.js │ │ │ │ │ ├── nix.min.js │ │ │ │ │ ├── nsis.min.js │ │ │ │ │ ├── objectivec.min.js │ │ │ │ │ ├── ocaml.min.js │ │ │ │ │ ├── openscad.min.js │ │ │ │ │ ├── oxygene.min.js │ │ │ │ │ ├── parser3.min.js │ │ │ │ │ ├── perl.min.js │ │ │ │ │ ├── pf.min.js │ │ │ │ │ ├── php.min.js │ │ │ │ │ ├── pony.min.js │ │ │ │ │ ├── powershell.min.js │ │ │ │ │ ├── processing.min.js │ │ │ │ │ ├── profile.min.js │ │ │ │ │ ├── prolog.min.js │ │ │ │ │ ├── protobuf.min.js │ │ │ │ │ ├── puppet.min.js │ │ │ │ │ ├── purebasic.min.js │ │ │ │ │ ├── python.min.js │ │ │ │ │ ├── q.min.js │ │ │ │ │ ├── qml.min.js │ │ │ │ │ ├── r.min.js │ │ │ │ │ ├── rib.min.js │ │ │ │ │ ├── roboconf.min.js │ │ │ │ │ ├── routeros.min.js │ │ │ │ │ ├── rsl.min.js │ │ │ │ │ ├── ruby.min.js │ │ │ │ │ ├── ruleslanguage.min.js │ │ │ │ │ ├── rust.min.js │ │ │ │ │ ├── scala.min.js │ │ │ │ │ ├── scheme.min.js │ │ │ │ │ ├── scilab.min.js │ │ │ │ │ ├── scss.min.js │ │ │ │ │ ├── shell.min.js │ │ │ │ │ ├── smali.min.js │ │ │ │ │ ├── smalltalk.min.js │ │ │ │ │ ├── sml.min.js │ │ │ │ │ ├── sqf.min.js │ │ │ │ │ ├── sql.min.js │ │ │ │ │ ├── stan.min.js │ │ │ │ │ ├── stata.min.js │ │ │ │ │ ├── step21.min.js │ │ │ │ │ ├── stylus.min.js │ │ │ │ │ ├── subunit.min.js │ │ │ │ │ ├── swift.min.js │ │ │ │ │ ├── taggerscript.min.js │ │ │ │ │ ├── tap.min.js │ │ │ │ │ ├── tcl.min.js │ │ │ │ │ ├── tex.min.js │ │ │ │ │ ├── thrift.min.js │ │ │ │ │ ├── tp.min.js │ │ │ │ │ ├── twig.min.js │ │ │ │ │ ├── typescript.min.js │ │ │ │ │ ├── vala.min.js │ │ │ │ │ ├── vbnet.min.js │ │ │ │ │ ├── vbscript-html.min.js │ │ │ │ │ ├── vbscript.min.js │ │ │ │ │ ├── verilog.min.js │ │ │ │ │ ├── vhdl.min.js │ │ │ │ │ ├── vim.min.js │ │ │ │ │ ├── x86asm.min.js │ │ │ │ │ ├── xl.min.js │ │ │ │ │ ├── xml.min.js │ │ │ │ │ ├── xquery.min.js │ │ │ │ │ ├── yaml.min.js │ │ │ │ │ └── zephir.min.js │ │ │ └── styles │ │ │ │ ├── agate.min.css │ │ │ │ ├── androidstudio.min.css │ │ │ │ ├── arduino-light.min.css │ │ │ │ ├── arta.min.css │ │ │ │ ├── ascetic.min.css │ │ │ │ ├── atelier-cave-dark.min.css │ │ │ │ ├── atelier-cave-light.min.css │ │ │ │ ├── atelier-dune-dark.min.css │ │ │ │ ├── atelier-dune-light.min.css │ │ │ │ ├── atelier-estuary-dark.min.css │ │ │ │ ├── atelier-estuary-light.min.css │ │ │ │ ├── atelier-forest-dark.min.css │ │ │ │ ├── atelier-forest-light.min.css │ │ │ │ ├── atelier-heath-dark.min.css │ │ │ │ ├── atelier-heath-light.min.css │ │ │ │ ├── atelier-lakeside-dark.min.css │ │ │ │ ├── atelier-lakeside-light.min.css │ │ │ │ ├── atelier-plateau-dark.min.css │ │ │ │ ├── atelier-plateau-light.min.css │ │ │ │ ├── atelier-savanna-dark.min.css │ │ │ │ ├── atelier-savanna-light.min.css │ │ │ │ ├── atelier-seaside-dark.min.css │ │ │ │ ├── atelier-seaside-light.min.css │ │ │ │ ├── atelier-sulphurpool-dark.min.css │ │ │ │ ├── atelier-sulphurpool-light.min.css │ │ │ │ ├── atom-one-dark.min.css │ │ │ │ ├── atom-one-light.min.css │ │ │ │ ├── brown-paper.min.css │ │ │ │ ├── codepen-embed.min.css │ │ │ │ ├── color-brewer.min.css │ │ │ │ ├── darcula.min.css │ │ │ │ ├── dark.min.css │ │ │ │ ├── darkula.min.css │ │ │ │ ├── default.min.css │ │ │ │ ├── docco.min.css │ │ │ │ ├── dracula.min.css │ │ │ │ ├── far.min.css │ │ │ │ ├── foundation.min.css │ │ │ │ ├── github-gist.min.css │ │ │ │ ├── github.min.css │ │ │ │ ├── googlecode.min.css │ │ │ │ ├── grayscale.min.css │ │ │ │ ├── gruvbox-dark.min.css │ │ │ │ ├── gruvbox-light.min.css │ │ │ │ ├── hopscotch.min.css │ │ │ │ ├── hybrid.min.css │ │ │ │ ├── idea.min.css │ │ │ │ ├── ir-black.min.css │ │ │ │ ├── kimbie.dark.min.css │ │ │ │ ├── kimbie.light.min.css │ │ │ │ ├── magula.min.css │ │ │ │ ├── mono-blue.min.css │ │ │ │ ├── monokai-sublime.min.css │ │ │ │ ├── monokai.min.css │ │ │ │ ├── obsidian.min.css │ │ │ │ ├── ocean.min.css │ │ │ │ ├── paraiso-dark.min.css │ │ │ │ ├── paraiso-light.min.css │ │ │ │ ├── pojoaque.min.css │ │ │ │ ├── purebasic.min.css │ │ │ │ ├── qtcreator_dark.min.css │ │ │ │ ├── qtcreator_light.min.css │ │ │ │ ├── railscasts.min.css │ │ │ │ ├── rainbow.min.css │ │ │ │ ├── routeros.min.css │ │ │ │ ├── school-book.min.css │ │ │ │ ├── solarized-dark.min.css │ │ │ │ ├── solarized-light.min.css │ │ │ │ ├── sunburst.min.css │ │ │ │ ├── tomorrow-night-blue.min.css │ │ │ │ ├── tomorrow-night-bright.min.css │ │ │ │ ├── tomorrow-night-eighties.min.css │ │ │ │ ├── tomorrow-night.min.css │ │ │ │ ├── tomorrow.min.css │ │ │ │ ├── vs.min.css │ │ │ │ ├── vs2015.min.css │ │ │ │ ├── xcode.min.css │ │ │ │ ├── xt256.min.css │ │ │ │ └── zenburn.min.css │ │ └── Classes │ │ │ ├── CodeAttributedString.swift │ │ │ ├── HTMLUtils.swift │ │ │ ├── Highlightr.swift │ │ │ └── Theme.swift │ └── README.md ├── IGListKit │ ├── LICENSE.md │ ├── README.md │ └── Source │ │ ├── Common │ │ ├── IGListAssert.h │ │ ├── IGListBatchUpdateData.h │ │ ├── IGListBatchUpdateData.mm │ │ ├── IGListCompatibility.h │ │ ├── IGListDiff.h │ │ ├── IGListDiff.mm │ │ ├── IGListDiffKit.h │ │ ├── IGListDiffable.h │ │ ├── IGListExperiments.h │ │ ├── IGListIndexPathResult.h │ │ ├── IGListIndexPathResult.m │ │ ├── IGListIndexSetResult.h │ │ ├── IGListIndexSetResult.m │ │ ├── IGListMacros.h │ │ ├── IGListMoveIndex.h │ │ ├── IGListMoveIndex.m │ │ ├── IGListMoveIndexPath.h │ │ ├── IGListMoveIndexPath.m │ │ ├── Internal │ │ │ ├── IGListArrayUtilsInternal.h │ │ │ ├── IGListIndexPathResultInternal.h │ │ │ ├── IGListIndexSetResultInternal.h │ │ │ ├── IGListMoveIndexInternal.h │ │ │ └── IGListMoveIndexPathInternal.h │ │ ├── NSNumber+IGListDiffable.h │ │ ├── NSNumber+IGListDiffable.m │ │ ├── NSString+IGListDiffable.h │ │ └── NSString+IGListDiffable.m │ │ ├── IGListAdapter.h │ │ ├── IGListAdapter.m │ │ ├── IGListAdapterDataSource.h │ │ ├── IGListAdapterDelegate.h │ │ ├── IGListAdapterMoveDelegate.h │ │ ├── IGListAdapterUpdateListener.h │ │ ├── IGListAdapterUpdater.h │ │ ├── IGListAdapterUpdater.m │ │ ├── IGListAdapterUpdaterDelegate.h │ │ ├── IGListBatchContext.h │ │ ├── IGListBindable.h │ │ ├── IGListBindingSectionController.h │ │ ├── IGListBindingSectionController.m │ │ ├── IGListBindingSectionControllerDataSource.h │ │ ├── IGListBindingSectionControllerSelectionDelegate.h │ │ ├── IGListCollectionContext.h │ │ ├── IGListCollectionView.h │ │ ├── IGListCollectionView.m │ │ ├── IGListCollectionViewDelegateLayout.h │ │ ├── IGListCollectionViewLayout.h │ │ ├── IGListCollectionViewLayout.mm │ │ ├── IGListDisplayDelegate.h │ │ ├── IGListGenericSectionController.h │ │ ├── IGListGenericSectionController.m │ │ ├── IGListKit.h │ │ ├── IGListReloadDataUpdater.h │ │ ├── IGListReloadDataUpdater.m │ │ ├── IGListScrollDelegate.h │ │ ├── IGListSectionController.h │ │ ├── IGListSectionController.m │ │ ├── IGListSingleSectionController.h │ │ ├── IGListSingleSectionController.m │ │ ├── IGListStackedSectionController.h │ │ ├── IGListStackedSectionController.m │ │ ├── IGListSupplementaryViewSource.h │ │ ├── IGListTransitionDelegate.h │ │ ├── IGListUpdatingDelegate.h │ │ ├── IGListWorkingRangeDelegate.h │ │ ├── Internal │ │ ├── IGListAdapter+DebugDescription.h │ │ ├── IGListAdapter+DebugDescription.m │ │ ├── IGListAdapter+UICollectionView.h │ │ ├── IGListAdapter+UICollectionView.m │ │ ├── IGListAdapterInternal.h │ │ ├── IGListAdapterProxy.h │ │ ├── IGListAdapterProxy.m │ │ ├── IGListAdapterUpdater+DebugDescription.h │ │ ├── IGListAdapterUpdater+DebugDescription.m │ │ ├── IGListAdapterUpdaterInternal.h │ │ ├── IGListBatchUpdateData+DebugDescription.h │ │ ├── IGListBatchUpdateData+DebugDescription.m │ │ ├── IGListBatchUpdateState.h │ │ ├── IGListBatchUpdates.h │ │ ├── IGListBatchUpdates.m │ │ ├── IGListBindingSectionController+DebugDescription.h │ │ ├── IGListBindingSectionController+DebugDescription.m │ │ ├── IGListCollectionViewLayoutInternal.h │ │ ├── IGListDebugger.h │ │ ├── IGListDebugger.m │ │ ├── IGListDebuggingUtilities.h │ │ ├── IGListDebuggingUtilities.m │ │ ├── IGListDisplayHandler.h │ │ ├── IGListDisplayHandler.m │ │ ├── IGListReloadIndexPath.h │ │ ├── IGListReloadIndexPath.m │ │ ├── IGListSectionControllerInternal.h │ │ ├── IGListSectionMap+DebugDescription.h │ │ ├── IGListSectionMap+DebugDescription.m │ │ ├── IGListSectionMap.h │ │ ├── IGListSectionMap.m │ │ ├── IGListStackedSectionControllerInternal.h │ │ ├── IGListWorkingRangeHandler.h │ │ ├── IGListWorkingRangeHandler.mm │ │ ├── UICollectionView+DebugDescription.h │ │ ├── UICollectionView+DebugDescription.m │ │ ├── UICollectionView+IGListBatchUpdateData.h │ │ ├── UICollectionView+IGListBatchUpdateData.m │ │ ├── UICollectionViewLayout+InteractiveReordering.h │ │ ├── UICollectionViewLayout+InteractiveReordering.m │ │ ├── UIScrollView+IGListKit.h │ │ └── UIScrollView+IGListKit.m │ │ └── Swift │ │ ├── ListAdapter+Values.swift │ │ ├── ListDiffable+FunctionHash.swift │ │ ├── ListDiffableBox.swift │ │ ├── ListSwiftAdapter.swift │ │ ├── ListSwiftAdapterDataSource.swift │ │ ├── ListSwiftAdapterEmptyViewSource.swift │ │ ├── ListSwiftDiffable+Boxed.swift │ │ ├── ListSwiftDiffable.swift │ │ ├── ListSwiftPair.swift │ │ └── ListSwiftSectionController.swift ├── ImageAlertAction │ ├── ImageAlertAction │ │ └── Classes │ │ │ └── UIAlertAction+Image.swift │ ├── LICENSE │ └── README.md ├── Local Podspecs │ ├── ContextMenu.podspec.json │ ├── DateAgo.podspec.json │ ├── DropdownTitleView.podspec.json │ ├── FlatCache.podspec.json │ ├── GitHawkRoutes.podspec.json │ ├── GitHubAPI.podspec.json │ ├── GitHubSession.podspec.json │ ├── Highlightr.podspec.json │ ├── IGListKit.podspec.json │ ├── MessageViewController.podspec.json │ ├── Squawk.podspec.json │ ├── StringHelpers.podspec.json │ ├── StyledTextKit.podspec.json │ ├── SwipeCellKit.podspec.json │ └── cmark-gfm-swift.podspec.json ├── Manifest.lock ├── MessageViewController │ ├── LICENSE │ ├── MessageViewController │ │ ├── ExpandedHitTestButton.swift │ │ ├── MessageAutocompleteController.swift │ │ ├── MessageTextView.swift │ │ ├── MessageView.swift │ │ ├── MessageViewController+MessageViewDelegate.swift │ │ ├── MessageViewController.swift │ │ ├── MessageViewDelegate.swift │ │ ├── NSAttributedString+ReplaceRange.swift │ │ ├── String+WordAtRange.swift │ │ ├── UIButton+BottomHeightOffset.swift │ │ ├── UIScrollView+StopScrolling.swift │ │ ├── UITextView+Prefixes.swift │ │ └── UIView+iOS11.swift │ └── README.md ├── NYTPhotoViewer │ ├── LICENSE.md │ ├── NYTPhotoViewer │ │ ├── NYTPhotoCaptionView.h │ │ ├── NYTPhotoCaptionView.m │ │ ├── NYTPhotoDismissalInteractionController.h │ │ ├── NYTPhotoDismissalInteractionController.m │ │ ├── NYTPhotoTransitionAnimator.h │ │ ├── NYTPhotoTransitionAnimator.m │ │ ├── NYTPhotoTransitionController.h │ │ ├── NYTPhotoTransitionController.m │ │ ├── NYTPhotoViewController.h │ │ ├── NYTPhotoViewController.m │ │ ├── NYTPhotoViewer.bundle │ │ │ ├── NYTPhotoViewerCloseButtonX.png │ │ │ ├── NYTPhotoViewerCloseButtonX@2x.png │ │ │ ├── NYTPhotoViewerCloseButtonX@3x.png │ │ │ ├── NYTPhotoViewerCloseButtonXLandscape.png │ │ │ ├── NYTPhotoViewerCloseButtonXLandscape@2x.png │ │ │ └── NYTPhotoViewerCloseButtonXLandscape@3x.png │ │ ├── NYTPhotoViewer.h │ │ ├── NYTPhotoViewerArrayDataSource.h │ │ ├── NYTPhotoViewerArrayDataSource.m │ │ ├── NYTPhotoViewerCore.h │ │ ├── NYTPhotoViewerSinglePhotoDataSource.h │ │ ├── NYTPhotoViewerSinglePhotoDataSource.m │ │ ├── NYTPhotosOverlayView.h │ │ ├── NYTPhotosOverlayView.m │ │ ├── NYTPhotosViewController.h │ │ ├── NYTPhotosViewController.m │ │ ├── NYTScalingImageView.h │ │ ├── NYTScalingImageView.m │ │ ├── Protocols │ │ │ ├── NYTPhoto.h │ │ │ ├── NYTPhotoCaptionViewLayoutWidthHinting.h │ │ │ ├── NYTPhotoContainer.h │ │ │ └── NYTPhotoViewerDataSource.h │ │ └── Resource Loading │ │ │ ├── NSBundle+NYTPhotoViewer.h │ │ │ └── NSBundle+NYTPhotoViewer.m │ └── README.md ├── Pods.xcodeproj │ └── project.pbxproj ├── SDWebImage │ ├── LICENSE │ ├── README.md │ └── SDWebImage │ │ ├── FLAnimatedImage │ │ ├── FLAnimatedImageView+WebCache.h │ │ └── FLAnimatedImageView+WebCache.m │ │ ├── NSData+ImageContentType.h │ │ ├── NSData+ImageContentType.m │ │ ├── NSImage+WebCache.h │ │ ├── NSImage+WebCache.m │ │ ├── SDImageCache.h │ │ ├── SDImageCache.m │ │ ├── SDImageCacheConfig.h │ │ ├── SDImageCacheConfig.m │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageCompat.m │ │ ├── SDWebImageDecoder.h │ │ ├── SDWebImageDecoder.m │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloader.m │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageDownloaderOperation.m │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageManager.m │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── SDWebImagePrefetcher.m │ │ ├── UIButton+WebCache.h │ │ ├── UIButton+WebCache.m │ │ ├── UIImage+GIF.h │ │ ├── UIImage+GIF.m │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImage+MultiFormat.m │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+HighlightedWebCache.m │ │ ├── UIImageView+WebCache.h │ │ ├── UIImageView+WebCache.m │ │ ├── UIView+WebCache.h │ │ ├── UIView+WebCache.m │ │ ├── UIView+WebCacheOperation.h │ │ └── UIView+WebCacheOperation.m ├── SnapKit │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── Constraint.swift │ │ ├── ConstraintAttributes.swift │ │ ├── ConstraintConfig.swift │ │ ├── ConstraintConstantTarget.swift │ │ ├── ConstraintDSL.swift │ │ ├── ConstraintDescription.swift │ │ ├── ConstraintInsetTarget.swift │ │ ├── ConstraintInsets.swift │ │ ├── ConstraintItem.swift │ │ ├── ConstraintLayoutGuide+Extensions.swift │ │ ├── ConstraintLayoutGuide.swift │ │ ├── ConstraintLayoutGuideDSL.swift │ │ ├── ConstraintLayoutSupport.swift │ │ ├── ConstraintLayoutSupportDSL.swift │ │ ├── ConstraintMaker.swift │ │ ├── ConstraintMakerEditable.swift │ │ ├── ConstraintMakerExtendable.swift │ │ ├── ConstraintMakerFinalizable.swift │ │ ├── ConstraintMakerPriortizable.swift │ │ ├── ConstraintMakerRelatable.swift │ │ ├── ConstraintMultiplierTarget.swift │ │ ├── ConstraintOffsetTarget.swift │ │ ├── ConstraintPriority.swift │ │ ├── ConstraintPriorityTarget.swift │ │ ├── ConstraintRelatableTarget.swift │ │ ├── ConstraintRelation.swift │ │ ├── ConstraintView+Extensions.swift │ │ ├── ConstraintView.swift │ │ ├── ConstraintViewDSL.swift │ │ ├── Debugging.swift │ │ ├── LayoutConstraint.swift │ │ ├── LayoutConstraintItem.swift │ │ ├── Typealiases.swift │ │ └── UILayoutSupport+Extensions.swift ├── Squawk │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── Anchor.swift │ │ ├── RubberBandDistance.swift │ │ ├── Squawk+Configuration.swift │ │ ├── Squawk.swift │ │ ├── SquawkItem.swift │ │ ├── SquawkView.swift │ │ ├── SquawkViewDelegate.swift │ │ └── UIViewController+SearchChildren.swift ├── StyledTextKit │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── CGImage+LRUCachable.swift │ │ ├── CGSize+LRUCachable.swift │ │ ├── CGSize+Utility.swift │ │ ├── Font.swift │ │ ├── Hashable+Combined.swift │ │ ├── LRUCache.swift │ │ ├── NSAttributedString+Trim.swift │ │ ├── NSAttributedStringKey+StyledText.swift │ │ ├── NSLayoutManager+Render.swift │ │ ├── StyledText.swift │ │ ├── StyledTextBuilder.swift │ │ ├── StyledTextRenderCacheKey.swift │ │ ├── StyledTextRenderer.swift │ │ ├── StyledTextString.swift │ │ ├── StyledTextView.swift │ │ ├── TextStyle.swift │ │ ├── UIContentSizeCategory+Scaling.swift │ │ ├── UIFont+UnionTraits.swift │ │ └── UIScreen+Static.swift ├── SwiftLint │ ├── LICENSE │ └── swiftlint ├── TUSafariActivity │ ├── LICENSE.md │ ├── Pod │ │ ├── Assets │ │ │ ├── cs.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── de.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── en.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── es.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── eu.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── fi.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── fr.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── it.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── ja.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── ko.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── nl.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── no.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── pl.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── pt.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── ru.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── safari-7.png │ │ │ ├── safari-7@2x.png │ │ │ ├── safari-7@3x.png │ │ │ ├── safari-7~iPad.png │ │ │ ├── safari-7~iPad@2x.png │ │ │ ├── safari.png │ │ │ ├── safari@2x.png │ │ │ ├── safari@3x.png │ │ │ ├── safari~iPad.png │ │ │ ├── safari~iPad@2x.png │ │ │ ├── sk.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── sv.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ ├── vi.lproj │ │ │ │ └── TUSafariActivity.strings │ │ │ └── zh_CN.lproj │ │ │ │ └── TUSafariActivity.strings │ │ └── Classes │ │ │ ├── TUSafariActivity.h │ │ │ └── TUSafariActivity.m │ └── README.md ├── Target Support Files │ ├── Alamofire-iOS │ │ ├── Alamofire-iOS-Info.plist │ │ ├── Alamofire-iOS-dummy.m │ │ ├── Alamofire-iOS-prefix.pch │ │ ├── Alamofire-iOS-umbrella.h │ │ ├── Alamofire-iOS.modulemap │ │ ├── Alamofire-iOS.xcconfig │ │ └── Info.plist │ ├── Alamofire-watchOS │ │ ├── Alamofire-watchOS-Info.plist │ │ ├── Alamofire-watchOS-dummy.m │ │ ├── Alamofire-watchOS-prefix.pch │ │ ├── Alamofire-watchOS-umbrella.h │ │ ├── Alamofire-watchOS.modulemap │ │ ├── Alamofire-watchOS.xcconfig │ │ └── Info.plist │ ├── AlamofireNetworkActivityIndicator │ │ ├── AlamofireNetworkActivityIndicator-Info.plist │ │ ├── AlamofireNetworkActivityIndicator-dummy.m │ │ ├── AlamofireNetworkActivityIndicator-prefix.pch │ │ ├── AlamofireNetworkActivityIndicator-umbrella.h │ │ ├── AlamofireNetworkActivityIndicator.modulemap │ │ ├── AlamofireNetworkActivityIndicator.xcconfig │ │ └── Info.plist │ ├── Apollo-iOS │ │ ├── Apollo-iOS-Info.plist │ │ ├── Apollo-iOS-dummy.m │ │ ├── Apollo-iOS-prefix.pch │ │ ├── Apollo-iOS-umbrella.h │ │ ├── Apollo-iOS.modulemap │ │ ├── Apollo-iOS.xcconfig │ │ └── Info.plist │ ├── Apollo-watchOS │ │ ├── Apollo-watchOS-Info.plist │ │ ├── Apollo-watchOS-dummy.m │ │ ├── Apollo-watchOS-prefix.pch │ │ ├── Apollo-watchOS-umbrella.h │ │ ├── Apollo-watchOS.modulemap │ │ ├── Apollo-watchOS.xcconfig │ │ └── Info.plist │ ├── ContextMenu │ │ ├── ContextMenu-Info.plist │ │ ├── ContextMenu-dummy.m │ │ ├── ContextMenu-prefix.pch │ │ ├── ContextMenu-umbrella.h │ │ ├── ContextMenu.modulemap │ │ ├── ContextMenu.xcconfig │ │ └── Info.plist │ ├── Crashlytics │ │ └── Crashlytics.xcconfig │ ├── DateAgo-iOS │ │ ├── DateAgo-iOS-Info.plist │ │ ├── DateAgo-iOS-dummy.m │ │ ├── DateAgo-iOS-prefix.pch │ │ ├── DateAgo-iOS-umbrella.h │ │ ├── DateAgo-iOS.modulemap │ │ ├── DateAgo-iOS.xcconfig │ │ ├── Info.plist │ │ ├── ResourceBundle-Resources-DateAgo-iOS-Info.plist │ │ └── ResourceBundle-Resources-Info.plist │ ├── DateAgo-watchOS │ │ ├── DateAgo-watchOS-Info.plist │ │ ├── DateAgo-watchOS-dummy.m │ │ ├── DateAgo-watchOS-prefix.pch │ │ ├── DateAgo-watchOS-umbrella.h │ │ ├── DateAgo-watchOS.modulemap │ │ ├── DateAgo-watchOS.xcconfig │ │ ├── Info.plist │ │ ├── ResourceBundle-Resources-DateAgo-watchOS-Info.plist │ │ └── ResourceBundle-Resources-Info.plist │ ├── DropdownTitleView │ │ ├── DropdownTitleView-Info.plist │ │ ├── DropdownTitleView-dummy.m │ │ ├── DropdownTitleView-prefix.pch │ │ ├── DropdownTitleView-umbrella.h │ │ ├── DropdownTitleView.modulemap │ │ ├── DropdownTitleView.xcconfig │ │ └── Info.plist │ ├── FBSnapshotTestCase │ │ ├── FBSnapshotTestCase-Info.plist │ │ ├── FBSnapshotTestCase-dummy.m │ │ ├── FBSnapshotTestCase-prefix.pch │ │ ├── FBSnapshotTestCase-umbrella.h │ │ ├── FBSnapshotTestCase.modulemap │ │ ├── FBSnapshotTestCase.xcconfig │ │ └── Info.plist │ ├── FLAnimatedImage │ │ ├── FLAnimatedImage-Info.plist │ │ ├── FLAnimatedImage-dummy.m │ │ ├── FLAnimatedImage-prefix.pch │ │ ├── FLAnimatedImage-umbrella.h │ │ ├── FLAnimatedImage.modulemap │ │ ├── FLAnimatedImage.xcconfig │ │ └── Info.plist │ ├── FLEX │ │ ├── FLEX-Info.plist │ │ ├── FLEX-dummy.m │ │ ├── FLEX-prefix.pch │ │ ├── FLEX-umbrella.h │ │ ├── FLEX.modulemap │ │ ├── FLEX.xcconfig │ │ └── Info.plist │ ├── FMDB │ │ ├── FMDB-Info.plist │ │ ├── FMDB-dummy.m │ │ ├── FMDB-prefix.pch │ │ ├── FMDB-umbrella.h │ │ ├── FMDB.modulemap │ │ ├── FMDB.xcconfig │ │ └── Info.plist │ ├── Fabric │ │ └── Fabric.xcconfig │ ├── FlatCache │ │ ├── FlatCache-Info.plist │ │ ├── FlatCache-dummy.m │ │ ├── FlatCache-prefix.pch │ │ ├── FlatCache-umbrella.h │ │ ├── FlatCache.modulemap │ │ ├── FlatCache.xcconfig │ │ └── Info.plist │ ├── GitHawkRoutes │ │ ├── GitHawkRoutes-Info.plist │ │ ├── GitHawkRoutes-dummy.m │ │ ├── GitHawkRoutes-prefix.pch │ │ ├── GitHawkRoutes-umbrella.h │ │ ├── GitHawkRoutes.modulemap │ │ ├── GitHawkRoutes.xcconfig │ │ └── Info.plist │ ├── GitHubAPI-iOS │ │ ├── GitHubAPI-iOS-Info.plist │ │ ├── GitHubAPI-iOS-dummy.m │ │ ├── GitHubAPI-iOS-prefix.pch │ │ ├── GitHubAPI-iOS-umbrella.h │ │ ├── GitHubAPI-iOS.modulemap │ │ ├── GitHubAPI-iOS.xcconfig │ │ └── Info.plist │ ├── GitHubAPI-watchOS │ │ ├── GitHubAPI-watchOS-Info.plist │ │ ├── GitHubAPI-watchOS-dummy.m │ │ ├── GitHubAPI-watchOS-prefix.pch │ │ ├── GitHubAPI-watchOS-umbrella.h │ │ ├── GitHubAPI-watchOS.modulemap │ │ ├── GitHubAPI-watchOS.xcconfig │ │ └── Info.plist │ ├── GitHubSession-iOS │ │ ├── GitHubSession-iOS-Info.plist │ │ ├── GitHubSession-iOS-dummy.m │ │ ├── GitHubSession-iOS-prefix.pch │ │ ├── GitHubSession-iOS-umbrella.h │ │ ├── GitHubSession-iOS.modulemap │ │ ├── GitHubSession-iOS.xcconfig │ │ └── Info.plist │ ├── GitHubSession-watchOS │ │ ├── GitHubSession-watchOS-Info.plist │ │ ├── GitHubSession-watchOS-dummy.m │ │ ├── GitHubSession-watchOS-prefix.pch │ │ ├── GitHubSession-watchOS-umbrella.h │ │ ├── GitHubSession-watchOS.modulemap │ │ ├── GitHubSession-watchOS.xcconfig │ │ └── Info.plist │ ├── HTMLString │ │ ├── HTMLString-Info.plist │ │ ├── HTMLString-dummy.m │ │ ├── HTMLString-prefix.pch │ │ ├── HTMLString-umbrella.h │ │ ├── HTMLString.modulemap │ │ ├── HTMLString.xcconfig │ │ └── Info.plist │ ├── Highlightr │ │ ├── Highlightr-Info.plist │ │ ├── Highlightr-dummy.m │ │ ├── Highlightr-prefix.pch │ │ ├── Highlightr-umbrella.h │ │ ├── Highlightr.modulemap │ │ ├── Highlightr.xcconfig │ │ └── Info.plist │ ├── IGListKit │ │ ├── IGListKit-Info.plist │ │ ├── IGListKit-dummy.m │ │ ├── IGListKit-prefix.pch │ │ ├── IGListKit-umbrella.h │ │ ├── IGListKit.modulemap │ │ ├── IGListKit.xcconfig │ │ └── Info.plist │ ├── ImageAlertAction │ │ ├── ImageAlertAction-Info.plist │ │ ├── ImageAlertAction-dummy.m │ │ ├── ImageAlertAction-prefix.pch │ │ ├── ImageAlertAction-umbrella.h │ │ ├── ImageAlertAction.modulemap │ │ ├── ImageAlertAction.xcconfig │ │ └── Info.plist │ ├── MessageViewController │ │ ├── Info.plist │ │ ├── MessageViewController-Info.plist │ │ ├── MessageViewController-dummy.m │ │ ├── MessageViewController-prefix.pch │ │ ├── MessageViewController-umbrella.h │ │ ├── MessageViewController.modulemap │ │ └── MessageViewController.xcconfig │ ├── NYTPhotoViewer │ │ ├── Info.plist │ │ ├── NYTPhotoViewer-Info.plist │ │ ├── NYTPhotoViewer-dummy.m │ │ ├── NYTPhotoViewer-prefix.pch │ │ ├── NYTPhotoViewer-umbrella.h │ │ ├── NYTPhotoViewer.modulemap │ │ ├── NYTPhotoViewer.xcconfig │ │ ├── ResourceBundle-NYTPhotoViewer-Info.plist │ │ └── ResourceBundle-NYTPhotoViewer-NYTPhotoViewer-Info.plist │ ├── Pods-Freetime │ │ ├── Info.plist │ │ ├── Pods-Freetime-Info.plist │ │ ├── Pods-Freetime-acknowledgements.markdown │ │ ├── Pods-Freetime-acknowledgements.plist │ │ ├── Pods-Freetime-dummy.m │ │ ├── Pods-Freetime-frameworks.sh │ │ ├── Pods-Freetime-resources.sh │ │ ├── Pods-Freetime-umbrella.h │ │ ├── Pods-Freetime.debug.xcconfig │ │ ├── Pods-Freetime.modulemap │ │ ├── Pods-Freetime.release.xcconfig │ │ └── Pods-Freetime.testflight.xcconfig │ ├── Pods-FreetimeTests │ │ ├── Info.plist │ │ ├── Pods-FreetimeTests-Info.plist │ │ ├── Pods-FreetimeTests-acknowledgements.markdown │ │ ├── Pods-FreetimeTests-acknowledgements.plist │ │ ├── Pods-FreetimeTests-dummy.m │ │ ├── Pods-FreetimeTests-frameworks.sh │ │ ├── Pods-FreetimeTests-resources.sh │ │ ├── Pods-FreetimeTests-umbrella.h │ │ ├── Pods-FreetimeTests.debug.xcconfig │ │ ├── Pods-FreetimeTests.modulemap │ │ ├── Pods-FreetimeTests.release.xcconfig │ │ └── Pods-FreetimeTests.testflight.xcconfig │ ├── Pods-FreetimeWatch Extension │ │ ├── Info.plist │ │ ├── Pods-FreetimeWatch Extension-Info.plist │ │ ├── Pods-FreetimeWatch Extension-acknowledgements.markdown │ │ ├── Pods-FreetimeWatch Extension-acknowledgements.plist │ │ ├── Pods-FreetimeWatch Extension-dummy.m │ │ ├── Pods-FreetimeWatch Extension-frameworks.sh │ │ ├── Pods-FreetimeWatch Extension-resources.sh │ │ ├── Pods-FreetimeWatch Extension-umbrella.h │ │ ├── Pods-FreetimeWatch Extension.debug.xcconfig │ │ ├── Pods-FreetimeWatch Extension.modulemap │ │ ├── Pods-FreetimeWatch Extension.release.xcconfig │ │ └── Pods-FreetimeWatch Extension.testflight.xcconfig │ ├── Pods-FreetimeWatch │ │ ├── Info.plist │ │ ├── Pods-FreetimeWatch-Info.plist │ │ ├── Pods-FreetimeWatch-acknowledgements.markdown │ │ ├── Pods-FreetimeWatch-acknowledgements.plist │ │ ├── Pods-FreetimeWatch-dummy.m │ │ ├── Pods-FreetimeWatch-frameworks.sh │ │ ├── Pods-FreetimeWatch-resources.sh │ │ ├── Pods-FreetimeWatch-umbrella.h │ │ ├── Pods-FreetimeWatch.debug.xcconfig │ │ ├── Pods-FreetimeWatch.modulemap │ │ ├── Pods-FreetimeWatch.release.xcconfig │ │ └── Pods-FreetimeWatch.testflight.xcconfig │ ├── SDWebImage │ │ ├── Info.plist │ │ ├── SDWebImage-Info.plist │ │ ├── SDWebImage-dummy.m │ │ ├── SDWebImage-prefix.pch │ │ ├── SDWebImage-umbrella.h │ │ ├── SDWebImage.modulemap │ │ └── SDWebImage.xcconfig │ ├── SnapKit │ │ ├── Info.plist │ │ ├── SnapKit-Info.plist │ │ ├── SnapKit-dummy.m │ │ ├── SnapKit-prefix.pch │ │ ├── SnapKit-umbrella.h │ │ ├── SnapKit.modulemap │ │ └── SnapKit.xcconfig │ ├── Squawk │ │ ├── Info.plist │ │ ├── Squawk-Info.plist │ │ ├── Squawk-dummy.m │ │ ├── Squawk-prefix.pch │ │ ├── Squawk-umbrella.h │ │ ├── Squawk.modulemap │ │ └── Squawk.xcconfig │ ├── StringHelpers-iOS │ │ ├── Info.plist │ │ ├── StringHelpers-iOS-Info.plist │ │ ├── StringHelpers-iOS-dummy.m │ │ ├── StringHelpers-iOS-prefix.pch │ │ ├── StringHelpers-iOS-umbrella.h │ │ ├── StringHelpers-iOS.modulemap │ │ └── StringHelpers-iOS.xcconfig │ ├── StringHelpers-watchOS │ │ ├── Info.plist │ │ ├── StringHelpers-watchOS-Info.plist │ │ ├── StringHelpers-watchOS-dummy.m │ │ ├── StringHelpers-watchOS-prefix.pch │ │ ├── StringHelpers-watchOS-umbrella.h │ │ ├── StringHelpers-watchOS.modulemap │ │ └── StringHelpers-watchOS.xcconfig │ ├── StyledTextKit │ │ ├── Info.plist │ │ ├── StyledTextKit-Info.plist │ │ ├── StyledTextKit-dummy.m │ │ ├── StyledTextKit-prefix.pch │ │ ├── StyledTextKit-umbrella.h │ │ ├── StyledTextKit.modulemap │ │ └── StyledTextKit.xcconfig │ ├── SwiftLint │ │ └── SwiftLint.xcconfig │ ├── SwipeCellKit │ │ ├── Info.plist │ │ ├── SwipeCellKit-Info.plist │ │ ├── SwipeCellKit-dummy.m │ │ ├── SwipeCellKit-prefix.pch │ │ ├── SwipeCellKit-umbrella.h │ │ ├── SwipeCellKit.modulemap │ │ └── SwipeCellKit.xcconfig │ ├── TUSafariActivity │ │ ├── Info.plist │ │ ├── ResourceBundle-TUSafariActivity-Info.plist │ │ ├── ResourceBundle-TUSafariActivity-TUSafariActivity-Info.plist │ │ ├── TUSafariActivity-Info.plist │ │ ├── TUSafariActivity-dummy.m │ │ ├── TUSafariActivity-prefix.pch │ │ ├── TUSafariActivity-umbrella.h │ │ ├── TUSafariActivity.modulemap │ │ └── TUSafariActivity.xcconfig │ ├── XLPagerTabStrip │ │ ├── Info.plist │ │ ├── ResourceBundle-XLPagerTabStrip-Info.plist │ │ ├── ResourceBundle-XLPagerTabStrip-XLPagerTabStrip-Info.plist │ │ ├── XLPagerTabStrip-Info.plist │ │ ├── XLPagerTabStrip-dummy.m │ │ ├── XLPagerTabStrip-prefix.pch │ │ ├── XLPagerTabStrip-umbrella.h │ │ ├── XLPagerTabStrip.modulemap │ │ └── XLPagerTabStrip.xcconfig │ └── cmark-gfm-swift │ │ ├── Info.plist │ │ ├── cmark-gfm-swift-Info.plist │ │ ├── cmark-gfm-swift-dummy.m │ │ ├── cmark-gfm-swift-prefix.pch │ │ ├── cmark-gfm-swift-umbrella.h │ │ ├── cmark-gfm-swift.modulemap │ │ └── cmark-gfm-swift.xcconfig ├── XLPagerTabStrip │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── BarPagerTabStripViewController.swift │ │ ├── BarView.swift │ │ ├── BaseButtonBarPagerTabStripViewController.swift │ │ ├── ButtonBarPagerTabStripViewController.swift │ │ ├── ButtonBarView.swift │ │ ├── ButtonBarViewCell.swift │ │ ├── ButtonCell.xib │ │ ├── FXPageControl.h │ │ ├── FXPageControl.m │ │ ├── IndicatorInfo.swift │ │ ├── PagerTabStripBehaviour.swift │ │ ├── PagerTabStripError.swift │ │ ├── PagerTabStripViewController.swift │ │ ├── SegmentedPagerTabStripViewController.swift │ │ ├── SwipeDirection.swift │ │ └── TwitterPagerTabStripViewController.swift └── cmark-gfm-swift │ ├── LICENSE │ ├── README.md │ └── Source │ ├── ASTOperations.swift │ ├── Block+ListElement.swift │ ├── Block+TableRow.swift │ ├── Block+TextElement.swift │ ├── Element.swift │ ├── Inline+TextElement.swift │ ├── ListElement.swift │ ├── Node+Elements.swift │ ├── Node.swift │ ├── SwiftAST.swift │ ├── TableRow.swift │ ├── TextElement.swift │ ├── cmark-gfm-swift.h │ └── cmark_gfm │ ├── arena.c │ ├── autolink.c │ ├── blocks.c │ ├── buffer.c │ ├── case_fold_switch.inc │ ├── checkbox.c │ ├── cmark.c │ ├── cmark_ctype.c │ ├── commonmark.c │ ├── core-extensions.c │ ├── entities.inc │ ├── ext_scanners.c │ ├── footnotes.c │ ├── houdini_href_e.c │ ├── houdini_html_e.c │ ├── houdini_html_u.c │ ├── html.c │ ├── include │ ├── autolink.h │ ├── buffer.h │ ├── checkbox.h │ ├── chunk.h │ ├── cmark.h │ ├── cmark_ctype.h │ ├── cmark_export.h │ ├── cmark_extension_api.h │ ├── cmark_version.h │ ├── cmarkextensions_export.h │ ├── config.h │ ├── core-extensions.h │ ├── ext_scanners.h │ ├── footnotes.h │ ├── houdini.h │ ├── html.h │ ├── inlines.h │ ├── iterator.h │ ├── libcmark_gfm.h │ ├── map.h │ ├── mention.h │ ├── node.h │ ├── parser.h │ ├── plugin.h │ ├── references.h │ ├── registry.h │ ├── render.h │ ├── scanners.h │ ├── strikethrough.h │ ├── syntax_extension.h │ ├── table.h │ ├── tagfilter.h │ └── utf8.h │ ├── inlines.c │ ├── iterator.c │ ├── latex.c │ ├── linked_list.c │ ├── man.c │ ├── map.c │ ├── mention.c │ ├── module.modulemap │ ├── node.c │ ├── plaintext.c │ ├── plugin.c │ ├── references.c │ ├── registry.c │ ├── render.c │ ├── scanners.c │ ├── scanners.re │ ├── strikethrough.c │ ├── syntax_extension.c │ ├── table.c │ ├── tagfilter.c │ ├── utf8.c │ └── xml.c ├── README.md ├── Resources ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x-1.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x-1.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x-1.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ ├── Contents.json │ ├── alert.imageset │ │ ├── Contents.json │ │ ├── alert@2x.png │ │ └── alert@3x.png │ ├── arrow-down.imageset │ │ ├── Contents.json │ │ ├── arrow-down@2x.png │ │ └── arrow-down@3x.png │ ├── arrow-left.imageset │ │ ├── Contents.json │ │ ├── arrow-left@2x.png │ │ └── arrow-left@3x.png │ ├── arrow-right.imageset │ │ ├── Contents.json │ │ ├── arrow-right@2x.png │ │ └── arrow-right@3x.png │ ├── arrow-small-down.imageset │ │ ├── Contents.json │ │ ├── arrow-small-down@2x.png │ │ └── arrow-small-down@3x.png │ ├── arrow-small-left.imageset │ │ ├── Contents.json │ │ ├── arrow-small-left@2x.png │ │ └── arrow-small-left@3x.png │ ├── arrow-small-right.imageset │ │ ├── Contents.json │ │ ├── arrow-small-right@2x.png │ │ └── arrow-small-right@3x.png │ ├── arrow-small-up.imageset │ │ ├── Contents.json │ │ ├── arrow-small-up@2x.png │ │ └── arrow-small-up@3x.png │ ├── arrow-up.imageset │ │ ├── Contents.json │ │ ├── arrow-up@2x.png │ │ └── arrow-up@3x.png │ ├── bar-bold.imageset │ │ ├── Contents.json │ │ ├── bar-bold@2x.png │ │ └── bar-bold@3x.png │ ├── bar-code-block.imageset │ │ ├── Contents.json │ │ ├── bar-code-block@2x.png │ │ └── bar-code-block@3x.png │ ├── bar-code.imageset │ │ ├── Contents.json │ │ ├── bar-code@2x.png │ │ └── bar-code@3x.png │ ├── bar-eye.imageset │ │ ├── Contents.json │ │ ├── bar-eye@2x.png │ │ └── bar-eye@3x.png │ ├── bar-header.imageset │ │ ├── Contents.json │ │ ├── bar-header@2x.png │ │ └── bar-header@3x.png │ ├── bar-indent.imageset │ │ ├── Contents.json │ │ ├── bar-indent@2x.png │ │ └── bar-indent@3x.png │ ├── bar-italic.imageset │ │ ├── Contents.json │ │ ├── bar-italic@2x.png │ │ └── bar-italic@3x.png │ ├── bar-link.imageset │ │ ├── Contents.json │ │ ├── bar-link@2x.png │ │ └── bar-link@3x.png │ ├── bar-mention.imageset │ │ ├── Contents.json │ │ ├── bar-mention@2x.png │ │ └── bar-mention@3x.png │ ├── bar-ol.imageset │ │ ├── Contents.json │ │ ├── bar-ol@2x.png │ │ └── bar-ol@3x.png │ ├── bar-strikethrough.imageset │ │ ├── Contents.json │ │ ├── bar-strikethrough@2x.png │ │ └── bar-strikethrough@3x.png │ ├── bar-ul.imageset │ │ ├── Contents.json │ │ ├── bar-ul@2x.png │ │ └── bar-ul@3x.png │ ├── bar-upload.imageset │ │ ├── Contents.json │ │ ├── bar-upload@2x.png │ │ └── bar-upload@3x.png │ ├── beaker.imageset │ │ ├── Contents.json │ │ ├── beaker@2x.png │ │ └── beaker@3x.png │ ├── bell.imageset │ │ ├── Contents.json │ │ ├── bell@2x.png │ │ └── bell@3x.png │ ├── bold.imageset │ │ ├── Contents.json │ │ ├── bold@2x.png │ │ └── bold@3x.png │ ├── book.imageset │ │ ├── Contents.json │ │ ├── book@2x.png │ │ └── book@3x.png │ ├── bookmark.imageset │ │ ├── Contents.json │ │ ├── bookmark@2x.png │ │ └── bookmark@3x.png │ ├── bookmarks-large.imageset │ │ ├── Contents.json │ │ ├── bookmarks-large@2x.png │ │ └── bookmarks-large@3x.png │ ├── briefcase.imageset │ │ ├── Contents.json │ │ ├── briefcase@2x.png │ │ └── briefcase@3x.png │ ├── broadcast.imageset │ │ ├── Contents.json │ │ ├── broadcast@2x.png │ │ └── broadcast@3x.png │ ├── browser.imageset │ │ ├── Contents.json │ │ ├── browser@2x.png │ │ └── browser@3x.png │ ├── bug.imageset │ │ ├── Contents.json │ │ ├── bug@2x.png │ │ └── bug@3x.png │ ├── bullets-hollow.imageset │ │ ├── Contents.json │ │ ├── bullets-hollow@2x.png │ │ └── bullets-hollow@3x.png │ ├── bullets-small.imageset │ │ ├── Contents.json │ │ ├── bullets-small.png │ │ └── bullets-small@3x.png │ ├── bullets.imageset │ │ ├── Contents.json │ │ ├── bullets@2x.png │ │ └── bullets@3x.png │ ├── calendar.imageset │ │ ├── Contents.json │ │ ├── calendar@2x.png │ │ └── calendar@3x.png │ ├── check-small.imageset │ │ ├── Contents.json │ │ ├── check-small@2x.png │ │ └── check-small@3x.png │ ├── check.imageset │ │ ├── Contents.json │ │ ├── check@2x.png │ │ └── check@3x.png │ ├── checked-disabled.imageset │ │ ├── Contents.json │ │ ├── checked-disabled@2x.png │ │ └── checked-disabled@3x.png │ ├── checked.imageset │ │ ├── Contents.json │ │ ├── checked@2x.png │ │ └── checked@3x.png │ ├── checklist.imageset │ │ ├── Contents.json │ │ ├── checklist@2x.png │ │ └── checklist@3x.png │ ├── chevron-down-small.imageset │ │ ├── Contents.json │ │ ├── chevron-down-small@2x.png │ │ └── chevron-down-small@3x.png │ ├── chevron-down.imageset │ │ ├── Contents.json │ │ ├── chevron-down@2x.png │ │ └── chevron-down@3x.png │ ├── chevron-left.imageset │ │ ├── Contents.json │ │ ├── chevron-left@2x.png │ │ └── chevron-left@3x.png │ ├── chevron-right.imageset │ │ ├── Contents.json │ │ ├── chevron-right@2x.png │ │ └── chevron-right@3x.png │ ├── chevron-up.imageset │ │ ├── Contents.json │ │ ├── chevron-up@2x.png │ │ └── chevron-up@3x.png │ ├── circle-slash.imageset │ │ ├── Contents.json │ │ ├── circle-slash@2x.png │ │ └── circle-slash@3x.png │ ├── circuit-board.imageset │ │ ├── Contents.json │ │ ├── circuit-board@2x.png │ │ └── circuit-board@3x.png │ ├── clippy.imageset │ │ ├── Contents.json │ │ ├── clippy@2x.png │ │ └── clippy@3x.png │ ├── clock.imageset │ │ ├── Contents.json │ │ ├── clock@2x.png │ │ └── clock@3x.png │ ├── cloud-download.imageset │ │ ├── Contents.json │ │ ├── cloud-download@2x.png │ │ └── cloud-download@3x.png │ ├── cloud-upload.imageset │ │ ├── Contents.json │ │ ├── cloud-upload@2x.png │ │ └── cloud-upload@3x.png │ ├── code.imageset │ │ ├── Contents.json │ │ ├── code@2x.png │ │ └── code@3x.png │ ├── comment-discussion.imageset │ │ ├── Contents.json │ │ ├── comment-discussion@2x.png │ │ └── comment-discussion@3x.png │ ├── comment-small.imageset │ │ ├── Contents.json │ │ ├── comment-small@2x.png │ │ └── comment-small@3x.png │ ├── comment.imageset │ │ ├── Contents.json │ │ ├── comment@2x.png │ │ └── comment@3x.png │ ├── credit-card.imageset │ │ ├── Contents.json │ │ ├── credit-card@2x.png │ │ └── credit-card@3x.png │ ├── dash.imageset │ │ ├── Contents.json │ │ ├── dash@2x.png │ │ └── dash@3x.png │ ├── dashboard.imageset │ │ ├── Contents.json │ │ ├── dashboard@2x.png │ │ └── dashboard@3x.png │ ├── database.imageset │ │ ├── Contents.json │ │ ├── database@2x.png │ │ └── database@3x.png │ ├── desktop-download.imageset │ │ ├── Contents.json │ │ ├── desktop-download@2x.png │ │ └── desktop-download@3x.png │ ├── device-camera-video.imageset │ │ ├── Contents.json │ │ ├── device-camera-video@2x.png │ │ └── device-camera-video@3x.png │ ├── device-camera.imageset │ │ ├── Contents.json │ │ ├── device-camera@2x.png │ │ └── device-camera@3x.png │ ├── device-desktop.imageset │ │ ├── Contents.json │ │ ├── device-desktop@2x.png │ │ └── device-desktop@3x.png │ ├── device-mobile.imageset │ │ ├── Contents.json │ │ ├── device-mobile@2x.png │ │ └── device-mobile@3x.png │ ├── diff-added.imageset │ │ ├── Contents.json │ │ ├── diff-added@2x.png │ │ └── diff-added@3x.png │ ├── diff-ignored.imageset │ │ ├── Contents.json │ │ ├── diff-ignored@2x.png │ │ └── diff-ignored@3x.png │ ├── diff-modified.imageset │ │ ├── Contents.json │ │ ├── diff-modified@2x.png │ │ └── diff-modified@3x.png │ ├── diff-removed.imageset │ │ ├── Contents.json │ │ ├── diff-removed@2x.png │ │ └── diff-removed@3x.png │ ├── diff-renamed.imageset │ │ ├── Contents.json │ │ ├── diff-renamed@2x.png │ │ └── diff-renamed@3x.png │ ├── diff.imageset │ │ ├── Contents.json │ │ ├── diff@2x.png │ │ └── diff@3x.png │ ├── ellipses.imageset │ │ ├── Contents.json │ │ ├── ellipses@2x.png │ │ └── ellipses@3x.png │ ├── ellipsis.imageset │ │ ├── Contents.json │ │ ├── ellipsis@2x.png │ │ └── ellipsis@3x.png │ ├── eye-small.imageset │ │ ├── Contents.json │ │ ├── eye-small@2x.png │ │ └── eye-small@3x.png │ ├── eye.imageset │ │ ├── Contents.json │ │ ├── eye@2x.png │ │ └── eye@3x.png │ ├── feelsgood.imageset │ │ ├── Contents.json │ │ ├── feelsgood@2x.png │ │ └── feelsgood@3x.png │ ├── file-binary.imageset │ │ ├── Contents.json │ │ ├── file-binary@2x.png │ │ └── file-binary@3x.png │ ├── file-code.imageset │ │ ├── Contents.json │ │ ├── file-code@2x.png │ │ └── file-code@3x.png │ ├── file-directory.imageset │ │ ├── Contents.json │ │ ├── file-directory@2x.png │ │ └── file-directory@3x.png │ ├── file-media.imageset │ │ ├── Contents.json │ │ ├── file-media@2x.png │ │ └── file-media@3x.png │ ├── file-pdf.imageset │ │ ├── Contents.json │ │ ├── file-pdf@2x.png │ │ └── file-pdf@3x.png │ ├── file-submodule.imageset │ │ ├── Contents.json │ │ ├── file-submodule@2x.png │ │ └── file-submodule@3x.png │ ├── file-symlink-directory.imageset │ │ ├── Contents.json │ │ ├── file-symlink-directory@2x.png │ │ └── file-symlink-directory@3x.png │ ├── file-symlink-file.imageset │ │ ├── Contents.json │ │ ├── file-symlink-file@2x.png │ │ └── file-symlink-file@3x.png │ ├── file-text.imageset │ │ ├── Contents.json │ │ ├── file-text@2x.png │ │ └── file-text@3x.png │ ├── file-zip.imageset │ │ ├── Contents.json │ │ ├── file-zip@2x.png │ │ └── file-zip@3x.png │ ├── file.imageset │ │ ├── Contents.json │ │ ├── file@2x.png │ │ └── file@3x.png │ ├── finnadie.imageset │ │ ├── Contents.json │ │ ├── finnadie@2x.png │ │ └── finnadie@3x.png │ ├── flame.imageset │ │ ├── Contents.json │ │ ├── flame@2x.png │ │ └── flame@3x.png │ ├── fold.imageset │ │ ├── Contents.json │ │ ├── fold@2x.png │ │ └── fold@3x.png │ ├── gear.imageset │ │ ├── Contents.json │ │ ├── gear@2x.png │ │ └── gear@3x.png │ ├── gift.imageset │ │ ├── Contents.json │ │ ├── gift@2x.png │ │ └── gift@3x.png │ ├── gist-secret.imageset │ │ ├── Contents.json │ │ ├── gist-secret@2x.png │ │ └── gist-secret@3x.png │ ├── gist.imageset │ │ ├── Contents.json │ │ ├── gist@2x.png │ │ └── gist@3x.png │ ├── git-branch.imageset │ │ ├── Contents.json │ │ ├── git-branch@2x.png │ │ └── git-branch@3x.png │ ├── git-commit-small.imageset │ │ ├── Contents.json │ │ ├── git-commit-small@2x.png │ │ └── git-commit-small@3x.png │ ├── git-commit.imageset │ │ ├── Contents.json │ │ ├── git-commit@2x.png │ │ └── git-commit@3x.png │ ├── git-compare.imageset │ │ ├── Contents.json │ │ ├── git-compare@2x.png │ │ └── git-compare@3x.png │ ├── git-merge-small.imageset │ │ ├── Contents.json │ │ ├── git-merge-small@2x.png │ │ └── git-merge-small@3x.png │ ├── git-merge.imageset │ │ ├── Contents.json │ │ ├── git-merge@2x.png │ │ └── git-merge@3x.png │ ├── git-pull-request-small.imageset │ │ ├── Contents.json │ │ ├── git-pull-request-small@2x.png │ │ └── git-pull-request-small@3x.png │ ├── git-pull-request.imageset │ │ ├── Contents.json │ │ ├── git-pull-request@2x.png │ │ └── git-pull-request@3x.png │ ├── githawk-badge.imageset │ │ ├── Contents.json │ │ ├── githawk-badge@2x.png │ │ └── githawk-badge@3x.png │ ├── globe.imageset │ │ ├── Contents.json │ │ ├── globe@2x.png │ │ └── globe@3x.png │ ├── goberserk.imageset │ │ ├── Contents.json │ │ ├── goberserk@2x.png │ │ └── goberserk@3x.png │ ├── godmode.imageset │ │ ├── Contents.json │ │ ├── godmode@2x.png │ │ └── godmode@3x.png │ ├── grabber.imageset │ │ ├── Contents.json │ │ ├── grabber@2x.png │ │ └── grabber@3x.png │ ├── graph.imageset │ │ ├── Contents.json │ │ ├── graph@2x.png │ │ └── graph@3x.png │ ├── heart.imageset │ │ ├── Contents.json │ │ ├── heart@2x.png │ │ └── heart@3x.png │ ├── history.imageset │ │ ├── Contents.json │ │ ├── history@2x.png │ │ └── history@3x.png │ ├── home.imageset │ │ ├── Contents.json │ │ ├── home@2x.png │ │ └── home@3x.png │ ├── horizontal-rule.imageset │ │ ├── Contents.json │ │ ├── horizontal-rule@2x.png │ │ └── horizontal-rule@3x.png │ ├── hubot.imageset │ │ ├── Contents.json │ │ ├── hubot@2x.png │ │ └── hubot@3x.png │ ├── hurtrealbad.imageset │ │ ├── Contents.json │ │ ├── hurtrealbad@2x.png │ │ └── hurtrealbad@3x.png │ ├── inbox.imageset │ │ ├── Contents.json │ │ ├── inbox@2x.png │ │ └── inbox@3x.png │ ├── info.imageset │ │ ├── Contents.json │ │ ├── info@2x.png │ │ └── info@3x.png │ ├── issue-closed-small.imageset │ │ ├── Contents.json │ │ ├── issue-closed-small@2x.png │ │ └── issue-closed-small@3x.png │ ├── issue-closed.imageset │ │ ├── Contents.json │ │ ├── issue-closed@2x.png │ │ └── issue-closed@3x.png │ ├── issue-opened-small.imageset │ │ ├── Contents.json │ │ ├── issue-opened-small@2x.png │ │ └── issue-opened-small@3x.png │ ├── issue-opened.imageset │ │ ├── Contents.json │ │ ├── issue-opened@2x.png │ │ └── issue-opened@3x.png │ ├── issue-reopened.imageset │ │ ├── Contents.json │ │ ├── issue-reopened@2x.png │ │ └── issue-reopened@3x.png │ ├── italic.imageset │ │ ├── Contents.json │ │ ├── italic@2x.png │ │ └── italic@3x.png │ ├── jersey.imageset │ │ ├── Contents.json │ │ ├── jersey@2x.png │ │ └── jersey@3x.png │ ├── key-small.imageset │ │ ├── Contents.json │ │ ├── key-small@2x.png │ │ └── key-small@3x.png │ ├── key.imageset │ │ ├── Contents.json │ │ ├── key@2x.png │ │ └── key@3x.png │ ├── keyboard.imageset │ │ ├── Contents.json │ │ ├── keyboard@2x.png │ │ └── keyboard@3x.png │ ├── law.imageset │ │ ├── Contents.json │ │ ├── law@2x.png │ │ └── law@3x.png │ ├── light-bulb.imageset │ │ ├── Contents.json │ │ ├── light-bulb@2x.png │ │ └── light-bulb@3x.png │ ├── link-external.imageset │ │ ├── Contents.json │ │ ├── link-external@2x.png │ │ └── link-external@3x.png │ ├── link-small.imageset │ │ ├── Contents.json │ │ ├── link-small@2x.png │ │ └── link-small@3x.png │ ├── link.imageset │ │ ├── Contents.json │ │ ├── link@2x.png │ │ └── link@3x.png │ ├── list-ordered.imageset │ │ ├── Contents.json │ │ ├── list-ordered@2x.png │ │ └── list-ordered@3x.png │ ├── list-unordered.imageset │ │ ├── Contents.json │ │ ├── list-unordered@2x.png │ │ └── list-unordered@3x.png │ ├── location.imageset │ │ ├── Contents.json │ │ ├── location@2x.png │ │ └── location@3x.png │ ├── lock-small.imageset │ │ ├── Contents.json │ │ ├── lock-small@2x.png │ │ └── lock-small@3x.png │ ├── lock.imageset │ │ ├── Contents.json │ │ ├── lock@2x.png │ │ └── lock@3x.png │ ├── logo-gist.imageset │ │ ├── Contents.json │ │ ├── logo-gist@2x.png │ │ └── logo-gist@3x.png │ ├── logo-github.imageset │ │ ├── Contents.json │ │ ├── logo-github@2x.png │ │ └── logo-github@3x.png │ ├── mail-read.imageset │ │ ├── Contents.json │ │ ├── mail-read@2x.png │ │ └── mail-read@3x.png │ ├── mail-reply.imageset │ │ ├── Contents.json │ │ ├── mail-reply@2x.png │ │ └── mail-reply@3x.png │ ├── mail.imageset │ │ ├── Contents.json │ │ ├── mail@2x.png │ │ └── mail@3x.png │ ├── mark-github.imageset │ │ ├── Contents.json │ │ ├── mark-github@2x.png │ │ └── mark-github@3x.png │ ├── markdown.imageset │ │ ├── Contents.json │ │ ├── markdown@2x.png │ │ └── markdown@3x.png │ ├── megaphone.imageset │ │ ├── Contents.json │ │ ├── megaphone@2x.png │ │ └── megaphone@3x.png │ ├── mention.imageset │ │ ├── Contents.json │ │ ├── mention@2x.png │ │ └── mention@3x.png │ ├── merge-alert.imageset │ │ ├── Contents.json │ │ ├── merge-alert@2x.png │ │ └── merge-alert@3x.png │ ├── merge-check.imageset │ │ ├── Contents.json │ │ ├── merge-check@2x.png │ │ └── merge-check@3x.png │ ├── merge-x.imageset │ │ ├── Contents.json │ │ ├── merge-x@2x.png │ │ └── merge-x@3x.png │ ├── milestone.imageset │ │ ├── Contents.json │ │ ├── milestone@2x.png │ │ └── milestone@3x.png │ ├── mirror.imageset │ │ ├── Contents.json │ │ ├── mirror@2x.png │ │ └── mirror@3x.png │ ├── mortar-board.imageset │ │ ├── Contents.json │ │ ├── mortar-board@2x.png │ │ └── mortar-board@3x.png │ ├── mute-small.imageset │ │ ├── Contents.json │ │ ├── mute-small@2x.png │ │ └── mute-small@3x.png │ ├── mute.imageset │ │ ├── Contents.json │ │ ├── mute@2x.png │ │ └── mute@3x.png │ ├── nav-bookmark-selected.imageset │ │ ├── Contents.json │ │ ├── nav-bookmark-selected@2x.png │ │ └── nav-bookmark-selected@3x.png │ ├── nav-bookmark.imageset │ │ ├── Contents.json │ │ ├── nav-bookmark@2x.png │ │ └── nav-bookmark@3x.png │ ├── neckbeard.imageset │ │ ├── Contents.json │ │ ├── neckbeard@2x.png │ │ └── neckbeard@3x.png │ ├── no-newline.imageset │ │ ├── Contents.json │ │ ├── no-newline@2x.png │ │ └── no-newline@3x.png │ ├── note.imageset │ │ ├── Contents.json │ │ ├── note@2x.png │ │ └── note@3x.png │ ├── octocat.imageset │ │ ├── Contents.json │ │ ├── octocat@2x.png │ │ └── octocat@3x.png │ ├── octoface.imageset │ │ ├── Contents.json │ │ ├── octoface@2x.png │ │ └── octoface@3x.png │ ├── organization.imageset │ │ ├── Contents.json │ │ ├── organization@2x.png │ │ └── organization@3x.png │ ├── package.imageset │ │ ├── Contents.json │ │ ├── package@2x.png │ │ └── package@3x.png │ ├── paintcan.imageset │ │ ├── Contents.json │ │ ├── paintcan@2x.png │ │ └── paintcan@3x.png │ ├── pencil-small.imageset │ │ ├── Contents.json │ │ ├── pencil-small@2x.png │ │ └── pencil-small@3x.png │ ├── pencil.imageset │ │ ├── Contents.json │ │ ├── pencil@2x.png │ │ └── pencil@3x.png │ ├── person.imageset │ │ ├── Contents.json │ │ ├── person@2x.png │ │ └── person@3x.png │ ├── pin.imageset │ │ ├── Contents.json │ │ ├── pin@2x.png │ │ └── pin@3x.png │ ├── plug.imageset │ │ ├── Contents.json │ │ ├── plug@2x.png │ │ └── plug@3x.png │ ├── plus-small.imageset │ │ ├── Contents.json │ │ ├── plus-small@2x.png │ │ └── plus-small@3x.png │ ├── plus.imageset │ │ ├── Contents.json │ │ ├── plus@2x.png │ │ └── plus@3x.png │ ├── primitive-dot.imageset │ │ ├── Contents.json │ │ ├── primitive-dot@2x.png │ │ └── primitive-dot@3x.png │ ├── primitive-square.imageset │ │ ├── Contents.json │ │ ├── primitive-square@2x.png │ │ └── primitive-square@3x.png │ ├── project.imageset │ │ ├── Contents.json │ │ ├── project@2x.png │ │ └── project@3x.png │ ├── pulse.imageset │ │ ├── Contents.json │ │ ├── pulse@2x.png │ │ └── pulse@3x.png │ ├── question.imageset │ │ ├── Contents.json │ │ ├── question@2x.png │ │ └── question@3x.png │ ├── quote.imageset │ │ ├── Contents.json │ │ ├── quote@2x.png │ │ └── quote@3x.png │ ├── radio-tower.imageset │ │ ├── Contents.json │ │ ├── radio-tower@2x.png │ │ └── radio-tower@3x.png │ ├── rage1.imageset │ │ ├── Contents.json │ │ ├── rage1@2x.png │ │ └── rage1@3x.png │ ├── rage2.imageset │ │ ├── Contents.json │ │ ├── rage2@2x.png │ │ └── rage2@3x.png │ ├── rage3.imageset │ │ ├── Contents.json │ │ ├── rage3@2x.png │ │ └── rage3@3x.png │ ├── rage4.imageset │ │ ├── Contents.json │ │ ├── rage4@2x.png │ │ └── rage4@3x.png │ ├── reply.imageset │ │ ├── Contents.json │ │ ├── reply@2x.png │ │ └── reply@3x.png │ ├── repo-clone.imageset │ │ ├── Contents.json │ │ ├── repo-clone@2x.png │ │ └── repo-clone@3x.png │ ├── repo-force-push.imageset │ │ ├── Contents.json │ │ ├── repo-force-push@2x.png │ │ └── repo-force-push@3x.png │ ├── repo-forked.imageset │ │ ├── Contents.json │ │ ├── repo-forked@2x.png │ │ └── repo-forked@3x.png │ ├── repo-pull.imageset │ │ ├── Contents.json │ │ ├── repo-pull@2x.png │ │ └── repo-pull@3x.png │ ├── repo-push.imageset │ │ ├── Contents.json │ │ ├── repo-push@2x.png │ │ └── repo-push@3x.png │ ├── repo.imageset │ │ ├── Contents.json │ │ ├── repo@2x.png │ │ └── repo@3x.png │ ├── request-changes.imageset │ │ ├── Contents.json │ │ └── request-changes.pdf │ ├── reviewer.imageset │ │ ├── Contents.json │ │ ├── reviewer@2x.png │ │ └── reviewer@3x.png │ ├── rocket.imageset │ │ ├── Contents.json │ │ ├── rocket@2x.png │ │ └── rocket@3x.png │ ├── rss.imageset │ │ ├── Contents.json │ │ ├── rss@2x.png │ │ └── rss@3x.png │ ├── ruby.imageset │ │ ├── Contents.json │ │ ├── ruby@2x.png │ │ └── ruby@3x.png │ ├── screen-full.imageset │ │ ├── Contents.json │ │ ├── screen-full@2x.png │ │ └── screen-full@3x.png │ ├── screen-normal.imageset │ │ ├── Contents.json │ │ ├── screen-normal@2x.png │ │ └── screen-normal@3x.png │ ├── search-large.imageset │ │ ├── Contents.json │ │ ├── search-large@2x.png │ │ └── search-large@3x.png │ ├── search.imageset │ │ ├── Contents.json │ │ ├── search@2x.png │ │ └── search@3x.png │ ├── send.imageset │ │ ├── Contents.json │ │ ├── send@2x.png │ │ └── send@3x.png │ ├── server.imageset │ │ ├── Contents.json │ │ ├── server@2x.png │ │ └── server@3x.png │ ├── settings.imageset │ │ ├── Contents.json │ │ ├── settings@2x.png │ │ └── settings@3x.png │ ├── shield.imageset │ │ ├── Contents.json │ │ ├── shield@2x.png │ │ └── shield@3x.png │ ├── shipit.imageset │ │ ├── Contents.json │ │ ├── shipit@2x.png │ │ └── shipit@3x.png │ ├── sign-in.imageset │ │ ├── Contents.json │ │ ├── sign-in@2x.png │ │ └── sign-in@3x.png │ ├── sign-out.imageset │ │ ├── Contents.json │ │ ├── sign-out@2x.png │ │ └── sign-out@3x.png │ ├── smiley-small.imageset │ │ ├── Contents.json │ │ ├── smiley-small@2x.png │ │ └── smiley-small@3x.png │ ├── smiley.imageset │ │ ├── Contents.json │ │ ├── smiley@2x.png │ │ └── smiley@3x.png │ ├── splash-light.imageset │ │ ├── Contents.json │ │ ├── splash-light@2x.png │ │ └── splash-light@3x.png │ ├── splash.imageset │ │ ├── Contents.json │ │ ├── splash@2x.png │ │ └── splash@3x.png │ ├── splash_branches.imageset │ │ ├── Contents.json │ │ ├── splash_branches@2x.png │ │ └── splash_branches@3x.png │ ├── squirrel.imageset │ │ ├── Contents.json │ │ ├── squirrel@2x.png │ │ └── squirrel@3x.png │ ├── star.imageset │ │ ├── Contents.json │ │ ├── star@2x.png │ │ └── star@3x.png │ ├── stop.imageset │ │ ├── Contents.json │ │ ├── stop@2x.png │ │ └── stop@3x.png │ ├── suspect.imageset │ │ ├── Contents.json │ │ ├── suspect@2x.png │ │ └── suspect@3x.png │ ├── sync.imageset │ │ ├── Contents.json │ │ ├── sync@2x.png │ │ └── sync@3x.png │ ├── tab-bookmark-selected.imageset │ │ ├── Contents.json │ │ ├── tab-bookmark-selected@2x.png │ │ └── tab-bookmark-selected@3x.png │ ├── tab-bookmark.imageset │ │ ├── Contents.json │ │ ├── tab-bookmark@2x.png │ │ └── tab-bookmark@3x.png │ ├── tab-gear-selected.imageset │ │ ├── Contents.json │ │ ├── tab-gear-selected@2x.png │ │ └── tab-gear-selected@3x.png │ ├── tab-gear.imageset │ │ ├── Contents.json │ │ ├── tab-gear@2x.png │ │ └── tab-gear@3x.png │ ├── tab-inbox-selected.imageset │ │ ├── Contents.json │ │ ├── tab-inbox-selected@2x.png │ │ └── tab-inbox-selected@3x.png │ ├── tab-inbox.imageset │ │ ├── Contents.json │ │ ├── tab-inbox@2x.png │ │ └── tab-inbox@3x.png │ ├── tab-search-selected.imageset │ │ ├── Contents.json │ │ ├── tab-search-selected@2x.png │ │ └── tab-search-selected@3x.png │ ├── tab-search.imageset │ │ ├── Contents.json │ │ ├── tab-search@2x.png │ │ └── tab-search@3x.png │ ├── tag.imageset │ │ ├── Contents.json │ │ ├── tag@2x.png │ │ └── tag@3x.png │ ├── tasklist.imageset │ │ ├── Contents.json │ │ ├── tasklist@2x.png │ │ └── tasklist@3x.png │ ├── telescope.imageset │ │ ├── Contents.json │ │ ├── telescope@2x.png │ │ └── telescope@3x.png │ ├── terminal.imageset │ │ ├── Contents.json │ │ ├── terminal@2x.png │ │ └── terminal@3x.png │ ├── text-size.imageset │ │ ├── Contents.json │ │ ├── text-size@2x.png │ │ └── text-size@3x.png │ ├── three-bars.imageset │ │ ├── Contents.json │ │ ├── three-bars@2x.png │ │ └── three-bars@3x.png │ ├── thumbsdown.imageset │ │ ├── Contents.json │ │ ├── thumbsdown@2x.png │ │ └── thumbsdown@3x.png │ ├── thumbsup.imageset │ │ ├── Contents.json │ │ ├── thumbsup@2x.png │ │ └── thumbsup@3x.png │ ├── tools.imageset │ │ ├── Contents.json │ │ ├── tools@2x.png │ │ └── tools@3x.png │ ├── trashcan.imageset │ │ ├── Contents.json │ │ ├── trashcan@2x.png │ │ └── trashcan@3x.png │ ├── triangle-down.imageset │ │ ├── Contents.json │ │ ├── triangle-down@2x.png │ │ └── triangle-down@3x.png │ ├── triangle-left.imageset │ │ ├── Contents.json │ │ ├── triangle-left@2x.png │ │ └── triangle-left@3x.png │ ├── triangle-right.imageset │ │ ├── Contents.json │ │ ├── triangle-right@2x.png │ │ └── triangle-right@3x.png │ ├── triangle-up.imageset │ │ ├── Contents.json │ │ ├── triangle-up@2x.png │ │ └── triangle-up@3x.png │ ├── trollface.imageset │ │ ├── Contents.json │ │ ├── trollface@2x.png │ │ └── trollface@3x.png │ ├── unchecked-disabled.imageset │ │ ├── Contents.json │ │ ├── unchecked-disabled@2x.png │ │ └── unchecked-disabled@3x.png │ ├── unchecked.imageset │ │ ├── Contents.json │ │ ├── unchecked@2x.png │ │ └── unchecked@3x.png │ ├── unfold.imageset │ │ ├── Contents.json │ │ ├── unfold@2x.png │ │ └── unfold@3x.png │ ├── unmute-small.imageset │ │ ├── Contents.json │ │ ├── unmute-small@2x.png │ │ └── unmute-small@3x.png │ ├── unmute.imageset │ │ ├── Contents.json │ │ ├── unmute@2x.png │ │ └── unmute@3x.png │ ├── unverified.imageset │ │ ├── Contents.json │ │ ├── unverified@2x.png │ │ └── unverified@3x.png │ ├── verified.imageset │ │ ├── Contents.json │ │ ├── verified@2x.png │ │ └── verified@3x.png │ ├── versions.imageset │ │ ├── Contents.json │ │ ├── versions@2x.png │ │ └── versions@3x.png │ ├── watch.imageset │ │ ├── Contents.json │ │ ├── watch@2x.png │ │ └── watch@3x.png │ ├── x-small.imageset │ │ ├── Contents.json │ │ ├── x-small@2x.png │ │ └── x-small@3x.png │ ├── x.imageset │ │ ├── Contents.json │ │ ├── x@2x.png │ │ └── x@3x.png │ └── zap.imageset │ │ ├── Contents.json │ │ ├── zap@2x.png │ │ └── zap@3x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Freetime-Bridging-Header.h ├── Freetime.entitlements ├── FreetimeSamples-Info.plist ├── GoogleService-Info.plist ├── Info.plist ├── Localizable.stringsdict ├── Snapshots-Info.plist └── emoji.json ├── SECURITY.md ├── Settings.bundle ├── Root.plist ├── com.mono0926.LicensePlist.latest_result.txt ├── com.mono0926.LicensePlist.plist └── com.mono0926.LicensePlist │ ├── Alamofire.plist │ ├── AlamofireNetworkActivityIndicator.plist │ ├── Apollo.plist │ ├── ContextMenu.plist │ ├── Crashlytics.plist │ ├── DropdownTitleView.plist │ ├── FBSnapshotTestCase.plist │ ├── FLAnimatedImage.plist │ ├── FLEX.plist │ ├── FMDB.plist │ ├── Fabric.plist │ ├── FlatCache.plist │ ├── GitHawkRoutes.plist │ ├── HTMLString.plist │ ├── Highlightr.plist │ ├── IGListKit.plist │ ├── ImageAlertAction.plist │ ├── MessageViewController.plist │ ├── NYTPhotoViewer.plist │ ├── SDWebImage.plist │ ├── SnapKit.plist │ ├── Squawk.plist │ ├── StyledTextKit.plist │ ├── SwiftLint.plist │ ├── SwipeCellKit.plist │ ├── TUSafariActivity.plist │ ├── XLPagerTabStrip.plist │ └── cmark-gfm-swift.plist ├── Setup.md ├── fastlane ├── .gitignore ├── Appfile ├── Fastfile └── README.md ├── gql ├── API.swift ├── AddComment.graphql ├── AddReaction.graphql ├── BookmarkNodes.graphql ├── Fragments.graphql ├── IssueAutocomplete.graphql ├── IssueOrPullRequest.graphql ├── RemoveReaction.graphql ├── RepoBranches.graphql ├── RepoFile.graphql ├── RepoFileHistory.graphql ├── RepoFiles.graphql ├── RepoPages.graphql ├── RepositoryInfo.graphql ├── RepositoryLabels.graphql ├── SearchRepos.graphql ├── examples │ └── Issue.json └── schema.json ├── images ├── app-store-badge.png └── githawk-pulse.gif ├── package.json └── tools ├── bin └── license-plist └── generateAcknowledgements.sh /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Classes/Bookmark/Bookmark.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Bookmark/Bookmark.swift -------------------------------------------------------------------------------- /Classes/Bookmark/BookmarkCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Bookmark/BookmarkCell.swift -------------------------------------------------------------------------------- /Classes/Bookmark/BookmarkCloudMigrator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Bookmark/BookmarkCloudMigrator.swift -------------------------------------------------------------------------------- /Classes/Bookmark/BookmarkCloudStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Bookmark/BookmarkCloudStore.swift -------------------------------------------------------------------------------- /Classes/Bookmark/BookmarkIssueViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Bookmark/BookmarkIssueViewModel.swift -------------------------------------------------------------------------------- /Classes/Bookmark/BookmarkMigrationCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Bookmark/BookmarkMigrationCell.swift -------------------------------------------------------------------------------- /Classes/Bookmark/BookmarkNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Bookmark/BookmarkNavigationController.swift -------------------------------------------------------------------------------- /Classes/Bookmark/BookmarkRepoCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Bookmark/BookmarkRepoCell.swift -------------------------------------------------------------------------------- /Classes/Bookmark/BookmarkRepoSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Bookmark/BookmarkRepoSectionController.swift -------------------------------------------------------------------------------- /Classes/Bookmark/BookmarkStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Bookmark/BookmarkStore.swift -------------------------------------------------------------------------------- /Classes/Bookmark/BookmarkViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Bookmark/BookmarkViewController.swift -------------------------------------------------------------------------------- /Classes/Bookmark/GitHubClient+Bookmarks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Bookmark/GitHubClient+Bookmarks.swift -------------------------------------------------------------------------------- /Classes/History/Client+History.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/History/Client+History.swift -------------------------------------------------------------------------------- /Classes/History/PathCommitCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/History/PathCommitCell.swift -------------------------------------------------------------------------------- /Classes/History/PathCommitModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/History/PathCommitModel.swift -------------------------------------------------------------------------------- /Classes/History/PathCommitSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/History/PathCommitSectionController.swift -------------------------------------------------------------------------------- /Classes/History/PathHistoryViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/History/PathHistoryViewController.swift -------------------------------------------------------------------------------- /Classes/History/PathHistoryViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/History/PathHistoryViewModel.swift -------------------------------------------------------------------------------- /Classes/History/UIViewController+HistoryAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/History/UIViewController+HistoryAction.swift -------------------------------------------------------------------------------- /Classes/Image Upload/ImageUpload.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Image Upload/ImageUpload.storyboard -------------------------------------------------------------------------------- /Classes/Image Upload/ImgurClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Image Upload/ImgurClient.swift -------------------------------------------------------------------------------- /Classes/Issues/AddCommentClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/AddCommentClient.swift -------------------------------------------------------------------------------- /Classes/Issues/Assignees/IssueAssigneeUserCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Assignees/IssueAssigneeUserCell.swift -------------------------------------------------------------------------------- /Classes/Issues/Assignees/IssueAssigneesModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Assignees/IssueAssigneesModel.swift -------------------------------------------------------------------------------- /Classes/Issues/Branches/IssueTargetBranchCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Branches/IssueTargetBranchCell.swift -------------------------------------------------------------------------------- /Classes/Issues/Branches/IssueTargetBranchModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Branches/IssueTargetBranchModel.swift -------------------------------------------------------------------------------- /Classes/Issues/Comments/Hr/IssueCommentHrCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Comments/Hr/IssueCommentHrCell.swift -------------------------------------------------------------------------------- /Classes/Issues/Comments/Hr/IssueCommentHrModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Comments/Hr/IssueCommentHrModel.swift -------------------------------------------------------------------------------- /Classes/Issues/Comments/IssueCommentModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Comments/IssueCommentModel.swift -------------------------------------------------------------------------------- /Classes/Issues/Commit/IssueCommitCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Commit/IssueCommitCell.swift -------------------------------------------------------------------------------- /Classes/Issues/Commit/IssueCommitModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Commit/IssueCommitModel.swift -------------------------------------------------------------------------------- /Classes/Issues/DiffHunk/IssueDiffHunkModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/DiffHunk/IssueDiffHunkModel.swift -------------------------------------------------------------------------------- /Classes/Issues/Files/File+ListDiffable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Files/File+ListDiffable.swift -------------------------------------------------------------------------------- /Classes/Issues/Files/IssueFileCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Files/IssueFileCell.swift -------------------------------------------------------------------------------- /Classes/Issues/Files/IssueFileChangesModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Files/IssueFileChangesModel.swift -------------------------------------------------------------------------------- /Classes/Issues/Files/IssueViewFilesCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Files/IssueViewFilesCell.swift -------------------------------------------------------------------------------- /Classes/Issues/GithubClient+Issues.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/GithubClient+Issues.swift -------------------------------------------------------------------------------- /Classes/Issues/Issue+IssueType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Issue+IssueType.swift -------------------------------------------------------------------------------- /Classes/Issues/IssueCommentModelHandling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/IssueCommentModelHandling.swift -------------------------------------------------------------------------------- /Classes/Issues/IssueDetailsModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/IssueDetailsModel.swift -------------------------------------------------------------------------------- /Classes/Issues/IssueManageButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/IssueManageButton.swift -------------------------------------------------------------------------------- /Classes/Issues/IssueResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/IssueResult.swift -------------------------------------------------------------------------------- /Classes/Issues/IssueStatus+ButtonState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/IssueStatus+ButtonState.swift -------------------------------------------------------------------------------- /Classes/Issues/IssueStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/IssueStatus.swift -------------------------------------------------------------------------------- /Classes/Issues/IssueTextActionsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/IssueTextActionsView.swift -------------------------------------------------------------------------------- /Classes/Issues/IssueType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/IssueType.swift -------------------------------------------------------------------------------- /Classes/Issues/IssueViewModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/IssueViewModels.swift -------------------------------------------------------------------------------- /Classes/Issues/IssuesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/IssuesViewController.swift -------------------------------------------------------------------------------- /Classes/Issues/Labeled/IssueLabeledCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Labeled/IssueLabeledCell.swift -------------------------------------------------------------------------------- /Classes/Issues/Labeled/IssueLabeledModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Labeled/IssueLabeledModel.swift -------------------------------------------------------------------------------- /Classes/Issues/Labels/IssueLabelCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Labels/IssueLabelCell.swift -------------------------------------------------------------------------------- /Classes/Issues/Labels/IssueLabelDotCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Labels/IssueLabelDotCell.swift -------------------------------------------------------------------------------- /Classes/Issues/Labels/IssueLabelEditCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Labels/IssueLabelEditCell.swift -------------------------------------------------------------------------------- /Classes/Issues/Labels/IssueLabelStatusCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Labels/IssueLabelStatusCell.swift -------------------------------------------------------------------------------- /Classes/Issues/Labels/IssueLabelStatusModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Labels/IssueLabelStatusModel.swift -------------------------------------------------------------------------------- /Classes/Issues/Labels/IssueLabelsModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Labels/IssueLabelsModel.swift -------------------------------------------------------------------------------- /Classes/Issues/Managing/IssueManagingModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Managing/IssueManagingModel.swift -------------------------------------------------------------------------------- /Classes/Issues/Merge/GithubClient+Merge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Merge/GithubClient+Merge.swift -------------------------------------------------------------------------------- /Classes/Issues/Merge/IssueMergeButtonCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Merge/IssueMergeButtonCell.swift -------------------------------------------------------------------------------- /Classes/Issues/Merge/IssueMergeButtonModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Merge/IssueMergeButtonModel.swift -------------------------------------------------------------------------------- /Classes/Issues/Merge/IssueMergeContextCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Merge/IssueMergeContextCell.swift -------------------------------------------------------------------------------- /Classes/Issues/Merge/IssueMergeContextModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Merge/IssueMergeContextModel.swift -------------------------------------------------------------------------------- /Classes/Issues/Merge/IssueMergeModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Merge/IssueMergeModel.swift -------------------------------------------------------------------------------- /Classes/Issues/Merge/IssueMergeSummaryCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Merge/IssueMergeSummaryCell.swift -------------------------------------------------------------------------------- /Classes/Issues/Merge/IssueMergeSummaryModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Merge/IssueMergeSummaryModel.swift -------------------------------------------------------------------------------- /Classes/Issues/Merge/IssueMergeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Merge/IssueMergeType.swift -------------------------------------------------------------------------------- /Classes/Issues/Merge/MergeButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Merge/MergeButton.swift -------------------------------------------------------------------------------- /Classes/Issues/Merge/MergeHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Merge/MergeHelper.swift -------------------------------------------------------------------------------- /Classes/Issues/Milestone/IssueMilestoneCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Milestone/IssueMilestoneCell.swift -------------------------------------------------------------------------------- /Classes/Issues/NeckLoad/IssueNeckLoadModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/NeckLoad/IssueNeckLoadModel.swift -------------------------------------------------------------------------------- /Classes/Issues/Preview/IssuePreviewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Preview/IssuePreviewModel.swift -------------------------------------------------------------------------------- /Classes/Issues/PullRequest+IssueType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/PullRequest+IssueType.swift -------------------------------------------------------------------------------- /Classes/Issues/Renamed/IssueRenamedCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Renamed/IssueRenamedCell.swift -------------------------------------------------------------------------------- /Classes/Issues/Renamed/IssueRenamedModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Renamed/IssueRenamedModel.swift -------------------------------------------------------------------------------- /Classes/Issues/Renamed/IssueRenamedString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Renamed/IssueRenamedString.swift -------------------------------------------------------------------------------- /Classes/Issues/Request/IssueRequestCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Request/IssueRequestCell.swift -------------------------------------------------------------------------------- /Classes/Issues/Request/IssueRequestModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Request/IssueRequestModel.swift -------------------------------------------------------------------------------- /Classes/Issues/Review/IssueReviewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Review/IssueReviewModel.swift -------------------------------------------------------------------------------- /Classes/Issues/Spacer/SpacerCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Spacer/SpacerCell.swift -------------------------------------------------------------------------------- /Classes/Issues/Spacer/SpacerModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Spacer/SpacerModel.swift -------------------------------------------------------------------------------- /Classes/Issues/Status/IssueStatusCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Status/IssueStatusCell.swift -------------------------------------------------------------------------------- /Classes/Issues/Status/IssueStatusModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Status/IssueStatusModel.swift -------------------------------------------------------------------------------- /Classes/Issues/StatusEvent/IssueStatusEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/StatusEvent/IssueStatusEvent.swift -------------------------------------------------------------------------------- /Classes/Issues/Title/IssueTitleCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Title/IssueTitleCell.swift -------------------------------------------------------------------------------- /Classes/Issues/Title/IssueTitleModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/Title/IssueTitleModel.swift -------------------------------------------------------------------------------- /Classes/Issues/UserAutocomplete+GraphQL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Issues/UserAutocomplete+GraphQL.swift -------------------------------------------------------------------------------- /Classes/Labels/LabelMenuCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Labels/LabelMenuCell.swift -------------------------------------------------------------------------------- /Classes/Labels/LabelSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Labels/LabelSectionController.swift -------------------------------------------------------------------------------- /Classes/Labels/LabelsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Labels/LabelsViewController.swift -------------------------------------------------------------------------------- /Classes/Login/Client+AccessToken.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Login/Client+AccessToken.swift -------------------------------------------------------------------------------- /Classes/Login/LoginSplashViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Login/LoginSplashViewController.swift -------------------------------------------------------------------------------- /Classes/Login/OauthLogin.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Login/OauthLogin.storyboard -------------------------------------------------------------------------------- /Classes/Login/SplashView/SplashView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Login/SplashView/SplashView.swift -------------------------------------------------------------------------------- /Classes/Milestones/GithubClient+Milestones.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Milestones/GithubClient+Milestones.swift -------------------------------------------------------------------------------- /Classes/Milestones/Milestone.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Milestones/Milestone.swift -------------------------------------------------------------------------------- /Classes/Milestones/MilestoneCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Milestones/MilestoneCell.swift -------------------------------------------------------------------------------- /Classes/Milestones/MilestoneViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Milestones/MilestoneViewModel.swift -------------------------------------------------------------------------------- /Classes/Milestones/MilestonesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Milestones/MilestonesViewController.swift -------------------------------------------------------------------------------- /Classes/Models/CommitDetails.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Models/CommitDetails.swift -------------------------------------------------------------------------------- /Classes/Models/File+Filename.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Models/File+Filename.swift -------------------------------------------------------------------------------- /Classes/Models/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Models/File.swift -------------------------------------------------------------------------------- /Classes/Models/FilePath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Models/FilePath.swift -------------------------------------------------------------------------------- /Classes/Models/LabelDetails.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Models/LabelDetails.swift -------------------------------------------------------------------------------- /Classes/Models/Repository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Models/Repository.swift -------------------------------------------------------------------------------- /Classes/Models/RepositoryLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Models/RepositoryLabel.swift -------------------------------------------------------------------------------- /Classes/Models/String+ListSwift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Models/String+ListSwift.swift -------------------------------------------------------------------------------- /Classes/New Issue/NewIssue.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/New Issue/NewIssue.storyboard -------------------------------------------------------------------------------- /Classes/Notifications/InboxDashboardCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Notifications/InboxDashboardCell.swift -------------------------------------------------------------------------------- /Classes/Notifications/InboxDashboardModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Notifications/InboxDashboardModel.swift -------------------------------------------------------------------------------- /Classes/Notifications/NewFeaturesCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Notifications/NewFeaturesCell.swift -------------------------------------------------------------------------------- /Classes/Notifications/NewFeaturesController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Notifications/NewFeaturesController.swift -------------------------------------------------------------------------------- /Classes/Notifications/NotificationCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Notifications/NotificationCell.swift -------------------------------------------------------------------------------- /Classes/Notifications/NotificationType+Icon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Notifications/NotificationType+Icon.swift -------------------------------------------------------------------------------- /Classes/Notifications/NotificationType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Notifications/NotificationType.swift -------------------------------------------------------------------------------- /Classes/Notifications/NotificationViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Notifications/NotificationViewModel.swift -------------------------------------------------------------------------------- /Classes/People/PeopleCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/People/PeopleCell.swift -------------------------------------------------------------------------------- /Classes/People/PeopleSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/People/PeopleSectionController.swift -------------------------------------------------------------------------------- /Classes/People/PeopleViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/People/PeopleViewController.swift -------------------------------------------------------------------------------- /Classes/Repository/GitHubClient+Repository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Repository/GitHubClient+Repository.swift -------------------------------------------------------------------------------- /Classes/Repository/RepositoryClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Repository/RepositoryClient.swift -------------------------------------------------------------------------------- /Classes/Repository/RepositoryDetails.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Repository/RepositoryDetails.swift -------------------------------------------------------------------------------- /Classes/Repository/RepositoryFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Repository/RepositoryFile.swift -------------------------------------------------------------------------------- /Classes/Repository/RepositoryFileCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Repository/RepositoryFileCell.swift -------------------------------------------------------------------------------- /Classes/Repository/RepositoryReadmeModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Repository/RepositoryReadmeModel.swift -------------------------------------------------------------------------------- /Classes/Repository/RepositorySummaryCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Repository/RepositorySummaryCell.swift -------------------------------------------------------------------------------- /Classes/Repository/RepositoryViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Repository/RepositoryViewController.swift -------------------------------------------------------------------------------- /Classes/Search/GithubClient+Search.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Search/GithubClient+Search.swift -------------------------------------------------------------------------------- /Classes/Search/SearchLoadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Search/SearchLoadingView.swift -------------------------------------------------------------------------------- /Classes/Search/SearchNoResultsCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Search/SearchNoResultsCell.swift -------------------------------------------------------------------------------- /Classes/Search/SearchQuery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Search/SearchQuery.swift -------------------------------------------------------------------------------- /Classes/Search/SearchRecentCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Search/SearchRecentCell.swift -------------------------------------------------------------------------------- /Classes/Search/SearchRecentStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Search/SearchRecentStore.swift -------------------------------------------------------------------------------- /Classes/Search/SearchRecentViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Search/SearchRecentViewModel.swift -------------------------------------------------------------------------------- /Classes/Search/SearchRepoResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Search/SearchRepoResult.swift -------------------------------------------------------------------------------- /Classes/Search/SearchRepoResultCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Search/SearchRepoResultCell.swift -------------------------------------------------------------------------------- /Classes/Search/SearchViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Search/SearchViewController.swift -------------------------------------------------------------------------------- /Classes/Settings/Defaults+ExternalLinks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Settings/Defaults+ExternalLinks.swift -------------------------------------------------------------------------------- /Classes/Settings/Settings.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Settings/Settings.storyboard -------------------------------------------------------------------------------- /Classes/Settings/SettingsAccountCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Settings/SettingsAccountCell.swift -------------------------------------------------------------------------------- /Classes/Settings/SettingsLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Settings/SettingsLabel.swift -------------------------------------------------------------------------------- /Classes/Settings/SettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Settings/SettingsViewController.swift -------------------------------------------------------------------------------- /Classes/Systems/Announcer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/Announcer.swift -------------------------------------------------------------------------------- /Classes/Systems/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/AppDelegate.swift -------------------------------------------------------------------------------- /Classes/Systems/AppRouter/AppController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/AppRouter/AppController.swift -------------------------------------------------------------------------------- /Classes/Systems/AppRouter/RoutePerformable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/AppRouter/RoutePerformable.swift -------------------------------------------------------------------------------- /Classes/Systems/AppRouter/Router.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/AppRouter/Router.swift -------------------------------------------------------------------------------- /Classes/Systems/BadgeNotifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/BadgeNotifications.swift -------------------------------------------------------------------------------- /Classes/Systems/Client+GithubUserSession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/Client+GithubUserSession.swift -------------------------------------------------------------------------------- /Classes/Systems/Debouncer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/Debouncer.swift -------------------------------------------------------------------------------- /Classes/Systems/Feed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/Feed.swift -------------------------------------------------------------------------------- /Classes/Systems/FeedSelectionProviding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/FeedSelectionProviding.swift -------------------------------------------------------------------------------- /Classes/Systems/GithubAPIDateFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/GithubAPIDateFormatter.swift -------------------------------------------------------------------------------- /Classes/Systems/GithubClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/GithubClient.swift -------------------------------------------------------------------------------- /Classes/Systems/GithubEmoji.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/GithubEmoji.swift -------------------------------------------------------------------------------- /Classes/Systems/GithubHighlighting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/GithubHighlighting.swift -------------------------------------------------------------------------------- /Classes/Systems/GraphQLIDDecode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/GraphQLIDDecode.swift -------------------------------------------------------------------------------- /Classes/Systems/ImageCellHeightCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/ImageCellHeightCache.swift -------------------------------------------------------------------------------- /Classes/Systems/InboxZeroLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/InboxZeroLoader.swift -------------------------------------------------------------------------------- /Classes/Systems/LabelLayoutManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/LabelLayoutManager.swift -------------------------------------------------------------------------------- /Classes/Systems/ListAdapter+Scrolling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/ListAdapter+Scrolling.swift -------------------------------------------------------------------------------- /Classes/Systems/LocalNotificationsCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/LocalNotificationsCache.swift -------------------------------------------------------------------------------- /Classes/Systems/PhotoViewHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/PhotoViewHandler.swift -------------------------------------------------------------------------------- /Classes/Systems/Rating/RatingCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/Rating/RatingCell.swift -------------------------------------------------------------------------------- /Classes/Systems/Rating/RatingController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/Rating/RatingController.swift -------------------------------------------------------------------------------- /Classes/Systems/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/Result.swift -------------------------------------------------------------------------------- /Classes/Systems/ScrollViewKeyboardAdjuster.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/ScrollViewKeyboardAdjuster.swift -------------------------------------------------------------------------------- /Classes/Systems/Secrets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/Secrets.swift -------------------------------------------------------------------------------- /Classes/Systems/ShortcutHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/ShortcutHandler.swift -------------------------------------------------------------------------------- /Classes/Systems/Signature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/Signature.swift -------------------------------------------------------------------------------- /Classes/Systems/SpecialGitHubEmoji.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/SpecialGitHubEmoji.swift -------------------------------------------------------------------------------- /Classes/Systems/SpinnerSectionController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/SpinnerSectionController.swift -------------------------------------------------------------------------------- /Classes/Systems/Squawk+GitHawk.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/Squawk+GitHawk.swift -------------------------------------------------------------------------------- /Classes/Systems/String+GithubDate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/String+GithubDate.swift -------------------------------------------------------------------------------- /Classes/Systems/WebviewCellHeightCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/WebviewCellHeightCache.swift -------------------------------------------------------------------------------- /Classes/Systems/WidthCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Systems/WidthCache.swift -------------------------------------------------------------------------------- /Classes/Utility/Accessibility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Utility/Accessibility.swift -------------------------------------------------------------------------------- /Classes/Utility/AlertAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Utility/AlertAction.swift -------------------------------------------------------------------------------- /Classes/Utility/AlertActionBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Utility/AlertActionBuilder.swift -------------------------------------------------------------------------------- /Classes/Utility/Bundle+Version.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Utility/Bundle+Version.swift -------------------------------------------------------------------------------- /Classes/Utility/DeleteSwipeAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Utility/DeleteSwipeAction.swift -------------------------------------------------------------------------------- /Classes/Utility/Error+GraphQLForbidden.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Utility/Error+GraphQLForbidden.swift -------------------------------------------------------------------------------- /Classes/Utility/Filterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Utility/Filterable.swift -------------------------------------------------------------------------------- /Classes/Utility/GithubURL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Utility/GithubURL.swift -------------------------------------------------------------------------------- /Classes/Utility/HapticFeedback.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Utility/HapticFeedback.swift -------------------------------------------------------------------------------- /Classes/Utility/Image+Base64.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Utility/Image+Base64.swift -------------------------------------------------------------------------------- /Classes/Utility/Int+Abbreviated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Utility/Int+Abbreviated.swift -------------------------------------------------------------------------------- /Classes/Utility/IsCancellationError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Utility/IsCancellationError.swift -------------------------------------------------------------------------------- /Classes/Utility/LogEnvironmentInformation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Utility/LogEnvironmentInformation.swift -------------------------------------------------------------------------------- /Classes/Utility/RepositoryAttributedString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Utility/RepositoryAttributedString.swift -------------------------------------------------------------------------------- /Classes/Utility/SearchQueryTokenizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Utility/SearchQueryTokenizer.swift -------------------------------------------------------------------------------- /Classes/Utility/Sequence+Contains.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Utility/Sequence+Contains.swift -------------------------------------------------------------------------------- /Classes/Utility/Store.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Utility/Store.swift -------------------------------------------------------------------------------- /Classes/Utility/String+FirstLine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Utility/String+FirstLine.swift -------------------------------------------------------------------------------- /Classes/Utility/String+Size.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Utility/String+Size.swift -------------------------------------------------------------------------------- /Classes/Utility/UIAlertController+Action.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Utility/UIAlertController+Action.swift -------------------------------------------------------------------------------- /Classes/Utility/UIApplication+ReviewAccess.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Utility/UIApplication+ReviewAccess.swift -------------------------------------------------------------------------------- /Classes/Utility/UIApplication+WriteReview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Utility/UIApplication+WriteReview.swift -------------------------------------------------------------------------------- /Classes/Utility/UIDevice+Model.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Utility/UIDevice+Model.swift -------------------------------------------------------------------------------- /Classes/Utility/UIImage+Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Utility/UIImage+Color.swift -------------------------------------------------------------------------------- /Classes/Utility/UIImage+StaticString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Utility/UIImage+StaticString.swift -------------------------------------------------------------------------------- /Classes/Utility/UIViewController+Routing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Utility/UIViewController+Routing.swift -------------------------------------------------------------------------------- /Classes/Utility/URLBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Utility/URLBuilder.swift -------------------------------------------------------------------------------- /Classes/Views/BoundedImageSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/BoundedImageSize.swift -------------------------------------------------------------------------------- /Classes/Views/ButtonCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/ButtonCell.swift -------------------------------------------------------------------------------- /Classes/Views/CardCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/CardCollectionViewCell.swift -------------------------------------------------------------------------------- /Classes/Views/ClearAllHeaderCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/ClearAllHeaderCell.swift -------------------------------------------------------------------------------- /Classes/Views/CodeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/CodeView.swift -------------------------------------------------------------------------------- /Classes/Views/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/Constants.swift -------------------------------------------------------------------------------- /Classes/Views/ContentWidthUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/ContentWidthUtils.swift -------------------------------------------------------------------------------- /Classes/Views/DateDetailsFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/DateDetailsFormatter.swift -------------------------------------------------------------------------------- /Classes/Views/DiffString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/DiffString.swift -------------------------------------------------------------------------------- /Classes/Views/DotListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/DotListView.swift -------------------------------------------------------------------------------- /Classes/Views/EmptyLoadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/EmptyLoadingView.swift -------------------------------------------------------------------------------- /Classes/Views/EmptyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/EmptyView.swift -------------------------------------------------------------------------------- /Classes/Views/FeedRefresh.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/FeedRefresh.swift -------------------------------------------------------------------------------- /Classes/Views/FixedRefreshControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/FixedRefreshControl.swift -------------------------------------------------------------------------------- /Classes/Views/FlexController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/FlexController.h -------------------------------------------------------------------------------- /Classes/Views/FlexController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/FlexController.m -------------------------------------------------------------------------------- /Classes/Views/HittableButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/HittableButton.swift -------------------------------------------------------------------------------- /Classes/Views/InitialEmptyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/InitialEmptyView.swift -------------------------------------------------------------------------------- /Classes/Views/IssueTextActionsView+Markdown.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/IssueTextActionsView+Markdown.swift -------------------------------------------------------------------------------- /Classes/Views/LabelCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/LabelCell.swift -------------------------------------------------------------------------------- /Classes/Views/LabelListCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/LabelListCell.swift -------------------------------------------------------------------------------- /Classes/Views/LabelListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/LabelListView.swift -------------------------------------------------------------------------------- /Classes/Views/MarkdownAttributeHandling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/MarkdownAttributeHandling.swift -------------------------------------------------------------------------------- /Classes/Views/MarkdownStyledTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/MarkdownStyledTextView.swift -------------------------------------------------------------------------------- /Classes/Views/MessageView+Styles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/MessageView+Styles.swift -------------------------------------------------------------------------------- /Classes/Views/ResponderButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/ResponderButton.swift -------------------------------------------------------------------------------- /Classes/Views/SegmentedControlCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/SegmentedControlCell.swift -------------------------------------------------------------------------------- /Classes/Views/SelectableCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/SelectableCell.swift -------------------------------------------------------------------------------- /Classes/Views/ShowErrorStatusBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/ShowErrorStatusBar.swift -------------------------------------------------------------------------------- /Classes/Views/ShowMoreDetailsLabel+Date.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/ShowMoreDetailsLabel+Date.swift -------------------------------------------------------------------------------- /Classes/Views/ShowMoreDetailsLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/ShowMoreDetailsLabel.swift -------------------------------------------------------------------------------- /Classes/Views/SpinnerCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/SpinnerCell.swift -------------------------------------------------------------------------------- /Classes/Views/StyledTableCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/StyledTableCell.swift -------------------------------------------------------------------------------- /Classes/Views/StyledTextViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/StyledTextViewCell.swift -------------------------------------------------------------------------------- /Classes/Views/Styles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/Styles.swift -------------------------------------------------------------------------------- /Classes/Views/TextActionsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/TextActionsController.swift -------------------------------------------------------------------------------- /Classes/Views/UIBarButtonItem+TightSpacing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/UIBarButtonItem+TightSpacing.swift -------------------------------------------------------------------------------- /Classes/Views/UIButton+Label.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/UIButton+Label.swift -------------------------------------------------------------------------------- /Classes/Views/UIColor+Hex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/UIColor+Hex.swift -------------------------------------------------------------------------------- /Classes/Views/UIColor+Overlay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/UIColor+Overlay.swift -------------------------------------------------------------------------------- /Classes/Views/UIControlEffects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/UIControlEffects.swift -------------------------------------------------------------------------------- /Classes/Views/UIImageView+Avatar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/UIImageView+Avatar.swift -------------------------------------------------------------------------------- /Classes/Views/UIImageView+StoryboardTintFix.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/UIImageView+StoryboardTintFix.swift -------------------------------------------------------------------------------- /Classes/Views/UIScrollView+ScrollToBottom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/UIScrollView+ScrollToBottom.swift -------------------------------------------------------------------------------- /Classes/Views/UIScrollView+ScrollToTop.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/UIScrollView+ScrollToTop.swift -------------------------------------------------------------------------------- /Classes/Views/UITextView+GitHawk.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/UITextView+GitHawk.swift -------------------------------------------------------------------------------- /Classes/Views/UITextView+SelectedRange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/UITextView+SelectedRange.swift -------------------------------------------------------------------------------- /Classes/Views/UIView+BottomBorder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/UIView+BottomBorder.swift -------------------------------------------------------------------------------- /Classes/Views/UIView+DateDetails.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Classes/Views/UIView+DateDetails.swift -------------------------------------------------------------------------------- /Freetime.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Freetime.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Freetime.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Freetime.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FreetimeTests/BookmarkCloudMigratorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeTests/BookmarkCloudMigratorTests.swift -------------------------------------------------------------------------------- /FreetimeTests/BookmarkIDCloudStoreTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeTests/BookmarkIDCloudStoreTests.swift -------------------------------------------------------------------------------- /FreetimeTests/BookmarkViewControllerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeTests/BookmarkViewControllerTests.swift -------------------------------------------------------------------------------- /FreetimeTests/ContentWidthUtilsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeTests/ContentWidthUtilsTests.swift -------------------------------------------------------------------------------- /FreetimeTests/DetectShortlinkTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeTests/DetectShortlinkTests.swift -------------------------------------------------------------------------------- /FreetimeTests/EmojiTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeTests/EmojiTests.swift -------------------------------------------------------------------------------- /FreetimeTests/FilePathTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeTests/FilePathTests.swift -------------------------------------------------------------------------------- /FreetimeTests/GithubURLTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeTests/GithubURLTests.swift -------------------------------------------------------------------------------- /FreetimeTests/GraphQLIDDecodeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeTests/GraphQLIDDecodeTests.swift -------------------------------------------------------------------------------- /FreetimeTests/InboxZeroLoaderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeTests/InboxZeroLoaderTests.swift -------------------------------------------------------------------------------- /FreetimeTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeTests/Info.plist -------------------------------------------------------------------------------- /FreetimeTests/IssueCommentTableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeTests/IssueCommentTableTests.swift -------------------------------------------------------------------------------- /FreetimeTests/IssueLabelCellTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeTests/IssueLabelCellTests.swift -------------------------------------------------------------------------------- /FreetimeTests/IssueTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeTests/IssueTests.swift -------------------------------------------------------------------------------- /FreetimeTests/ListKitTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeTests/ListKitTestCase.swift -------------------------------------------------------------------------------- /FreetimeTests/ListTestKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeTests/ListTestKit.swift -------------------------------------------------------------------------------- /FreetimeTests/LocalNotificationCacheTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeTests/LocalNotificationCacheTests.swift -------------------------------------------------------------------------------- /FreetimeTests/MergeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeTests/MergeTests.swift -------------------------------------------------------------------------------- /FreetimeTests/NetworkingURLPathTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeTests/NetworkingURLPathTests.swift -------------------------------------------------------------------------------- /FreetimeTests/ReactionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeTests/ReactionTests.swift -------------------------------------------------------------------------------- /FreetimeTests/Search Tests/SearchQueryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeTests/Search Tests/SearchQueryTests.swift -------------------------------------------------------------------------------- /FreetimeTests/SecretsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeTests/SecretsTests.swift -------------------------------------------------------------------------------- /FreetimeTests/SequenceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeTests/SequenceTests.swift -------------------------------------------------------------------------------- /FreetimeTests/SignatureTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeTests/SignatureTests.swift -------------------------------------------------------------------------------- /FreetimeTests/SortUsers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeTests/SortUsers.swift -------------------------------------------------------------------------------- /FreetimeTests/SplitViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeTests/SplitViewTests.swift -------------------------------------------------------------------------------- /FreetimeTests/SwitchBranches.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeTests/SwitchBranches.swift -------------------------------------------------------------------------------- /FreetimeTests/Test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeTests/Test.md -------------------------------------------------------------------------------- /FreetimeTests/URLBuilderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeTests/URLBuilderTests.swift -------------------------------------------------------------------------------- /FreetimeTests/ViewControllerTestUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeTests/ViewControllerTestUtil.swift -------------------------------------------------------------------------------- /FreetimeWatch Extension/EmptyRowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeWatch Extension/EmptyRowController.swift -------------------------------------------------------------------------------- /FreetimeWatch Extension/ErrorRowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeWatch Extension/ErrorRowController.swift -------------------------------------------------------------------------------- /FreetimeWatch Extension/ExtensionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeWatch Extension/ExtensionDelegate.swift -------------------------------------------------------------------------------- /FreetimeWatch Extension/InboxController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeWatch Extension/InboxController.swift -------------------------------------------------------------------------------- /FreetimeWatch Extension/InboxDataController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeWatch Extension/InboxDataController.swift -------------------------------------------------------------------------------- /FreetimeWatch Extension/InboxRowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeWatch Extension/InboxRowController.swift -------------------------------------------------------------------------------- /FreetimeWatch Extension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeWatch Extension/Info.plist -------------------------------------------------------------------------------- /FreetimeWatch Extension/RepoInboxController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeWatch Extension/RepoInboxController.swift -------------------------------------------------------------------------------- /FreetimeWatch Extension/SignInRowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeWatch Extension/SignInRowController.swift -------------------------------------------------------------------------------- /FreetimeWatch/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeWatch/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FreetimeWatch/Base.lproj/Interface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeWatch/Base.lproj/Interface.storyboard -------------------------------------------------------------------------------- /FreetimeWatch/FreetimeWatch.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeWatch/FreetimeWatch.entitlements -------------------------------------------------------------------------------- /FreetimeWatch/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/FreetimeWatch/Info.plist -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'cocoapods' 4 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/LICENSE -------------------------------------------------------------------------------- /Local Pods/DateAgo/DateAgo.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/DateAgo/DateAgo.podspec -------------------------------------------------------------------------------- /Local Pods/DateAgo/DateAgo/Date+Ago.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/DateAgo/DateAgo/Date+Ago.swift -------------------------------------------------------------------------------- /Local Pods/DateAgo/DateAgo/Date+AgoString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/DateAgo/DateAgo/Date+AgoString.swift -------------------------------------------------------------------------------- /Local Pods/DateAgo/DateAgo/DateAgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/DateAgo/DateAgo/DateAgo.h -------------------------------------------------------------------------------- /Local Pods/DateAgo/DateAgo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/DateAgo/DateAgo/Info.plist -------------------------------------------------------------------------------- /Local Pods/DateAgo/DateAgoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/DateAgo/DateAgoTests/Info.plist -------------------------------------------------------------------------------- /Local Pods/GitHubAPI/GitHubAPI.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/GitHubAPI/GitHubAPI.podspec -------------------------------------------------------------------------------- /Local Pods/GitHubAPI/GitHubAPI/Client.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/GitHubAPI/GitHubAPI/Client.swift -------------------------------------------------------------------------------- /Local Pods/GitHubAPI/GitHubAPI/ClientError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/GitHubAPI/GitHubAPI/ClientError.swift -------------------------------------------------------------------------------- /Local Pods/GitHubAPI/GitHubAPI/GitHubAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/GitHubAPI/GitHubAPI/GitHubAPI.h -------------------------------------------------------------------------------- /Local Pods/GitHubAPI/GitHubAPI/HTTPRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/GitHubAPI/GitHubAPI/HTTPRequest.swift -------------------------------------------------------------------------------- /Local Pods/GitHubAPI/GitHubAPI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/GitHubAPI/GitHubAPI/Info.plist -------------------------------------------------------------------------------- /Local Pods/GitHubAPI/GitHubAPI/JSONResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/GitHubAPI/GitHubAPI/JSONResponse.swift -------------------------------------------------------------------------------- /Local Pods/GitHubAPI/GitHubAPI/Processing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/GitHubAPI/GitHubAPI/Processing.swift -------------------------------------------------------------------------------- /Local Pods/GitHubAPI/GitHubAPI/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/GitHubAPI/GitHubAPI/Request.swift -------------------------------------------------------------------------------- /Local Pods/GitHubAPI/GitHubAPI/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/GitHubAPI/GitHubAPI/Response.swift -------------------------------------------------------------------------------- /Local Pods/GitHubAPI/GitHubAPI/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/GitHubAPI/GitHubAPI/Result.swift -------------------------------------------------------------------------------- /Local Pods/GitHubAPI/GitHubAPI/V3Content.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/GitHubAPI/GitHubAPI/V3Content.swift -------------------------------------------------------------------------------- /Local Pods/GitHubAPI/GitHubAPI/V3File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/GitHubAPI/GitHubAPI/V3File.swift -------------------------------------------------------------------------------- /Local Pods/GitHubAPI/GitHubAPI/V3Issue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/GitHubAPI/GitHubAPI/V3Issue.swift -------------------------------------------------------------------------------- /Local Pods/GitHubAPI/GitHubAPI/V3Milestone.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/GitHubAPI/GitHubAPI/V3Milestone.swift -------------------------------------------------------------------------------- /Local Pods/GitHubAPI/GitHubAPI/V3Release.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/GitHubAPI/GitHubAPI/V3Release.swift -------------------------------------------------------------------------------- /Local Pods/GitHubAPI/GitHubAPI/V3Repository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/GitHubAPI/GitHubAPI/V3Repository.swift -------------------------------------------------------------------------------- /Local Pods/GitHubAPI/GitHubAPI/V3Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/GitHubAPI/GitHubAPI/V3Request.swift -------------------------------------------------------------------------------- /Local Pods/GitHubAPI/GitHubAPI/V3User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/GitHubAPI/GitHubAPI/V3User.swift -------------------------------------------------------------------------------- /Local Pods/GitHubAPI/GitHubAPITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/GitHubAPI/GitHubAPITests/Info.plist -------------------------------------------------------------------------------- /Local Pods/GitHubAPI/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/GitHubAPI/Podfile -------------------------------------------------------------------------------- /Local Pods/GitHubAPI/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/GitHubAPI/Podfile.lock -------------------------------------------------------------------------------- /Local Pods/GitHubAPI/Pods/Alamofire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/GitHubAPI/Pods/Alamofire/LICENSE -------------------------------------------------------------------------------- /Local Pods/GitHubAPI/Pods/Alamofire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/GitHubAPI/Pods/Alamofire/README.md -------------------------------------------------------------------------------- /Local Pods/GitHubAPI/Pods/Apollo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/GitHubAPI/Pods/Apollo/LICENSE -------------------------------------------------------------------------------- /Local Pods/GitHubAPI/Pods/Apollo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/GitHubAPI/Pods/Apollo/README.md -------------------------------------------------------------------------------- /Local Pods/GitHubAPI/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/GitHubAPI/Pods/Manifest.lock -------------------------------------------------------------------------------- /Local Pods/GitHubSession/GitHubSession.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/GitHubSession/GitHubSession.podspec -------------------------------------------------------------------------------- /Local Pods/GitHubSession/GitHubSession/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/GitHubSession/GitHubSession/Info.plist -------------------------------------------------------------------------------- /Local Pods/StringHelpers/StringHelpers.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/StringHelpers/StringHelpers.podspec -------------------------------------------------------------------------------- /Local Pods/StringHelpers/StringHelpers/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/StringHelpers/StringHelpers/Info.plist -------------------------------------------------------------------------------- /Local Pods/SwipeCellKit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/SwipeCellKit/.gitignore -------------------------------------------------------------------------------- /Local Pods/SwipeCellKit/.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /Local Pods/SwipeCellKit/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/SwipeCellKit/.travis.yml -------------------------------------------------------------------------------- /Local Pods/SwipeCellKit/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/SwipeCellKit/CHANGELOG.md -------------------------------------------------------------------------------- /Local Pods/SwipeCellKit/Guides/Advanced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/SwipeCellKit/Guides/Advanced.md -------------------------------------------------------------------------------- /Local Pods/SwipeCellKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/SwipeCellKit/LICENSE -------------------------------------------------------------------------------- /Local Pods/SwipeCellKit/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/SwipeCellKit/Package.swift -------------------------------------------------------------------------------- /Local Pods/SwipeCellKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/SwipeCellKit/README.md -------------------------------------------------------------------------------- /Local Pods/SwipeCellKit/SHOWCASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/SwipeCellKit/SHOWCASE.md -------------------------------------------------------------------------------- /Local Pods/SwipeCellKit/Screenshots/Hero.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/SwipeCellKit/Screenshots/Hero.gif -------------------------------------------------------------------------------- /Local Pods/SwipeCellKit/Source/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/SwipeCellKit/Source/Extensions.swift -------------------------------------------------------------------------------- /Local Pods/SwipeCellKit/Source/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/SwipeCellKit/Source/Info.plist -------------------------------------------------------------------------------- /Local Pods/SwipeCellKit/Source/SwipeAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/SwipeCellKit/Source/SwipeAction.swift -------------------------------------------------------------------------------- /Local Pods/SwipeCellKit/Source/SwipeCellKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/SwipeCellKit/Source/SwipeCellKit.h -------------------------------------------------------------------------------- /Local Pods/SwipeCellKit/Source/Swipeable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/SwipeCellKit/Source/Swipeable.swift -------------------------------------------------------------------------------- /Local Pods/SwipeCellKit/SwipeCellKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/SwipeCellKit/SwipeCellKit.podspec -------------------------------------------------------------------------------- /Local Pods/SwipeCellKit/build_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/SwipeCellKit/build_docs.sh -------------------------------------------------------------------------------- /Local Pods/SwipeCellKit/docs/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/SwipeCellKit/docs/Classes.html -------------------------------------------------------------------------------- /Local Pods/SwipeCellKit/docs/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/SwipeCellKit/docs/Enums.html -------------------------------------------------------------------------------- /Local Pods/SwipeCellKit/docs/Guides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/SwipeCellKit/docs/Guides.html -------------------------------------------------------------------------------- /Local Pods/SwipeCellKit/docs/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/SwipeCellKit/docs/Protocols.html -------------------------------------------------------------------------------- /Local Pods/SwipeCellKit/docs/Structs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/SwipeCellKit/docs/Structs.html -------------------------------------------------------------------------------- /Local Pods/SwipeCellKit/docs/advanced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/SwipeCellKit/docs/advanced.html -------------------------------------------------------------------------------- /Local Pods/SwipeCellKit/docs/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/SwipeCellKit/docs/css/highlight.css -------------------------------------------------------------------------------- /Local Pods/SwipeCellKit/docs/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/SwipeCellKit/docs/css/jazzy.css -------------------------------------------------------------------------------- /Local Pods/SwipeCellKit/docs/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/SwipeCellKit/docs/img/carat.png -------------------------------------------------------------------------------- /Local Pods/SwipeCellKit/docs/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/SwipeCellKit/docs/img/dash.png -------------------------------------------------------------------------------- /Local Pods/SwipeCellKit/docs/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/SwipeCellKit/docs/img/gh.png -------------------------------------------------------------------------------- /Local Pods/SwipeCellKit/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/SwipeCellKit/docs/index.html -------------------------------------------------------------------------------- /Local Pods/SwipeCellKit/docs/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/SwipeCellKit/docs/js/jazzy.js -------------------------------------------------------------------------------- /Local Pods/SwipeCellKit/docs/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/SwipeCellKit/docs/js/jquery.min.js -------------------------------------------------------------------------------- /Local Pods/SwipeCellKit/docs/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Local Pods/SwipeCellKit/docs/undocumented.json -------------------------------------------------------------------------------- /Playgrounds/Github API.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Playgrounds/Github API.playground/Contents.swift -------------------------------------------------------------------------------- /Playgrounds/Github API/.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Playgrounds/Github API/.config.json -------------------------------------------------------------------------------- /Playgrounds/Github API/comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Playgrounds/Github API/comment.json -------------------------------------------------------------------------------- /Playgrounds/Github API/done/authorizations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Playgrounds/Github API/done/authorizations.json -------------------------------------------------------------------------------- /Playgrounds/Github API/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Playgrounds/Github API/event.json -------------------------------------------------------------------------------- /Playgrounds/Github API/issue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Playgrounds/Github API/issue.json -------------------------------------------------------------------------------- /Playgrounds/Github API/notification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Playgrounds/Github API/notification.json -------------------------------------------------------------------------------- /Playgrounds/Github API/pull_request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Playgrounds/Github API/pull_request.json -------------------------------------------------------------------------------- /Playgrounds/Github API/reactions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Playgrounds/Github API/reactions.json -------------------------------------------------------------------------------- /Playgrounds/Github API/repository.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Playgrounds/Github API/repository.json -------------------------------------------------------------------------------- /Playgrounds/Github API/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Playgrounds/Github API/user.json -------------------------------------------------------------------------------- /Playgrounds/TextViews.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Playgrounds/TextViews.playground/Contents.swift -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Alamofire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Alamofire/LICENSE -------------------------------------------------------------------------------- /Pods/Alamofire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Alamofire/README.md -------------------------------------------------------------------------------- /Pods/Alamofire/Source/AFError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Alamofire/Source/AFError.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Alamofire/Source/Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/MultipartFormData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Alamofire/Source/MultipartFormData.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Alamofire/Source/Notifications.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ParameterEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Alamofire/Source/ParameterEncoding.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Alamofire/Source/Request.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Alamofire/Source/Response.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ResponseSerialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Alamofire/Source/ResponseSerialization.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Alamofire/Source/Result.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ServerTrustPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Alamofire/Source/ServerTrustPolicy.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/SessionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Alamofire/Source/SessionDelegate.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/SessionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Alamofire/Source/SessionManager.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/TaskDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Alamofire/Source/TaskDelegate.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Timeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Alamofire/Source/Timeline.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Validation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Alamofire/Source/Validation.swift -------------------------------------------------------------------------------- /Pods/AlamofireNetworkActivityIndicator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/AlamofireNetworkActivityIndicator/LICENSE -------------------------------------------------------------------------------- /Pods/AlamofireNetworkActivityIndicator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/AlamofireNetworkActivityIndicator/README.md -------------------------------------------------------------------------------- /Pods/Apollo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Apollo/LICENSE -------------------------------------------------------------------------------- /Pods/Apollo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Apollo/README.md -------------------------------------------------------------------------------- /Pods/Apollo/Sources/Apollo/ApolloClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Apollo/Sources/Apollo/ApolloClient.swift -------------------------------------------------------------------------------- /Pods/Apollo/Sources/Apollo/ApolloStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Apollo/Sources/Apollo/ApolloStore.swift -------------------------------------------------------------------------------- /Pods/Apollo/Sources/Apollo/Collections.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Apollo/Sources/Apollo/Collections.swift -------------------------------------------------------------------------------- /Pods/Apollo/Sources/Apollo/DataLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Apollo/Sources/Apollo/DataLoader.swift -------------------------------------------------------------------------------- /Pods/Apollo/Sources/Apollo/GraphQLError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Apollo/Sources/Apollo/GraphQLError.swift -------------------------------------------------------------------------------- /Pods/Apollo/Sources/Apollo/GraphQLExecutor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Apollo/Sources/Apollo/GraphQLExecutor.swift -------------------------------------------------------------------------------- /Pods/Apollo/Sources/Apollo/GraphQLOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Apollo/Sources/Apollo/GraphQLOperation.swift -------------------------------------------------------------------------------- /Pods/Apollo/Sources/Apollo/GraphQLResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Apollo/Sources/Apollo/GraphQLResponse.swift -------------------------------------------------------------------------------- /Pods/Apollo/Sources/Apollo/GraphQLResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Apollo/Sources/Apollo/GraphQLResult.swift -------------------------------------------------------------------------------- /Pods/Apollo/Sources/Apollo/JSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Apollo/Sources/Apollo/JSON.swift -------------------------------------------------------------------------------- /Pods/Apollo/Sources/Apollo/Locking.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Apollo/Sources/Apollo/Locking.swift -------------------------------------------------------------------------------- /Pods/Apollo/Sources/Apollo/NetworkTransport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Apollo/Sources/Apollo/NetworkTransport.swift -------------------------------------------------------------------------------- /Pods/Apollo/Sources/Apollo/NormalizedCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Apollo/Sources/Apollo/NormalizedCache.swift -------------------------------------------------------------------------------- /Pods/Apollo/Sources/Apollo/Promise.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Apollo/Sources/Apollo/Promise.swift -------------------------------------------------------------------------------- /Pods/Apollo/Sources/Apollo/Record.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Apollo/Sources/Apollo/Record.swift -------------------------------------------------------------------------------- /Pods/Apollo/Sources/Apollo/RecordSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Apollo/Sources/Apollo/RecordSet.swift -------------------------------------------------------------------------------- /Pods/Apollo/Sources/Apollo/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Apollo/Sources/Apollo/Result.swift -------------------------------------------------------------------------------- /Pods/Apollo/Sources/Apollo/ResultOrPromise.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Apollo/Sources/Apollo/ResultOrPromise.swift -------------------------------------------------------------------------------- /Pods/Apollo/Sources/Apollo/Utilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Apollo/Sources/Apollo/Utilities.swift -------------------------------------------------------------------------------- /Pods/Apollo/scripts/check-and-run-apollo-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Apollo/scripts/check-and-run-apollo-cli.sh -------------------------------------------------------------------------------- /Pods/ContextMenu/ContextMenu/CGRect+Area.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/ContextMenu/ContextMenu/CGRect+Area.swift -------------------------------------------------------------------------------- /Pods/ContextMenu/ContextMenu/ContextMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/ContextMenu/ContextMenu/ContextMenu.swift -------------------------------------------------------------------------------- /Pods/ContextMenu/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/ContextMenu/LICENSE -------------------------------------------------------------------------------- /Pods/ContextMenu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/ContextMenu/README.md -------------------------------------------------------------------------------- /Pods/Crashlytics/Crashlytics.framework/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Crashlytics/Crashlytics.framework/README -------------------------------------------------------------------------------- /Pods/Crashlytics/Crashlytics.framework/submit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Crashlytics/Crashlytics.framework/submit -------------------------------------------------------------------------------- /Pods/Crashlytics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Crashlytics/README.md -------------------------------------------------------------------------------- /Pods/Crashlytics/iOS/Crashlytics.framework/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Crashlytics/iOS/Crashlytics.framework/run -------------------------------------------------------------------------------- /Pods/Crashlytics/iOS/Crashlytics.framework/submit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Crashlytics/iOS/Crashlytics.framework/submit -------------------------------------------------------------------------------- /Pods/Crashlytics/submit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Crashlytics/submit -------------------------------------------------------------------------------- /Pods/DropdownTitleView/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/DropdownTitleView/LICENSE -------------------------------------------------------------------------------- /Pods/DropdownTitleView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/DropdownTitleView/README.md -------------------------------------------------------------------------------- /Pods/FBSnapshotTestCase/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FBSnapshotTestCase/LICENSE -------------------------------------------------------------------------------- /Pods/FBSnapshotTestCase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FBSnapshotTestCase/README.md -------------------------------------------------------------------------------- /Pods/FLAnimatedImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FLAnimatedImage/LICENSE -------------------------------------------------------------------------------- /Pods/FLAnimatedImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FLAnimatedImage/README.md -------------------------------------------------------------------------------- /Pods/FLEX/Classes/Editing/FLEXFieldEditorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FLEX/Classes/Editing/FLEXFieldEditorView.h -------------------------------------------------------------------------------- /Pods/FLEX/Classes/Editing/FLEXFieldEditorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FLEX/Classes/Editing/FLEXFieldEditorView.m -------------------------------------------------------------------------------- /Pods/FLEX/Classes/ExplorerInterface/FLEXWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FLEX/Classes/ExplorerInterface/FLEXWindow.h -------------------------------------------------------------------------------- /Pods/FLEX/Classes/ExplorerInterface/FLEXWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FLEX/Classes/ExplorerInterface/FLEXWindow.m -------------------------------------------------------------------------------- /Pods/FLEX/Classes/FLEX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FLEX/Classes/FLEX.h -------------------------------------------------------------------------------- /Pods/FLEX/Classes/FLEXManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FLEX/Classes/FLEXManager.h -------------------------------------------------------------------------------- /Pods/FLEX/Classes/Manager/FLEXManager+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FLEX/Classes/Manager/FLEXManager+Private.h -------------------------------------------------------------------------------- /Pods/FLEX/Classes/Manager/FLEXManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FLEX/Classes/Manager/FLEXManager.m -------------------------------------------------------------------------------- /Pods/FLEX/Classes/Network/FLEXNetworkCurlLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FLEX/Classes/Network/FLEXNetworkCurlLogger.h -------------------------------------------------------------------------------- /Pods/FLEX/Classes/Network/FLEXNetworkCurlLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FLEX/Classes/Network/FLEXNetworkCurlLogger.m -------------------------------------------------------------------------------- /Pods/FLEX/Classes/Network/FLEXNetworkRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FLEX/Classes/Network/FLEXNetworkRecorder.h -------------------------------------------------------------------------------- /Pods/FLEX/Classes/Network/FLEXNetworkRecorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FLEX/Classes/Network/FLEXNetworkRecorder.m -------------------------------------------------------------------------------- /Pods/FLEX/Classes/Toolbar/FLEXExplorerToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FLEX/Classes/Toolbar/FLEXExplorerToolbar.h -------------------------------------------------------------------------------- /Pods/FLEX/Classes/Toolbar/FLEXExplorerToolbar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FLEX/Classes/Toolbar/FLEXExplorerToolbar.m -------------------------------------------------------------------------------- /Pods/FLEX/Classes/Toolbar/FLEXToolbarItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FLEX/Classes/Toolbar/FLEXToolbarItem.h -------------------------------------------------------------------------------- /Pods/FLEX/Classes/Toolbar/FLEXToolbarItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FLEX/Classes/Toolbar/FLEXToolbarItem.m -------------------------------------------------------------------------------- /Pods/FLEX/Classes/Utility/FLEXHeapEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FLEX/Classes/Utility/FLEXHeapEnumerator.h -------------------------------------------------------------------------------- /Pods/FLEX/Classes/Utility/FLEXHeapEnumerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FLEX/Classes/Utility/FLEXHeapEnumerator.m -------------------------------------------------------------------------------- /Pods/FLEX/Classes/Utility/FLEXResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FLEX/Classes/Utility/FLEXResources.h -------------------------------------------------------------------------------- /Pods/FLEX/Classes/Utility/FLEXResources.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FLEX/Classes/Utility/FLEXResources.m -------------------------------------------------------------------------------- /Pods/FLEX/Classes/Utility/FLEXRuntimeUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FLEX/Classes/Utility/FLEXRuntimeUtility.h -------------------------------------------------------------------------------- /Pods/FLEX/Classes/Utility/FLEXRuntimeUtility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FLEX/Classes/Utility/FLEXRuntimeUtility.m -------------------------------------------------------------------------------- /Pods/FLEX/Classes/Utility/FLEXUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FLEX/Classes/Utility/FLEXUtility.h -------------------------------------------------------------------------------- /Pods/FLEX/Classes/Utility/FLEXUtility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FLEX/Classes/Utility/FLEXUtility.m -------------------------------------------------------------------------------- /Pods/FLEX/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FLEX/LICENSE -------------------------------------------------------------------------------- /Pods/FLEX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FLEX/README.md -------------------------------------------------------------------------------- /Pods/FMDB/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FMDB/LICENSE.txt -------------------------------------------------------------------------------- /Pods/FMDB/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FMDB/README.markdown -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FMDB/src/fmdb/FMDB.h -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FMDB/src/fmdb/FMDatabase.h -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FMDB/src/fmdb/FMDatabase.m -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabaseAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FMDB/src/fmdb/FMDatabaseAdditions.h -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabaseAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FMDB/src/fmdb/FMDatabaseAdditions.m -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabasePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FMDB/src/fmdb/FMDatabasePool.h -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabasePool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FMDB/src/fmdb/FMDatabasePool.m -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabaseQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FMDB/src/fmdb/FMDatabaseQueue.h -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDatabaseQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FMDB/src/fmdb/FMDatabaseQueue.m -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMResultSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FMDB/src/fmdb/FMResultSet.h -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMResultSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FMDB/src/fmdb/FMResultSet.m -------------------------------------------------------------------------------- /Pods/Fabric/Fabric.framework/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Fabric/Fabric.framework/README -------------------------------------------------------------------------------- /Pods/Fabric/Fabric.framework/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Fabric/Fabric.framework/run -------------------------------------------------------------------------------- /Pods/Fabric/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Fabric/README.md -------------------------------------------------------------------------------- /Pods/Fabric/iOS/Fabric.framework/Fabric: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Fabric/iOS/Fabric.framework/Fabric -------------------------------------------------------------------------------- /Pods/Fabric/iOS/Fabric.framework/Headers/Fabric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Fabric/iOS/Fabric.framework/Headers/Fabric.h -------------------------------------------------------------------------------- /Pods/Fabric/iOS/Fabric.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Fabric/iOS/Fabric.framework/Info.plist -------------------------------------------------------------------------------- /Pods/Fabric/iOS/Fabric.framework/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Fabric/iOS/Fabric.framework/run -------------------------------------------------------------------------------- /Pods/Fabric/iOS/Fabric.framework/uploadDSYM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Fabric/iOS/Fabric.framework/uploadDSYM -------------------------------------------------------------------------------- /Pods/Fabric/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Fabric/run -------------------------------------------------------------------------------- /Pods/Fabric/upload-symbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Fabric/upload-symbols -------------------------------------------------------------------------------- /Pods/Fabric/uploadDSYM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Fabric/uploadDSYM -------------------------------------------------------------------------------- /Pods/FlatCache/FlatCache/FlatCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FlatCache/FlatCache/FlatCache.swift -------------------------------------------------------------------------------- /Pods/FlatCache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FlatCache/LICENSE -------------------------------------------------------------------------------- /Pods/FlatCache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/FlatCache/README.md -------------------------------------------------------------------------------- /Pods/GitHawkRoutes/GitHawkRoutes/IssueRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/GitHawkRoutes/GitHawkRoutes/IssueRoute.swift -------------------------------------------------------------------------------- /Pods/GitHawkRoutes/GitHawkRoutes/RepoRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/GitHawkRoutes/GitHawkRoutes/RepoRoute.swift -------------------------------------------------------------------------------- /Pods/GitHawkRoutes/GitHawkRoutes/Routable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/GitHawkRoutes/GitHawkRoutes/Routable.swift -------------------------------------------------------------------------------- /Pods/GitHawkRoutes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/GitHawkRoutes/LICENSE -------------------------------------------------------------------------------- /Pods/GitHawkRoutes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/GitHawkRoutes/README.md -------------------------------------------------------------------------------- /Pods/HTMLString/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/HTMLString/LICENSE -------------------------------------------------------------------------------- /Pods/HTMLString/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/HTMLString/README.md -------------------------------------------------------------------------------- /Pods/HTMLString/Sources/HTMLString/Mappings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/HTMLString/Sources/HTMLString/Mappings.swift -------------------------------------------------------------------------------- /Pods/Highlightr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Highlightr/LICENSE -------------------------------------------------------------------------------- /Pods/Highlightr/Pod/Assets/styles/agate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Highlightr/Pod/Assets/styles/agate.min.css -------------------------------------------------------------------------------- /Pods/Highlightr/Pod/Assets/styles/arta.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Highlightr/Pod/Assets/styles/arta.min.css -------------------------------------------------------------------------------- /Pods/Highlightr/Pod/Assets/styles/ascetic.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Highlightr/Pod/Assets/styles/ascetic.min.css -------------------------------------------------------------------------------- /Pods/Highlightr/Pod/Assets/styles/darcula.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Highlightr/Pod/Assets/styles/darcula.min.css -------------------------------------------------------------------------------- /Pods/Highlightr/Pod/Assets/styles/dark.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Highlightr/Pod/Assets/styles/dark.min.css -------------------------------------------------------------------------------- /Pods/Highlightr/Pod/Assets/styles/darkula.min.css: -------------------------------------------------------------------------------- 1 | @import url('darcula.css'); -------------------------------------------------------------------------------- /Pods/Highlightr/Pod/Assets/styles/default.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Highlightr/Pod/Assets/styles/default.min.css -------------------------------------------------------------------------------- /Pods/Highlightr/Pod/Assets/styles/docco.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Highlightr/Pod/Assets/styles/docco.min.css -------------------------------------------------------------------------------- /Pods/Highlightr/Pod/Assets/styles/dracula.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Highlightr/Pod/Assets/styles/dracula.min.css -------------------------------------------------------------------------------- /Pods/Highlightr/Pod/Assets/styles/far.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Highlightr/Pod/Assets/styles/far.min.css -------------------------------------------------------------------------------- /Pods/Highlightr/Pod/Assets/styles/github.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Highlightr/Pod/Assets/styles/github.min.css -------------------------------------------------------------------------------- /Pods/Highlightr/Pod/Assets/styles/hybrid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Highlightr/Pod/Assets/styles/hybrid.min.css -------------------------------------------------------------------------------- /Pods/Highlightr/Pod/Assets/styles/idea.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Highlightr/Pod/Assets/styles/idea.min.css -------------------------------------------------------------------------------- /Pods/Highlightr/Pod/Assets/styles/magula.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Highlightr/Pod/Assets/styles/magula.min.css -------------------------------------------------------------------------------- /Pods/Highlightr/Pod/Assets/styles/monokai.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Highlightr/Pod/Assets/styles/monokai.min.css -------------------------------------------------------------------------------- /Pods/Highlightr/Pod/Assets/styles/ocean.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Highlightr/Pod/Assets/styles/ocean.min.css -------------------------------------------------------------------------------- /Pods/Highlightr/Pod/Assets/styles/rainbow.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Highlightr/Pod/Assets/styles/rainbow.min.css -------------------------------------------------------------------------------- /Pods/Highlightr/Pod/Assets/styles/vs.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Highlightr/Pod/Assets/styles/vs.min.css -------------------------------------------------------------------------------- /Pods/Highlightr/Pod/Assets/styles/vs2015.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Highlightr/Pod/Assets/styles/vs2015.min.css -------------------------------------------------------------------------------- /Pods/Highlightr/Pod/Assets/styles/xcode.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Highlightr/Pod/Assets/styles/xcode.min.css -------------------------------------------------------------------------------- /Pods/Highlightr/Pod/Assets/styles/xt256.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Highlightr/Pod/Assets/styles/xt256.min.css -------------------------------------------------------------------------------- /Pods/Highlightr/Pod/Assets/styles/zenburn.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Highlightr/Pod/Assets/styles/zenburn.min.css -------------------------------------------------------------------------------- /Pods/Highlightr/Pod/Classes/HTMLUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Highlightr/Pod/Classes/HTMLUtils.swift -------------------------------------------------------------------------------- /Pods/Highlightr/Pod/Classes/Highlightr.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Highlightr/Pod/Classes/Highlightr.swift -------------------------------------------------------------------------------- /Pods/Highlightr/Pod/Classes/Theme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Highlightr/Pod/Classes/Theme.swift -------------------------------------------------------------------------------- /Pods/Highlightr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Highlightr/README.md -------------------------------------------------------------------------------- /Pods/IGListKit/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/LICENSE.md -------------------------------------------------------------------------------- /Pods/IGListKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/README.md -------------------------------------------------------------------------------- /Pods/IGListKit/Source/Common/IGListAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/Common/IGListAssert.h -------------------------------------------------------------------------------- /Pods/IGListKit/Source/Common/IGListDiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/Common/IGListDiff.h -------------------------------------------------------------------------------- /Pods/IGListKit/Source/Common/IGListDiff.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/Common/IGListDiff.mm -------------------------------------------------------------------------------- /Pods/IGListKit/Source/Common/IGListDiffKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/Common/IGListDiffKit.h -------------------------------------------------------------------------------- /Pods/IGListKit/Source/Common/IGListDiffable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/Common/IGListDiffable.h -------------------------------------------------------------------------------- /Pods/IGListKit/Source/Common/IGListExperiments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/Common/IGListExperiments.h -------------------------------------------------------------------------------- /Pods/IGListKit/Source/Common/IGListMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/Common/IGListMacros.h -------------------------------------------------------------------------------- /Pods/IGListKit/Source/Common/IGListMoveIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/Common/IGListMoveIndex.h -------------------------------------------------------------------------------- /Pods/IGListKit/Source/Common/IGListMoveIndex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/Common/IGListMoveIndex.m -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/IGListAdapter.h -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/IGListAdapter.m -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListAdapterDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/IGListAdapterDataSource.h -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListAdapterDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/IGListAdapterDelegate.h -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListAdapterMoveDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/IGListAdapterMoveDelegate.h -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListAdapterUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/IGListAdapterUpdater.h -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListAdapterUpdater.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/IGListAdapterUpdater.m -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListBatchContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/IGListBatchContext.h -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListBindable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/IGListBindable.h -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListCollectionContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/IGListCollectionContext.h -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListCollectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/IGListCollectionView.h -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListCollectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/IGListCollectionView.m -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListDisplayDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/IGListDisplayDelegate.h -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/IGListKit.h -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListReloadDataUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/IGListReloadDataUpdater.h -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListReloadDataUpdater.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/IGListReloadDataUpdater.m -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListScrollDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/IGListScrollDelegate.h -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListSectionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/IGListSectionController.h -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListSectionController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/IGListSectionController.m -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListTransitionDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/IGListTransitionDelegate.h -------------------------------------------------------------------------------- /Pods/IGListKit/Source/IGListUpdatingDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/IGListUpdatingDelegate.h -------------------------------------------------------------------------------- /Pods/IGListKit/Source/Internal/IGListDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/Internal/IGListDebugger.h -------------------------------------------------------------------------------- /Pods/IGListKit/Source/Internal/IGListDebugger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/Internal/IGListDebugger.m -------------------------------------------------------------------------------- /Pods/IGListKit/Source/Internal/IGListSectionMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/Internal/IGListSectionMap.h -------------------------------------------------------------------------------- /Pods/IGListKit/Source/Internal/IGListSectionMap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/Internal/IGListSectionMap.m -------------------------------------------------------------------------------- /Pods/IGListKit/Source/Swift/ListDiffableBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/Swift/ListDiffableBox.swift -------------------------------------------------------------------------------- /Pods/IGListKit/Source/Swift/ListSwiftPair.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/IGListKit/Source/Swift/ListSwiftPair.swift -------------------------------------------------------------------------------- /Pods/ImageAlertAction/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/ImageAlertAction/LICENSE -------------------------------------------------------------------------------- /Pods/ImageAlertAction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/ImageAlertAction/README.md -------------------------------------------------------------------------------- /Pods/Local Podspecs/ContextMenu.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Local Podspecs/ContextMenu.podspec.json -------------------------------------------------------------------------------- /Pods/Local Podspecs/DateAgo.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Local Podspecs/DateAgo.podspec.json -------------------------------------------------------------------------------- /Pods/Local Podspecs/FlatCache.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Local Podspecs/FlatCache.podspec.json -------------------------------------------------------------------------------- /Pods/Local Podspecs/GitHawkRoutes.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Local Podspecs/GitHawkRoutes.podspec.json -------------------------------------------------------------------------------- /Pods/Local Podspecs/GitHubAPI.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Local Podspecs/GitHubAPI.podspec.json -------------------------------------------------------------------------------- /Pods/Local Podspecs/GitHubSession.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Local Podspecs/GitHubSession.podspec.json -------------------------------------------------------------------------------- /Pods/Local Podspecs/Highlightr.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Local Podspecs/Highlightr.podspec.json -------------------------------------------------------------------------------- /Pods/Local Podspecs/IGListKit.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Local Podspecs/IGListKit.podspec.json -------------------------------------------------------------------------------- /Pods/Local Podspecs/Squawk.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Local Podspecs/Squawk.podspec.json -------------------------------------------------------------------------------- /Pods/Local Podspecs/StringHelpers.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Local Podspecs/StringHelpers.podspec.json -------------------------------------------------------------------------------- /Pods/Local Podspecs/StyledTextKit.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Local Podspecs/StyledTextKit.podspec.json -------------------------------------------------------------------------------- /Pods/Local Podspecs/SwipeCellKit.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Local Podspecs/SwipeCellKit.podspec.json -------------------------------------------------------------------------------- /Pods/Local Podspecs/cmark-gfm-swift.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Local Podspecs/cmark-gfm-swift.podspec.json -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/MessageViewController/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/MessageViewController/LICENSE -------------------------------------------------------------------------------- /Pods/MessageViewController/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/MessageViewController/README.md -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/NYTPhotoViewer/LICENSE.md -------------------------------------------------------------------------------- /Pods/NYTPhotoViewer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/NYTPhotoViewer/README.md -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/SDWebImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SDWebImage/LICENSE -------------------------------------------------------------------------------- /Pods/SDWebImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SDWebImage/README.md -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSImage+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SDWebImage/SDWebImage/NSImage+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSImage+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SDWebImage/SDWebImage/NSImage+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SDWebImage/SDWebImage/SDImageCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCacheConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SDWebImage/SDWebImage/SDImageCacheConfig.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCacheConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SDWebImage/SDWebImage/SDImageCacheConfig.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCompat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCompat.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDecoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageManager.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SDWebImage/SDWebImage/UIButton+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SDWebImage/SDWebImage/UIImage+GIF.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SDWebImage/SDWebImage/UIView+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SDWebImage/SDWebImage/UIView+WebCache.m -------------------------------------------------------------------------------- /Pods/SnapKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SnapKit/LICENSE -------------------------------------------------------------------------------- /Pods/SnapKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SnapKit/README.md -------------------------------------------------------------------------------- /Pods/SnapKit/Source/Constraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SnapKit/Source/Constraint.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintAttributes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SnapKit/Source/ConstraintAttributes.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SnapKit/Source/ConstraintConfig.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SnapKit/Source/ConstraintDSL.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintDescription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SnapKit/Source/ConstraintDescription.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintInsetTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SnapKit/Source/ConstraintInsetTarget.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintInsets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SnapKit/Source/ConstraintInsets.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SnapKit/Source/ConstraintItem.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintLayoutGuide.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SnapKit/Source/ConstraintLayoutGuide.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintLayoutSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SnapKit/Source/ConstraintLayoutSupport.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintMaker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SnapKit/Source/ConstraintMaker.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintMakerEditable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SnapKit/Source/ConstraintMakerEditable.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintOffsetTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SnapKit/Source/ConstraintOffsetTarget.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintPriority.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SnapKit/Source/ConstraintPriority.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintRelation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SnapKit/Source/ConstraintRelation.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SnapKit/Source/ConstraintView.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintViewDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SnapKit/Source/ConstraintViewDSL.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/Debugging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SnapKit/Source/Debugging.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/LayoutConstraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SnapKit/Source/LayoutConstraint.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/LayoutConstraintItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SnapKit/Source/LayoutConstraintItem.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/Typealiases.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SnapKit/Source/Typealiases.swift -------------------------------------------------------------------------------- /Pods/Squawk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Squawk/LICENSE -------------------------------------------------------------------------------- /Pods/Squawk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Squawk/README.md -------------------------------------------------------------------------------- /Pods/Squawk/Source/Anchor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Squawk/Source/Anchor.swift -------------------------------------------------------------------------------- /Pods/Squawk/Source/RubberBandDistance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Squawk/Source/RubberBandDistance.swift -------------------------------------------------------------------------------- /Pods/Squawk/Source/Squawk+Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Squawk/Source/Squawk+Configuration.swift -------------------------------------------------------------------------------- /Pods/Squawk/Source/Squawk.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Squawk/Source/Squawk.swift -------------------------------------------------------------------------------- /Pods/Squawk/Source/SquawkItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Squawk/Source/SquawkItem.swift -------------------------------------------------------------------------------- /Pods/Squawk/Source/SquawkView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Squawk/Source/SquawkView.swift -------------------------------------------------------------------------------- /Pods/Squawk/Source/SquawkViewDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Squawk/Source/SquawkViewDelegate.swift -------------------------------------------------------------------------------- /Pods/StyledTextKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/StyledTextKit/LICENSE -------------------------------------------------------------------------------- /Pods/StyledTextKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/StyledTextKit/README.md -------------------------------------------------------------------------------- /Pods/StyledTextKit/Source/CGSize+Utility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/StyledTextKit/Source/CGSize+Utility.swift -------------------------------------------------------------------------------- /Pods/StyledTextKit/Source/Font.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/StyledTextKit/Source/Font.swift -------------------------------------------------------------------------------- /Pods/StyledTextKit/Source/Hashable+Combined.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/StyledTextKit/Source/Hashable+Combined.swift -------------------------------------------------------------------------------- /Pods/StyledTextKit/Source/LRUCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/StyledTextKit/Source/LRUCache.swift -------------------------------------------------------------------------------- /Pods/StyledTextKit/Source/StyledText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/StyledTextKit/Source/StyledText.swift -------------------------------------------------------------------------------- /Pods/StyledTextKit/Source/StyledTextBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/StyledTextKit/Source/StyledTextBuilder.swift -------------------------------------------------------------------------------- /Pods/StyledTextKit/Source/StyledTextString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/StyledTextKit/Source/StyledTextString.swift -------------------------------------------------------------------------------- /Pods/StyledTextKit/Source/StyledTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/StyledTextKit/Source/StyledTextView.swift -------------------------------------------------------------------------------- /Pods/StyledTextKit/Source/TextStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/StyledTextKit/Source/TextStyle.swift -------------------------------------------------------------------------------- /Pods/StyledTextKit/Source/UIScreen+Static.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/StyledTextKit/Source/UIScreen+Static.swift -------------------------------------------------------------------------------- /Pods/SwiftLint/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SwiftLint/LICENSE -------------------------------------------------------------------------------- /Pods/SwiftLint/swiftlint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/SwiftLint/swiftlint -------------------------------------------------------------------------------- /Pods/TUSafariActivity/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/TUSafariActivity/LICENSE.md -------------------------------------------------------------------------------- /Pods/TUSafariActivity/Pod/Assets/safari-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/TUSafariActivity/Pod/Assets/safari-7.png -------------------------------------------------------------------------------- /Pods/TUSafariActivity/Pod/Assets/safari-7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/TUSafariActivity/Pod/Assets/safari-7@2x.png -------------------------------------------------------------------------------- /Pods/TUSafariActivity/Pod/Assets/safari-7@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/TUSafariActivity/Pod/Assets/safari-7@3x.png -------------------------------------------------------------------------------- /Pods/TUSafariActivity/Pod/Assets/safari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/TUSafariActivity/Pod/Assets/safari.png -------------------------------------------------------------------------------- /Pods/TUSafariActivity/Pod/Assets/safari@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/TUSafariActivity/Pod/Assets/safari@2x.png -------------------------------------------------------------------------------- /Pods/TUSafariActivity/Pod/Assets/safari@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/TUSafariActivity/Pod/Assets/safari@3x.png -------------------------------------------------------------------------------- /Pods/TUSafariActivity/Pod/Assets/safari~iPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/TUSafariActivity/Pod/Assets/safari~iPad.png -------------------------------------------------------------------------------- /Pods/TUSafariActivity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/TUSafariActivity/README.md -------------------------------------------------------------------------------- /Pods/Target Support Files/Apollo-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Target Support Files/Apollo-iOS/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/ContextMenu/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Target Support Files/ContextMenu/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/DateAgo-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Target Support Files/DateAgo-iOS/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/FLEX/FLEX-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Target Support Files/FLEX/FLEX-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/FLEX/FLEX-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Target Support Files/FLEX/FLEX-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/FLEX/FLEX-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Target Support Files/FLEX/FLEX-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/FLEX/FLEX-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Target Support Files/FLEX/FLEX-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/FLEX/FLEX.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Target Support Files/FLEX/FLEX.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/FLEX/FLEX.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Target Support Files/FLEX/FLEX.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/FLEX/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Target Support Files/FLEX/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/FMDB/FMDB-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Target Support Files/FMDB/FMDB-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/FMDB/FMDB-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Target Support Files/FMDB/FMDB-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/FMDB/FMDB-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Target Support Files/FMDB/FMDB-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/FMDB/FMDB-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Target Support Files/FMDB/FMDB-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/FMDB/FMDB.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Target Support Files/FMDB/FMDB.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/FMDB/FMDB.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Target Support Files/FMDB/FMDB.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/FMDB/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Target Support Files/FMDB/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Fabric/Fabric.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Target Support Files/Fabric/Fabric.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/FlatCache/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Target Support Files/FlatCache/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/HTMLString/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Target Support Files/HTMLString/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Highlightr/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Target Support Files/Highlightr/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/IGListKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Target Support Files/IGListKit/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Target Support Files/SDWebImage/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/SnapKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Target Support Files/SnapKit/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/SnapKit/SnapKit-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Target Support Files/SnapKit/SnapKit-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Squawk/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Target Support Files/Squawk/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Squawk/Squawk-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Target Support Files/Squawk/Squawk-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Squawk/Squawk.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Target Support Files/Squawk/Squawk.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Squawk/Squawk.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Target Support Files/Squawk/Squawk.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SwipeCellKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/Target Support Files/SwipeCellKit/Info.plist -------------------------------------------------------------------------------- /Pods/XLPagerTabStrip/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/XLPagerTabStrip/LICENSE -------------------------------------------------------------------------------- /Pods/XLPagerTabStrip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/XLPagerTabStrip/README.md -------------------------------------------------------------------------------- /Pods/XLPagerTabStrip/Sources/BarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/XLPagerTabStrip/Sources/BarView.swift -------------------------------------------------------------------------------- /Pods/XLPagerTabStrip/Sources/ButtonBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/XLPagerTabStrip/Sources/ButtonBarView.swift -------------------------------------------------------------------------------- /Pods/XLPagerTabStrip/Sources/ButtonCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/XLPagerTabStrip/Sources/ButtonCell.xib -------------------------------------------------------------------------------- /Pods/XLPagerTabStrip/Sources/FXPageControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/XLPagerTabStrip/Sources/FXPageControl.h -------------------------------------------------------------------------------- /Pods/XLPagerTabStrip/Sources/FXPageControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/XLPagerTabStrip/Sources/FXPageControl.m -------------------------------------------------------------------------------- /Pods/XLPagerTabStrip/Sources/IndicatorInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/XLPagerTabStrip/Sources/IndicatorInfo.swift -------------------------------------------------------------------------------- /Pods/XLPagerTabStrip/Sources/SwipeDirection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/XLPagerTabStrip/Sources/SwipeDirection.swift -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/LICENSE -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/README.md -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/ASTOperations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/ASTOperations.swift -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/Block+TableRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/Block+TableRow.swift -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/Element.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/Element.swift -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/ListElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/ListElement.swift -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/Node+Elements.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/Node+Elements.swift -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/Node.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/Node.swift -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/SwiftAST.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/SwiftAST.swift -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/TableRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/TableRow.swift -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/TextElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/TextElement.swift -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/cmark-gfm-swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/cmark-gfm-swift.h -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/cmark_gfm/arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/cmark_gfm/arena.c -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/cmark_gfm/autolink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/cmark_gfm/autolink.c -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/cmark_gfm/blocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/cmark_gfm/blocks.c -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/cmark_gfm/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/cmark_gfm/buffer.c -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/cmark_gfm/checkbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/cmark_gfm/checkbox.c -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/cmark_gfm/cmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/cmark_gfm/cmark.c -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/cmark_gfm/footnotes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/cmark_gfm/footnotes.c -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/cmark_gfm/html.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/cmark_gfm/html.c -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/cmark_gfm/inlines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/cmark_gfm/inlines.c -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/cmark_gfm/iterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/cmark_gfm/iterator.c -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/cmark_gfm/latex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/cmark_gfm/latex.c -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/cmark_gfm/man.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/cmark_gfm/man.c -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/cmark_gfm/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/cmark_gfm/map.c -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/cmark_gfm/mention.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/cmark_gfm/mention.c -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/cmark_gfm/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/cmark_gfm/node.c -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/cmark_gfm/plaintext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/cmark_gfm/plaintext.c -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/cmark_gfm/plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/cmark_gfm/plugin.c -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/cmark_gfm/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/cmark_gfm/registry.c -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/cmark_gfm/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/cmark_gfm/render.c -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/cmark_gfm/scanners.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/cmark_gfm/scanners.c -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/cmark_gfm/scanners.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/cmark_gfm/scanners.re -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/cmark_gfm/table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/cmark_gfm/table.c -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/cmark_gfm/tagfilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/cmark_gfm/tagfilter.c -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/cmark_gfm/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/cmark_gfm/utf8.c -------------------------------------------------------------------------------- /Pods/cmark-gfm-swift/Source/cmark_gfm/xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Pods/cmark-gfm-swift/Source/cmark_gfm/xml.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Resources/Assets.xcassets/bug.imageset/bug@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Resources/Assets.xcassets/bug.imageset/bug@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/bug.imageset/bug@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Resources/Assets.xcassets/bug.imageset/bug@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/eye.imageset/eye@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Resources/Assets.xcassets/eye.imageset/eye@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/eye.imageset/eye@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Resources/Assets.xcassets/eye.imageset/eye@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/key.imageset/key@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Resources/Assets.xcassets/key.imageset/key@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/key.imageset/key@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Resources/Assets.xcassets/key.imageset/key@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/law.imageset/law@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Resources/Assets.xcassets/law.imageset/law@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/law.imageset/law@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Resources/Assets.xcassets/law.imageset/law@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/pin.imageset/pin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Resources/Assets.xcassets/pin.imageset/pin@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/pin.imageset/pin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Resources/Assets.xcassets/pin.imageset/pin@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/rss.imageset/rss@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Resources/Assets.xcassets/rss.imageset/rss@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/rss.imageset/rss@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Resources/Assets.xcassets/rss.imageset/rss@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/tag.imageset/tag@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Resources/Assets.xcassets/tag.imageset/tag@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/tag.imageset/tag@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Resources/Assets.xcassets/tag.imageset/tag@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/x.imageset/x@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Resources/Assets.xcassets/x.imageset/x@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/x.imageset/x@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Resources/Assets.xcassets/x.imageset/x@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/zap.imageset/zap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Resources/Assets.xcassets/zap.imageset/zap@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/zap.imageset/zap@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Resources/Assets.xcassets/zap.imageset/zap@3x.png -------------------------------------------------------------------------------- /Resources/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Resources/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Resources/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Resources/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Resources/Freetime-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Resources/Freetime-Bridging-Header.h -------------------------------------------------------------------------------- /Resources/Freetime.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Resources/Freetime.entitlements -------------------------------------------------------------------------------- /Resources/FreetimeSamples-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Resources/FreetimeSamples-Info.plist -------------------------------------------------------------------------------- /Resources/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Resources/GoogleService-Info.plist -------------------------------------------------------------------------------- /Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Resources/Info.plist -------------------------------------------------------------------------------- /Resources/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Resources/Localizable.stringsdict -------------------------------------------------------------------------------- /Resources/Snapshots-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Resources/Snapshots-Info.plist -------------------------------------------------------------------------------- /Resources/emoji.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Resources/emoji.json -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Settings.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Settings.bundle/Root.plist -------------------------------------------------------------------------------- /Settings.bundle/com.mono0926.LicensePlist.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Settings.bundle/com.mono0926.LicensePlist.plist -------------------------------------------------------------------------------- /Setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/Setup.md -------------------------------------------------------------------------------- /fastlane/.gitignore: -------------------------------------------------------------------------------- 1 | installer/ 2 | -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/fastlane/Appfile -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/fastlane/README.md -------------------------------------------------------------------------------- /gql/API.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/gql/API.swift -------------------------------------------------------------------------------- /gql/AddComment.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/gql/AddComment.graphql -------------------------------------------------------------------------------- /gql/AddReaction.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/gql/AddReaction.graphql -------------------------------------------------------------------------------- /gql/BookmarkNodes.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/gql/BookmarkNodes.graphql -------------------------------------------------------------------------------- /gql/Fragments.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/gql/Fragments.graphql -------------------------------------------------------------------------------- /gql/IssueAutocomplete.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/gql/IssueAutocomplete.graphql -------------------------------------------------------------------------------- /gql/IssueOrPullRequest.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/gql/IssueOrPullRequest.graphql -------------------------------------------------------------------------------- /gql/RemoveReaction.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/gql/RemoveReaction.graphql -------------------------------------------------------------------------------- /gql/RepoBranches.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/gql/RepoBranches.graphql -------------------------------------------------------------------------------- /gql/RepoFile.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/gql/RepoFile.graphql -------------------------------------------------------------------------------- /gql/RepoFileHistory.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/gql/RepoFileHistory.graphql -------------------------------------------------------------------------------- /gql/RepoFiles.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/gql/RepoFiles.graphql -------------------------------------------------------------------------------- /gql/RepoPages.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/gql/RepoPages.graphql -------------------------------------------------------------------------------- /gql/RepositoryInfo.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/gql/RepositoryInfo.graphql -------------------------------------------------------------------------------- /gql/RepositoryLabels.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/gql/RepositoryLabels.graphql -------------------------------------------------------------------------------- /gql/SearchRepos.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/gql/SearchRepos.graphql -------------------------------------------------------------------------------- /gql/examples/Issue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/gql/examples/Issue.json -------------------------------------------------------------------------------- /gql/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/gql/schema.json -------------------------------------------------------------------------------- /images/app-store-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/images/app-store-badge.png -------------------------------------------------------------------------------- /images/githawk-pulse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/images/githawk-pulse.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/package.json -------------------------------------------------------------------------------- /tools/bin/license-plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/tools/bin/license-plist -------------------------------------------------------------------------------- /tools/generateAcknowledgements.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHawkApp/GitHawk/HEAD/tools/generateAcknowledgements.sh --------------------------------------------------------------------------------