├── .bundle └── config ├── .gitignore ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── PRIVACYPOLICY.md ├── README.md ├── TealDearLogoByArabidopsis.jpg ├── TealDearLogoByArabidopsis.xcf ├── fastlane ├── Deliverfile ├── Fastfile ├── Gymfile ├── README.md ├── Snapfile └── screenshots │ ├── README.txt │ ├── en-GB │ ├── iPad Pro (10.5-inch)-03CommandListAndDetail.png │ ├── iPad Pro (10.5-inch)-04FavouriteCommands.png │ ├── iPad Pro (11-inch)-03CommandListAndDetail.png │ ├── iPad Pro (11-inch)-04FavouriteCommands.png │ ├── iPad Pro (12.9-inch) (2nd generation)-03CommandListAndDetail.png │ ├── iPad Pro (12.9-inch) (2nd generation)-04FavouriteCommands.png │ ├── iPad Pro (12.9-inch) (3rd generation)-03CommandListAndDetail.png │ ├── iPad Pro (12.9-inch) (3rd generation)-04FavouriteCommands.png │ ├── iPad Pro (9.7-inch)-03CommandListAndDetail.png │ ├── iPad Pro (9.7-inch)-04FavouriteCommands.png │ ├── iPhone 8 Plus-01CommandList.png │ ├── iPhone 8 Plus-02CommandDetail.png │ ├── iPhone 8 Plus-04FavouriteCommands.png │ ├── iPhone 8-01CommandList.png │ ├── iPhone 8-02CommandDetail.png │ ├── iPhone 8-04FavouriteCommands.png │ ├── iPhone SE-01CommandList.png │ ├── iPhone SE-02CommandDetail.png │ ├── iPhone SE-04FavouriteCommands.png │ ├── iPhone Xs Max-01CommandList.png │ ├── iPhone Xs Max-02CommandDetail.png │ ├── iPhone Xs Max-04FavouriteCommands.png │ ├── iPhone Xs-01CommandList.png │ ├── iPhone Xs-02CommandDetail.png │ └── iPhone Xs-04FavouriteCommands.png │ └── en-US │ ├── iPad Pro (10.5-inch)-03CommandListAndDetail.png │ ├── iPad Pro (10.5-inch)-04FavouriteCommands.png │ ├── iPad Pro (11-inch)-03CommandListAndDetail.png │ ├── iPad Pro (11-inch)-04FavouriteCommands.png │ ├── iPad Pro (12.9-inch) (2nd generation)-03CommandListAndDetail.png │ ├── iPad Pro (12.9-inch) (2nd generation)-04FavouriteCommands.png │ ├── iPad Pro (12.9-inch) (3rd generation)-03CommandListAndDetail.png │ ├── iPad Pro (12.9-inch) (3rd generation)-04FavouriteCommands.png │ ├── iPad Pro (9.7-inch)-03CommandListAndDetail.png │ ├── iPad Pro (9.7-inch)-04FavouriteCommands.png │ ├── iPhone 8 Plus-01CommandList.png │ ├── iPhone 8 Plus-02CommandDetail.png │ ├── iPhone 8 Plus-04FavouriteCommands.png │ ├── iPhone 8-01CommandList.png │ ├── iPhone 8-02CommandDetail.png │ ├── iPhone 8-04FavouriteCommands.png │ ├── iPhone SE-01CommandList.png │ ├── iPhone SE-02CommandDetail.png │ ├── iPhone SE-04FavouriteCommands.png │ ├── iPhone Xs Max-01CommandList.png │ ├── iPhone Xs Max-02CommandDetail.png │ ├── iPhone Xs Max-04FavouriteCommands.png │ ├── iPhone Xs-01CommandList.png │ ├── iPhone Xs-02CommandDetail.png │ └── iPhone Xs-04FavouriteCommands.png ├── hooks └── pre-commit ├── icons ├── 029.png ├── 040.png ├── 058.png ├── 076.png ├── 080.png ├── 087.png ├── 1024.png ├── 120.png ├── 152.png ├── 167.png ├── 180.png ├── logo.xcf ├── transparent@2x.png └── transparent@3x.png ├── scripts ├── LaurineGenerator.swift └── frames.json ├── tldr-pages-screenshot └── Info.plist ├── tldr-viewer-snapshottests ├── Info.plist ├── SnapshotHelper.swift └── SnapshotTests.swift ├── tldr-viewer.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── WorkspaceSettings.xcsettings │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ └── xcschemes │ ├── snapshot.xcscheme │ └── tldr-viewer.xcscheme ├── tldr-viewer.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── swiftpm │ └── Package.resolved └── tldr-viewer ├── ActionButton.swift ├── AppDelegate.swift ├── Assets.xcassets ├── AppIcon.appiconset │ ├── 029.png │ ├── 040.png │ ├── 058-1.png │ ├── 058.png │ ├── 076.png │ ├── 080-1.png │ ├── 080.png │ ├── 087.png │ ├── 1024.png │ ├── 120-1.png │ ├── 120.png │ ├── 152.png │ ├── 167.png │ ├── 180.png │ └── Contents.json ├── Contents.json ├── clrActionBackground.colorset │ └── Contents.json ├── clrActionForeground.colorset │ └── Contents.json ├── clrBackground.colorset │ └── Contents.json ├── clrBackgroundTint.colorset │ └── Contents.json ├── clrBody.colorset │ └── Contents.json ├── clrBodyDetail.colorset │ └── Contents.json ├── clrBodyHighlight.colorset │ └── Contents.json ├── clrBodyInverse.colorset │ └── Contents.json ├── clrBodyInverseSlightlyTransparent.colorset │ └── Contents.json ├── clrBodyTint.colorset │ └── Contents.json ├── clrCellBackground.colorset │ └── Contents.json ├── clrCodeBackground.colorset │ └── Contents.json ├── clrLaunchBackground.colorset │ └── Contents.json ├── clrSearchBackground.colorset │ └── Contents.json ├── clrSegmentInverseSelectedBackground.colorset │ └── Contents.json ├── clrSegmentInverseSelectedForeground.colorset │ └── Contents.json ├── clrSegmentInverseUnselectedBackground.colorset │ └── Contents.json ├── clrSegmentInverseUnselectedForeground.colorset │ └── Contents.json ├── clrSegmentSelectedBackground.colorset │ └── Contents.json ├── clrSegmentSelectedForeground.colorset │ └── Contents.json ├── clrSegmentUnselectedBackground.colorset │ └── Contents.json ├── clrSegmentUnselectedForeground.colorset │ └── Contents.json ├── clrTableBackground.colorset │ └── Contents.json ├── cog.imageset │ ├── Contents.json │ ├── cog@2x.png │ └── cog@3x.png ├── heart-large.imageset │ ├── Contents.json │ ├── heart-40.png │ └── heart-60.png ├── heart-o-large.imageset │ ├── Contents.json │ ├── heart-o-40.png │ └── heart-o-60.png ├── heart-o-small.imageset │ ├── Contents.json │ ├── heart-o-30.png │ └── heart-o-45.png ├── heart-small.imageset │ ├── Contents.json │ ├── heart-30.png │ └── heart-45.png ├── info.imageset │ ├── Contents.json │ ├── i44.png │ └── i66.png └── transparent.imageset │ ├── Contents.json │ ├── transparent@2x.png │ └── transparent@3x.png ├── Base.lproj ├── LaunchScreen.storyboard ├── Localizable.strings └── Main.storyboard ├── BaseCell.swift ├── BaseCellViewModel.swift ├── Command.swift ├── CommandCell.swift ├── CommandCellViewModel.swift ├── CommandVariant.swift ├── Constants.swift ├── DataSource.swift ├── DataSources.swift ├── DataSourcing.swift ├── DetailDataSource.swift ├── DetailPlatformViewModel.swift ├── DetailViewController.swift ├── DetailViewModel.swift ├── ErrorCellViewModel.swift ├── FavouriteDataSourceDecorator.swift ├── FilteringDataSourceDecorator.swift ├── GroupViewModel.swift ├── Info.plist ├── InfoViewController.swift ├── InfoViewModel.swift ├── ListTableViewController.swift ├── ListViewController.swift ├── ListViewModel.swift ├── LoadingCell.swift ├── LoadingCellViewModel.swift ├── Localizations.swift ├── MessageAndButtonCell.swift ├── MessageCell.swift ├── NSDateExtension.swift ├── NoFavouritesCellViewModel.swift ├── NoResultsCellViewModel.swift ├── OldIndexCellViewModel.swift ├── Platform.swift ├── Preferences.swift ├── SearchingDataSourceDecorator.swift ├── SectionViewModel.swift ├── SegmentedControl.swift ├── SegmentedControlInverse.swift ├── ShortcutHandler.swift ├── Shortcuts.swift ├── SpotlightSearch.swift ├── SwitchingDataSourceDecorator.swift ├── TLDRRequest.swift ├── TLDRResponse.swift ├── TLDRURLSessionConfiguration.swift ├── TextCellBasic.swift ├── TextCellRightDetail.swift ├── TextCellViewModel.swift ├── Theme.swift ├── WeakCollection.swift ├── en-US.lproj └── LocalizableOverride.strings ├── style.css └── tldr-viewer.entitlements /.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_PATH: "vendor/bundle" 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.0.4 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/LICENSE -------------------------------------------------------------------------------- /PRIVACYPOLICY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/PRIVACYPOLICY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/README.md -------------------------------------------------------------------------------- /TealDearLogoByArabidopsis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/TealDearLogoByArabidopsis.jpg -------------------------------------------------------------------------------- /TealDearLogoByArabidopsis.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/TealDearLogoByArabidopsis.xcf -------------------------------------------------------------------------------- /fastlane/Deliverfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/Deliverfile -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Gymfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/Gymfile -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/README.md -------------------------------------------------------------------------------- /fastlane/Snapfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/Snapfile -------------------------------------------------------------------------------- /fastlane/screenshots/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/README.txt -------------------------------------------------------------------------------- /fastlane/screenshots/en-GB/iPad Pro (10.5-inch)-03CommandListAndDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-GB/iPad Pro (10.5-inch)-03CommandListAndDetail.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-GB/iPad Pro (10.5-inch)-04FavouriteCommands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-GB/iPad Pro (10.5-inch)-04FavouriteCommands.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-GB/iPad Pro (11-inch)-03CommandListAndDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-GB/iPad Pro (11-inch)-03CommandListAndDetail.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-GB/iPad Pro (11-inch)-04FavouriteCommands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-GB/iPad Pro (11-inch)-04FavouriteCommands.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-GB/iPad Pro (12.9-inch) (2nd generation)-03CommandListAndDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-GB/iPad Pro (12.9-inch) (2nd generation)-03CommandListAndDetail.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-GB/iPad Pro (12.9-inch) (2nd generation)-04FavouriteCommands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-GB/iPad Pro (12.9-inch) (2nd generation)-04FavouriteCommands.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-GB/iPad Pro (12.9-inch) (3rd generation)-03CommandListAndDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-GB/iPad Pro (12.9-inch) (3rd generation)-03CommandListAndDetail.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-GB/iPad Pro (12.9-inch) (3rd generation)-04FavouriteCommands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-GB/iPad Pro (12.9-inch) (3rd generation)-04FavouriteCommands.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-GB/iPad Pro (9.7-inch)-03CommandListAndDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-GB/iPad Pro (9.7-inch)-03CommandListAndDetail.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-GB/iPad Pro (9.7-inch)-04FavouriteCommands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-GB/iPad Pro (9.7-inch)-04FavouriteCommands.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-GB/iPhone 8 Plus-01CommandList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-GB/iPhone 8 Plus-01CommandList.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-GB/iPhone 8 Plus-02CommandDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-GB/iPhone 8 Plus-02CommandDetail.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-GB/iPhone 8 Plus-04FavouriteCommands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-GB/iPhone 8 Plus-04FavouriteCommands.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-GB/iPhone 8-01CommandList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-GB/iPhone 8-01CommandList.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-GB/iPhone 8-02CommandDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-GB/iPhone 8-02CommandDetail.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-GB/iPhone 8-04FavouriteCommands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-GB/iPhone 8-04FavouriteCommands.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-GB/iPhone SE-01CommandList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-GB/iPhone SE-01CommandList.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-GB/iPhone SE-02CommandDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-GB/iPhone SE-02CommandDetail.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-GB/iPhone SE-04FavouriteCommands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-GB/iPhone SE-04FavouriteCommands.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-GB/iPhone Xs Max-01CommandList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-GB/iPhone Xs Max-01CommandList.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-GB/iPhone Xs Max-02CommandDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-GB/iPhone Xs Max-02CommandDetail.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-GB/iPhone Xs Max-04FavouriteCommands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-GB/iPhone Xs Max-04FavouriteCommands.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-GB/iPhone Xs-01CommandList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-GB/iPhone Xs-01CommandList.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-GB/iPhone Xs-02CommandDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-GB/iPhone Xs-02CommandDetail.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-GB/iPhone Xs-04FavouriteCommands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-GB/iPhone Xs-04FavouriteCommands.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-US/iPad Pro (10.5-inch)-03CommandListAndDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-US/iPad Pro (10.5-inch)-03CommandListAndDetail.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-US/iPad Pro (10.5-inch)-04FavouriteCommands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-US/iPad Pro (10.5-inch)-04FavouriteCommands.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-US/iPad Pro (11-inch)-03CommandListAndDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-US/iPad Pro (11-inch)-03CommandListAndDetail.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-US/iPad Pro (11-inch)-04FavouriteCommands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-US/iPad Pro (11-inch)-04FavouriteCommands.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-US/iPad Pro (12.9-inch) (2nd generation)-03CommandListAndDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-US/iPad Pro (12.9-inch) (2nd generation)-03CommandListAndDetail.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-US/iPad Pro (12.9-inch) (2nd generation)-04FavouriteCommands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-US/iPad Pro (12.9-inch) (2nd generation)-04FavouriteCommands.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-US/iPad Pro (12.9-inch) (3rd generation)-03CommandListAndDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-US/iPad Pro (12.9-inch) (3rd generation)-03CommandListAndDetail.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-US/iPad Pro (12.9-inch) (3rd generation)-04FavouriteCommands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-US/iPad Pro (12.9-inch) (3rd generation)-04FavouriteCommands.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-US/iPad Pro (9.7-inch)-03CommandListAndDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-US/iPad Pro (9.7-inch)-03CommandListAndDetail.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-US/iPad Pro (9.7-inch)-04FavouriteCommands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-US/iPad Pro (9.7-inch)-04FavouriteCommands.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-US/iPhone 8 Plus-01CommandList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-US/iPhone 8 Plus-01CommandList.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-US/iPhone 8 Plus-02CommandDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-US/iPhone 8 Plus-02CommandDetail.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-US/iPhone 8 Plus-04FavouriteCommands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-US/iPhone 8 Plus-04FavouriteCommands.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-US/iPhone 8-01CommandList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-US/iPhone 8-01CommandList.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-US/iPhone 8-02CommandDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-US/iPhone 8-02CommandDetail.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-US/iPhone 8-04FavouriteCommands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-US/iPhone 8-04FavouriteCommands.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-US/iPhone SE-01CommandList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-US/iPhone SE-01CommandList.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-US/iPhone SE-02CommandDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-US/iPhone SE-02CommandDetail.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-US/iPhone SE-04FavouriteCommands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-US/iPhone SE-04FavouriteCommands.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-US/iPhone Xs Max-01CommandList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-US/iPhone Xs Max-01CommandList.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-US/iPhone Xs Max-02CommandDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-US/iPhone Xs Max-02CommandDetail.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-US/iPhone Xs Max-04FavouriteCommands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-US/iPhone Xs Max-04FavouriteCommands.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-US/iPhone Xs-01CommandList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-US/iPhone Xs-01CommandList.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-US/iPhone Xs-02CommandDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-US/iPhone Xs-02CommandDetail.png -------------------------------------------------------------------------------- /fastlane/screenshots/en-US/iPhone Xs-04FavouriteCommands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/fastlane/screenshots/en-US/iPhone Xs-04FavouriteCommands.png -------------------------------------------------------------------------------- /hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/hooks/pre-commit -------------------------------------------------------------------------------- /icons/029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/icons/029.png -------------------------------------------------------------------------------- /icons/040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/icons/040.png -------------------------------------------------------------------------------- /icons/058.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/icons/058.png -------------------------------------------------------------------------------- /icons/076.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/icons/076.png -------------------------------------------------------------------------------- /icons/080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/icons/080.png -------------------------------------------------------------------------------- /icons/087.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/icons/087.png -------------------------------------------------------------------------------- /icons/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/icons/1024.png -------------------------------------------------------------------------------- /icons/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/icons/120.png -------------------------------------------------------------------------------- /icons/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/icons/152.png -------------------------------------------------------------------------------- /icons/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/icons/167.png -------------------------------------------------------------------------------- /icons/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/icons/180.png -------------------------------------------------------------------------------- /icons/logo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/icons/logo.xcf -------------------------------------------------------------------------------- /icons/transparent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/icons/transparent@2x.png -------------------------------------------------------------------------------- /icons/transparent@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/icons/transparent@3x.png -------------------------------------------------------------------------------- /scripts/LaurineGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/scripts/LaurineGenerator.swift -------------------------------------------------------------------------------- /scripts/frames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/scripts/frames.json -------------------------------------------------------------------------------- /tldr-pages-screenshot/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-pages-screenshot/Info.plist -------------------------------------------------------------------------------- /tldr-viewer-snapshottests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer-snapshottests/Info.plist -------------------------------------------------------------------------------- /tldr-viewer-snapshottests/SnapshotHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer-snapshottests/SnapshotHelper.swift -------------------------------------------------------------------------------- /tldr-viewer-snapshottests/SnapshotTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer-snapshottests/SnapshotTests.swift -------------------------------------------------------------------------------- /tldr-viewer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /tldr-viewer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /tldr-viewer.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /tldr-viewer.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /tldr-viewer.xcodeproj/xcshareddata/xcschemes/snapshot.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer.xcodeproj/xcshareddata/xcschemes/snapshot.xcscheme -------------------------------------------------------------------------------- /tldr-viewer.xcodeproj/xcshareddata/xcschemes/tldr-viewer.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer.xcodeproj/xcshareddata/xcschemes/tldr-viewer.xcscheme -------------------------------------------------------------------------------- /tldr-viewer.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /tldr-viewer.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /tldr-viewer.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /tldr-viewer/ActionButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/ActionButton.swift -------------------------------------------------------------------------------- /tldr-viewer/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/AppDelegate.swift -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/AppIcon.appiconset/029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/AppIcon.appiconset/029.png -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/AppIcon.appiconset/040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/AppIcon.appiconset/040.png -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/AppIcon.appiconset/058-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/AppIcon.appiconset/058-1.png -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/AppIcon.appiconset/058.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/AppIcon.appiconset/058.png -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/AppIcon.appiconset/076.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/AppIcon.appiconset/076.png -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/AppIcon.appiconset/080-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/AppIcon.appiconset/080-1.png -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/AppIcon.appiconset/080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/AppIcon.appiconset/080.png -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/AppIcon.appiconset/087.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/AppIcon.appiconset/087.png -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/AppIcon.appiconset/120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/AppIcon.appiconset/120-1.png -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/clrActionBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/clrActionBackground.colorset/Contents.json -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/clrActionForeground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/clrActionForeground.colorset/Contents.json -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/clrBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/clrBackground.colorset/Contents.json -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/clrBackgroundTint.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/clrBackgroundTint.colorset/Contents.json -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/clrBody.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/clrBody.colorset/Contents.json -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/clrBodyDetail.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/clrBodyDetail.colorset/Contents.json -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/clrBodyHighlight.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/clrBodyHighlight.colorset/Contents.json -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/clrBodyInverse.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/clrBodyInverse.colorset/Contents.json -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/clrBodyInverseSlightlyTransparent.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/clrBodyInverseSlightlyTransparent.colorset/Contents.json -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/clrBodyTint.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/clrBodyTint.colorset/Contents.json -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/clrCellBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/clrCellBackground.colorset/Contents.json -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/clrCodeBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/clrCodeBackground.colorset/Contents.json -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/clrLaunchBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/clrLaunchBackground.colorset/Contents.json -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/clrSearchBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/clrSearchBackground.colorset/Contents.json -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/clrSegmentInverseSelectedBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/clrSegmentInverseSelectedBackground.colorset/Contents.json -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/clrSegmentInverseSelectedForeground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/clrSegmentInverseSelectedForeground.colorset/Contents.json -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/clrSegmentInverseUnselectedBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/clrSegmentInverseUnselectedBackground.colorset/Contents.json -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/clrSegmentInverseUnselectedForeground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/clrSegmentInverseUnselectedForeground.colorset/Contents.json -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/clrSegmentSelectedBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/clrSegmentSelectedBackground.colorset/Contents.json -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/clrSegmentSelectedForeground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/clrSegmentSelectedForeground.colorset/Contents.json -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/clrSegmentUnselectedBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/clrSegmentUnselectedBackground.colorset/Contents.json -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/clrSegmentUnselectedForeground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/clrSegmentUnselectedForeground.colorset/Contents.json -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/clrTableBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/clrTableBackground.colorset/Contents.json -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/cog.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/cog.imageset/Contents.json -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/cog.imageset/cog@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/cog.imageset/cog@2x.png -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/cog.imageset/cog@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/cog.imageset/cog@3x.png -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/heart-large.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/heart-large.imageset/Contents.json -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/heart-large.imageset/heart-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/heart-large.imageset/heart-40.png -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/heart-large.imageset/heart-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/heart-large.imageset/heart-60.png -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/heart-o-large.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/heart-o-large.imageset/Contents.json -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/heart-o-large.imageset/heart-o-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/heart-o-large.imageset/heart-o-40.png -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/heart-o-large.imageset/heart-o-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/heart-o-large.imageset/heart-o-60.png -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/heart-o-small.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/heart-o-small.imageset/Contents.json -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/heart-o-small.imageset/heart-o-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/heart-o-small.imageset/heart-o-30.png -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/heart-o-small.imageset/heart-o-45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/heart-o-small.imageset/heart-o-45.png -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/heart-small.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/heart-small.imageset/Contents.json -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/heart-small.imageset/heart-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/heart-small.imageset/heart-30.png -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/heart-small.imageset/heart-45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/heart-small.imageset/heart-45.png -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/info.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/info.imageset/Contents.json -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/info.imageset/i44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/info.imageset/i44.png -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/info.imageset/i66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/info.imageset/i66.png -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/transparent.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/transparent.imageset/Contents.json -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/transparent.imageset/transparent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/transparent.imageset/transparent@2x.png -------------------------------------------------------------------------------- /tldr-viewer/Assets.xcassets/transparent.imageset/transparent@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Assets.xcassets/transparent.imageset/transparent@3x.png -------------------------------------------------------------------------------- /tldr-viewer/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /tldr-viewer/Base.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Base.lproj/Localizable.strings -------------------------------------------------------------------------------- /tldr-viewer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /tldr-viewer/BaseCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/BaseCell.swift -------------------------------------------------------------------------------- /tldr-viewer/BaseCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/BaseCellViewModel.swift -------------------------------------------------------------------------------- /tldr-viewer/Command.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Command.swift -------------------------------------------------------------------------------- /tldr-viewer/CommandCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/CommandCell.swift -------------------------------------------------------------------------------- /tldr-viewer/CommandCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/CommandCellViewModel.swift -------------------------------------------------------------------------------- /tldr-viewer/CommandVariant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/CommandVariant.swift -------------------------------------------------------------------------------- /tldr-viewer/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Constants.swift -------------------------------------------------------------------------------- /tldr-viewer/DataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/DataSource.swift -------------------------------------------------------------------------------- /tldr-viewer/DataSources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/DataSources.swift -------------------------------------------------------------------------------- /tldr-viewer/DataSourcing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/DataSourcing.swift -------------------------------------------------------------------------------- /tldr-viewer/DetailDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/DetailDataSource.swift -------------------------------------------------------------------------------- /tldr-viewer/DetailPlatformViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/DetailPlatformViewModel.swift -------------------------------------------------------------------------------- /tldr-viewer/DetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/DetailViewController.swift -------------------------------------------------------------------------------- /tldr-viewer/DetailViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/DetailViewModel.swift -------------------------------------------------------------------------------- /tldr-viewer/ErrorCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/ErrorCellViewModel.swift -------------------------------------------------------------------------------- /tldr-viewer/FavouriteDataSourceDecorator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/FavouriteDataSourceDecorator.swift -------------------------------------------------------------------------------- /tldr-viewer/FilteringDataSourceDecorator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/FilteringDataSourceDecorator.swift -------------------------------------------------------------------------------- /tldr-viewer/GroupViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/GroupViewModel.swift -------------------------------------------------------------------------------- /tldr-viewer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Info.plist -------------------------------------------------------------------------------- /tldr-viewer/InfoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/InfoViewController.swift -------------------------------------------------------------------------------- /tldr-viewer/InfoViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/InfoViewModel.swift -------------------------------------------------------------------------------- /tldr-viewer/ListTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/ListTableViewController.swift -------------------------------------------------------------------------------- /tldr-viewer/ListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/ListViewController.swift -------------------------------------------------------------------------------- /tldr-viewer/ListViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/ListViewModel.swift -------------------------------------------------------------------------------- /tldr-viewer/LoadingCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/LoadingCell.swift -------------------------------------------------------------------------------- /tldr-viewer/LoadingCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/LoadingCellViewModel.swift -------------------------------------------------------------------------------- /tldr-viewer/Localizations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Localizations.swift -------------------------------------------------------------------------------- /tldr-viewer/MessageAndButtonCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/MessageAndButtonCell.swift -------------------------------------------------------------------------------- /tldr-viewer/MessageCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/MessageCell.swift -------------------------------------------------------------------------------- /tldr-viewer/NSDateExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/NSDateExtension.swift -------------------------------------------------------------------------------- /tldr-viewer/NoFavouritesCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/NoFavouritesCellViewModel.swift -------------------------------------------------------------------------------- /tldr-viewer/NoResultsCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/NoResultsCellViewModel.swift -------------------------------------------------------------------------------- /tldr-viewer/OldIndexCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/OldIndexCellViewModel.swift -------------------------------------------------------------------------------- /tldr-viewer/Platform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Platform.swift -------------------------------------------------------------------------------- /tldr-viewer/Preferences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Preferences.swift -------------------------------------------------------------------------------- /tldr-viewer/SearchingDataSourceDecorator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/SearchingDataSourceDecorator.swift -------------------------------------------------------------------------------- /tldr-viewer/SectionViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/SectionViewModel.swift -------------------------------------------------------------------------------- /tldr-viewer/SegmentedControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/SegmentedControl.swift -------------------------------------------------------------------------------- /tldr-viewer/SegmentedControlInverse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/SegmentedControlInverse.swift -------------------------------------------------------------------------------- /tldr-viewer/ShortcutHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/ShortcutHandler.swift -------------------------------------------------------------------------------- /tldr-viewer/Shortcuts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Shortcuts.swift -------------------------------------------------------------------------------- /tldr-viewer/SpotlightSearch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/SpotlightSearch.swift -------------------------------------------------------------------------------- /tldr-viewer/SwitchingDataSourceDecorator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/SwitchingDataSourceDecorator.swift -------------------------------------------------------------------------------- /tldr-viewer/TLDRRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/TLDRRequest.swift -------------------------------------------------------------------------------- /tldr-viewer/TLDRResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/TLDRResponse.swift -------------------------------------------------------------------------------- /tldr-viewer/TLDRURLSessionConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/TLDRURLSessionConfiguration.swift -------------------------------------------------------------------------------- /tldr-viewer/TextCellBasic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/TextCellBasic.swift -------------------------------------------------------------------------------- /tldr-viewer/TextCellRightDetail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/TextCellRightDetail.swift -------------------------------------------------------------------------------- /tldr-viewer/TextCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/TextCellViewModel.swift -------------------------------------------------------------------------------- /tldr-viewer/Theme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/Theme.swift -------------------------------------------------------------------------------- /tldr-viewer/WeakCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/WeakCollection.swift -------------------------------------------------------------------------------- /tldr-viewer/en-US.lproj/LocalizableOverride.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/en-US.lproj/LocalizableOverride.strings -------------------------------------------------------------------------------- /tldr-viewer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/style.css -------------------------------------------------------------------------------- /tldr-viewer/tldr-viewer.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mflint/ios-tldr-viewer/HEAD/tldr-viewer/tldr-viewer.entitlements --------------------------------------------------------------------------------