├── .github └── workflows │ ├── deploy.yml │ └── test.yml ├── .gitignore ├── .gitmodules ├── .swiftlint.yml ├── .travis.yml ├── .vscode └── settings.json ├── CHANGELOG.yml ├── Client ├── .gitignore ├── Package.swift ├── README.md ├── Sources │ └── Client │ │ ├── Client.swift │ │ ├── HttpMethod.swift │ │ └── IndieAuth.swift └── Tests │ ├── ClientTests │ ├── ClientTests.swift │ ├── HttpMethodTests.swift │ └── XCTestManifests.swift │ └── LinuxMain.swift ├── External ├── Dequeueable │ ├── Classes │ │ └── UICollectionView+Dequeueable.swift │ └── LICENSE ├── DropdownTitleView │ ├── LICENSE │ └── README.md ├── ImageViewer │ ├── LICENSE │ └── README.md ├── Kanna │ ├── LICENSE │ └── README.md ├── SwiftLint │ └── swiftlint0340 └── WPXMLRPC │ ├── WPBase64Utils.h │ ├── WPBase64Utils.m │ ├── WPStringUtils.h │ ├── WPStringUtils.m │ ├── WPXMLRPC.h │ ├── WPXMLRPCDataCleaner.h │ ├── WPXMLRPCDataCleaner.m │ ├── WPXMLRPCDecoder.h │ ├── WPXMLRPCDecoder.m │ ├── WPXMLRPCDecoderDelegate.h │ ├── WPXMLRPCDecoderDelegate.m │ ├── WPXMLRPCEncoder.h │ └── WPXMLRPCEncoder.m ├── Gemfile ├── Gemfile.lock ├── Generated └── assets-images.swift ├── Icro-Mac ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── 1024.png │ │ ├── 128.png │ │ ├── 16.png │ │ ├── 256-1.png │ │ ├── 256.png │ │ ├── 32-1.png │ │ ├── 32.png │ │ ├── 512-1.png │ │ ├── 512.png │ │ ├── 64.png │ │ └── Contents.json │ └── Contents.json ├── Configurator │ └── ListItemCellConfigurator.swift ├── Icro-Mac.entitlements ├── Icro_Mac.entitlements ├── Info.plist ├── Navigator │ └── ItemNavigator.swift ├── ViewController │ ├── ComposeViewController.swift │ ├── ComposeViewController.xib │ ├── ListViewController.swift │ ├── ListViewController.xib │ ├── SettingsStoryboard.storyboard │ ├── SettingsViewController.swift │ ├── SplitViewController.swift │ └── TabViewController.swift ├── Views │ ├── ImageViewItem.swift │ ├── ImageViewItem.xib │ ├── ListItemCell.swift │ ├── ListItemCell.xib │ ├── LoadMoreCell.swift │ └── LoadMoreCell.xib └── en.lproj │ └── Main.storyboard ├── Icro-Next ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ └── Main.storyboard ├── ContentView.swift ├── Icro_Next.entitlements ├── Info.plist └── Preview Content │ └── Preview Assets.xcassets │ └── Contents.json ├── Icro-Playground.swiftpm ├── .swiftpm │ ├── playgrounds │ │ ├── DocumentThumbnail.plist │ │ └── DocumentThumbnail.png │ └── xcode │ │ ├── package.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ └── martinhartl.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── PlaceholderAppIcon-gift-1024.png │ │ ├── PlaceholderAppIcon-gift-60@2x.png │ │ ├── PlaceholderAppIcon-gift-60@3x.png │ │ ├── PlaceholderAppIcon-gift-76@2x.png │ │ └── PlaceholderAppIcon-gift-83.5@2x.png │ └── Contents.json ├── ContentView.swift ├── MyApp.swift └── Package.swift ├── Icro-Share ├── Icro-Share-Bridging-Header.h ├── Icro-Share.entitlements ├── Info.plist └── ShareViewController.swift ├── Icro.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved ├── xcshareddata │ └── xcschemes │ │ ├── Icro-Share.xcscheme │ │ ├── Icro.xcscheme │ │ └── Screenshots.xcscheme └── xcuserdata │ └── martinhartl.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── Icro.xctestplan ├── Icro.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDETemplateMacros.plist │ ├── IDEWorkspaceChecks.plist │ ├── WorkspaceSettings.xcsettings │ └── swiftpm │ └── Package.resolved ├── Icro ├── AppDelegate.swift ├── AppDelegateComponents │ ├── AppearanceComponent.swift │ ├── DiscoveryCategoryComponent.swift │ ├── NotificationComponent.swift │ └── UserDefaultsMigrationComponent.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-20.png │ │ ├── Icon-20@2x-1.png │ │ ├── Icon-20@2x.png │ │ ├── Icon-20@3x.png │ │ ├── Icon-29.png │ │ ├── Icon-29@2x-1.png │ │ ├── Icon-29@2x.png │ │ ├── Icon-29@3x.png │ │ ├── Icon-40.png │ │ ├── Icon-40@2x-1.png │ │ ├── Icon-40@2x.png │ │ ├── Icon-40@3x.png │ │ ├── Icon-512@2x.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-76.png │ │ ├── Icon-76@2x.png │ │ └── Icon-83.5@2x.png │ ├── Buttons │ │ ├── Contents.json │ │ └── cancel.imageset │ │ │ ├── Contents.json │ │ │ └── cancel.pdf │ ├── Colors-black │ │ ├── Contents.json │ │ ├── black-accentLight.colorset │ │ │ └── Contents.json │ │ ├── black-accentSuperLight.colorset │ │ │ └── Contents.json │ │ ├── black-secondaryTextColor.colorset │ │ │ └── Contents.json │ │ ├── black-separatorColor.colorset │ │ │ └── Contents.json │ │ └── black-textColor.colorset │ │ │ └── Contents.json │ ├── Colors-gray │ │ ├── Contents.json │ │ ├── gray-backgroundColor.colorset │ │ │ └── Contents.json │ │ ├── gray-buttonColor.colorset │ │ │ └── Contents.json │ │ ├── gray-secondaryTextColor.colorset │ │ │ └── Contents.json │ │ └── gray-textColor.colorset │ │ │ └── Contents.json │ ├── Colors │ │ ├── Contents.json │ │ ├── accent.colorset │ │ │ └── Contents.json │ │ ├── accentDark.colorset │ │ │ └── Contents.json │ │ ├── accentLight.colorset │ │ │ └── Contents.json │ │ ├── accentSuperLight.colorset │ │ │ └── Contents.json │ │ ├── blackTransparent.colorset │ │ │ └── Contents.json │ │ ├── main.colorset │ │ │ └── Contents.json │ │ ├── secondaryTextColor.colorset │ │ │ └── Contents.json │ │ ├── separatorColor.colorset │ │ │ └── Contents.json │ │ ├── success.colorset │ │ │ └── Contents.json │ │ ├── textColor.colorset │ │ │ └── Contents.json │ │ ├── whiteTransparent.colorset │ │ │ └── Contents.json │ │ └── yellow.colorset │ │ │ └── Contents.json │ ├── Contents.json │ └── Icons │ │ ├── Contents.json │ │ └── play-button.imageset │ │ ├── Contents.json │ │ └── play-button.pdf ├── Configurator │ ├── EditActionsConfigurator.swift │ └── ProfileViewConfigurator.swift ├── Helper │ ├── AppearanceManager.swift │ ├── CatalystToolbar.swift │ ├── GalleryDataSource+ImageViewer.swift │ ├── MainMenuActionNotifier.swift │ ├── MainMenuBuilder.swift │ ├── UITableView+Keyboard.swift │ ├── UIViewController+ViewVisible.swift │ ├── UserActivities.swift │ └── VerticalTabAwareHostingController.swift ├── Icro-Bridging-Header.h ├── Icro.entitlements ├── Info.plist ├── Navigator │ ├── AppNavigator.swift │ ├── ItemNavigator.swift │ ├── MainNavigator.swift │ └── SettingsNavigator.swift ├── Resources │ └── acknowledgements.json ├── SceneDelegate.swift ├── View │ ├── HTMLCollectionViewCell.swift │ ├── HTMLCollectionViewCell.xib │ ├── HostingCell.swift │ ├── ListView.swift │ ├── LoadMoreTableViewCell.swift │ ├── LoginOverlayView.swift │ ├── LoginView.swift │ ├── ProfileCellView.swift │ ├── Settings │ │ ├── AcknowledgementView.swift │ │ ├── MuteView.swift │ │ └── SettingsContentView.swift │ ├── TipJarView.swift │ └── UserListView.swift ├── ViewController │ ├── ListViewController.swift │ ├── TabBarViewController.swift │ └── VerticalTabsSplitViewController.swift ├── ViewModel │ ├── LoginViewModel.swift │ ├── MuteViewModel.swift │ ├── SettingsViewModel.swift │ ├── TipJarViewModel.swift │ ├── UserListViewModel.swift │ ├── VerticalTabViewModel+Extensions.swift │ └── ViewModelState.swift ├── de.lproj │ └── Localizable.strings └── en.lproj │ ├── LaunchScreen.storyboard │ └── Localizable.strings ├── IcroKit-Mac ├── IcroKit_Mac.h └── Info.plist ├── IcroKit ├── Helper │ ├── CacheStorage.swift │ ├── Date+Ago.swift │ ├── Error.swift │ ├── Functions.swift │ └── GalleryDataSource.swift ├── IcroKit.h ├── Info.plist ├── Manager │ └── DiscoveryCategoryStore.swift ├── Model │ ├── Author.swift │ ├── DiscoveryCategory.swift │ ├── HTMLContent.swift │ ├── Item.swift │ ├── Media.swift │ └── PushRegistration.swift ├── Network │ ├── DiscoveryCategoryResource.swift │ ├── MediaEndpoint.swift │ ├── MicropubEndpoint.swift │ ├── MicropubRequestController.swift │ └── Resource.swift └── ViewModel │ ├── ComposeViewModel.swift │ ├── ListViewModel.swift │ └── ListViewModelListType.swift ├── IcroScreenshotsTests ├── IcroScreenshotsTests.swift └── Info.plist ├── IcroTests ├── HTMLContentTests.swift ├── Info.plist ├── ListViewModelTests.swift ├── Mocks │ └── MockClient.swift └── UserListViewModelTests.swift ├── IcroUIKit ├── Configurator │ └── ItemCellConfigurator.swift ├── Helper │ ├── Font+Settings.swift │ ├── LocalizedString.swift │ ├── UIViewController+Loading.swift │ └── VideoThumbnailImageProvider.swift ├── IcroUIKit.h ├── Info.plist ├── Navigator │ └── ItemNavigatorProtocol.swift ├── View │ ├── ComposeKeyboardInputView.swift │ ├── ItemTableViewCell.swift │ ├── LinkLabel.swift │ └── SingleImageCollectionViewCell.swift └── ViewController │ └── ComposeView.swift ├── InsertLinkView ├── .gitignore ├── .swiftpm │ └── xcode │ │ └── package.xcworkspace │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Package.swift ├── README.md ├── Sources │ └── InsertLinkView │ │ ├── InsertLinkView.swift │ │ └── Resources │ │ ├── de.lproj │ │ └── Localizable.strings │ │ └── en.lproj │ │ └── Localizable.strings └── Tests │ └── InsertLinkViewTests │ └── InsertLinkViewTests.swift ├── LICENSE ├── Pods └── Pods.xcodeproj │ └── xcuserdata │ └── martinhartl.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── README.md ├── Screenshots ├── 1.0 │ ├── iPad1.png │ ├── iPad2.png │ ├── iphonePlus1.png │ ├── iphonePlus2.png │ ├── iphoneX1.png │ ├── iphoneX2.png │ └── iphoneX3.png └── mac-2.1 │ └── 1.png ├── Settings ├── .gitignore ├── Package.swift ├── README.md ├── Sources │ └── Settings │ │ ├── LoginInformation.swift │ │ └── Settings.swift └── Tests │ ├── LinuxMain.swift │ └── SettingsTests │ ├── SettingsTests.swift │ └── XCTestManifests.swift ├── Style ├── .gitignore ├── Package.swift ├── README.md ├── Sources │ └── Style │ │ ├── Color.swift │ │ ├── Font.swift │ │ └── StylePreference.swift └── Tests │ └── StyleTests │ └── StyleTests.swift ├── VerticalTabView ├── .gitignore ├── .swiftpm │ └── xcode │ │ └── xcshareddata │ │ └── xcschemes │ │ └── VerticalTabView.xcscheme ├── Package.swift ├── README.md ├── Sources │ └── VerticalTabView │ │ ├── VerticalTabView.swift │ │ └── VerticalTabViewModel.swift └── Tests │ ├── LinuxMain.swift │ └── VerticalTabViewTests │ ├── VerticalTabViewModelTests.swift │ └── XCTestManifests.swift ├── appversion.xcconfig ├── dangerfile.js ├── discoverCategories └── discoverCategories.json ├── fastlane ├── Fastfile ├── Matchfile ├── README.md ├── Snapfile └── SnapshotHelper.swift ├── icro.sketch └── swiftgen.yml /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/CHANGELOG.yml -------------------------------------------------------------------------------- /Client/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | -------------------------------------------------------------------------------- /Client/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Client/Package.swift -------------------------------------------------------------------------------- /Client/README.md: -------------------------------------------------------------------------------- 1 | # Client 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Client/Sources/Client/Client.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Client/Sources/Client/Client.swift -------------------------------------------------------------------------------- /Client/Sources/Client/HttpMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Client/Sources/Client/HttpMethod.swift -------------------------------------------------------------------------------- /Client/Sources/Client/IndieAuth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Client/Sources/Client/IndieAuth.swift -------------------------------------------------------------------------------- /Client/Tests/ClientTests/ClientTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Client/Tests/ClientTests/ClientTests.swift -------------------------------------------------------------------------------- /Client/Tests/ClientTests/HttpMethodTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Client/Tests/ClientTests/HttpMethodTests.swift -------------------------------------------------------------------------------- /Client/Tests/ClientTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Client/Tests/ClientTests/XCTestManifests.swift -------------------------------------------------------------------------------- /Client/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Client/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /External/Dequeueable/Classes/UICollectionView+Dequeueable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/External/Dequeueable/Classes/UICollectionView+Dequeueable.swift -------------------------------------------------------------------------------- /External/Dequeueable/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/External/Dequeueable/LICENSE -------------------------------------------------------------------------------- /External/DropdownTitleView/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/External/DropdownTitleView/LICENSE -------------------------------------------------------------------------------- /External/DropdownTitleView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/External/DropdownTitleView/README.md -------------------------------------------------------------------------------- /External/ImageViewer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/External/ImageViewer/LICENSE -------------------------------------------------------------------------------- /External/ImageViewer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/External/ImageViewer/README.md -------------------------------------------------------------------------------- /External/Kanna/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/External/Kanna/LICENSE -------------------------------------------------------------------------------- /External/Kanna/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/External/Kanna/README.md -------------------------------------------------------------------------------- /External/SwiftLint/swiftlint0340: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/External/SwiftLint/swiftlint0340 -------------------------------------------------------------------------------- /External/WPXMLRPC/WPBase64Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/External/WPXMLRPC/WPBase64Utils.h -------------------------------------------------------------------------------- /External/WPXMLRPC/WPBase64Utils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/External/WPXMLRPC/WPBase64Utils.m -------------------------------------------------------------------------------- /External/WPXMLRPC/WPStringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/External/WPXMLRPC/WPStringUtils.h -------------------------------------------------------------------------------- /External/WPXMLRPC/WPStringUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/External/WPXMLRPC/WPStringUtils.m -------------------------------------------------------------------------------- /External/WPXMLRPC/WPXMLRPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/External/WPXMLRPC/WPXMLRPC.h -------------------------------------------------------------------------------- /External/WPXMLRPC/WPXMLRPCDataCleaner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/External/WPXMLRPC/WPXMLRPCDataCleaner.h -------------------------------------------------------------------------------- /External/WPXMLRPC/WPXMLRPCDataCleaner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/External/WPXMLRPC/WPXMLRPCDataCleaner.m -------------------------------------------------------------------------------- /External/WPXMLRPC/WPXMLRPCDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/External/WPXMLRPC/WPXMLRPCDecoder.h -------------------------------------------------------------------------------- /External/WPXMLRPC/WPXMLRPCDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/External/WPXMLRPC/WPXMLRPCDecoder.m -------------------------------------------------------------------------------- /External/WPXMLRPC/WPXMLRPCDecoderDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/External/WPXMLRPC/WPXMLRPCDecoderDelegate.h -------------------------------------------------------------------------------- /External/WPXMLRPC/WPXMLRPCDecoderDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/External/WPXMLRPC/WPXMLRPCDecoderDelegate.m -------------------------------------------------------------------------------- /External/WPXMLRPC/WPXMLRPCEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/External/WPXMLRPC/WPXMLRPCEncoder.h -------------------------------------------------------------------------------- /External/WPXMLRPC/WPXMLRPCEncoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/External/WPXMLRPC/WPXMLRPCEncoder.m -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Generated/assets-images.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Generated/assets-images.swift -------------------------------------------------------------------------------- /Icro-Mac/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Mac/AppDelegate.swift -------------------------------------------------------------------------------- /Icro-Mac/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Mac/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /Icro-Mac/Assets.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Mac/Assets.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /Icro-Mac/Assets.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Mac/Assets.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /Icro-Mac/Assets.xcassets/AppIcon.appiconset/256-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Mac/Assets.xcassets/AppIcon.appiconset/256-1.png -------------------------------------------------------------------------------- /Icro-Mac/Assets.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Mac/Assets.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /Icro-Mac/Assets.xcassets/AppIcon.appiconset/32-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Mac/Assets.xcassets/AppIcon.appiconset/32-1.png -------------------------------------------------------------------------------- /Icro-Mac/Assets.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Mac/Assets.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /Icro-Mac/Assets.xcassets/AppIcon.appiconset/512-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Mac/Assets.xcassets/AppIcon.appiconset/512-1.png -------------------------------------------------------------------------------- /Icro-Mac/Assets.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Mac/Assets.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /Icro-Mac/Assets.xcassets/AppIcon.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Mac/Assets.xcassets/AppIcon.appiconset/64.png -------------------------------------------------------------------------------- /Icro-Mac/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Mac/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Icro-Mac/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Mac/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Icro-Mac/Configurator/ListItemCellConfigurator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Mac/Configurator/ListItemCellConfigurator.swift -------------------------------------------------------------------------------- /Icro-Mac/Icro-Mac.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Mac/Icro-Mac.entitlements -------------------------------------------------------------------------------- /Icro-Mac/Icro_Mac.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Mac/Icro_Mac.entitlements -------------------------------------------------------------------------------- /Icro-Mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Mac/Info.plist -------------------------------------------------------------------------------- /Icro-Mac/Navigator/ItemNavigator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Mac/Navigator/ItemNavigator.swift -------------------------------------------------------------------------------- /Icro-Mac/ViewController/ComposeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Mac/ViewController/ComposeViewController.swift -------------------------------------------------------------------------------- /Icro-Mac/ViewController/ComposeViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Mac/ViewController/ComposeViewController.xib -------------------------------------------------------------------------------- /Icro-Mac/ViewController/ListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Mac/ViewController/ListViewController.swift -------------------------------------------------------------------------------- /Icro-Mac/ViewController/ListViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Mac/ViewController/ListViewController.xib -------------------------------------------------------------------------------- /Icro-Mac/ViewController/SettingsStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Mac/ViewController/SettingsStoryboard.storyboard -------------------------------------------------------------------------------- /Icro-Mac/ViewController/SettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Mac/ViewController/SettingsViewController.swift -------------------------------------------------------------------------------- /Icro-Mac/ViewController/SplitViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Mac/ViewController/SplitViewController.swift -------------------------------------------------------------------------------- /Icro-Mac/ViewController/TabViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Mac/ViewController/TabViewController.swift -------------------------------------------------------------------------------- /Icro-Mac/Views/ImageViewItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Mac/Views/ImageViewItem.swift -------------------------------------------------------------------------------- /Icro-Mac/Views/ImageViewItem.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Mac/Views/ImageViewItem.xib -------------------------------------------------------------------------------- /Icro-Mac/Views/ListItemCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Mac/Views/ListItemCell.swift -------------------------------------------------------------------------------- /Icro-Mac/Views/ListItemCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Mac/Views/ListItemCell.xib -------------------------------------------------------------------------------- /Icro-Mac/Views/LoadMoreCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Mac/Views/LoadMoreCell.swift -------------------------------------------------------------------------------- /Icro-Mac/Views/LoadMoreCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Mac/Views/LoadMoreCell.xib -------------------------------------------------------------------------------- /Icro-Mac/en.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Mac/en.lproj/Main.storyboard -------------------------------------------------------------------------------- /Icro-Next/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Next/AppDelegate.swift -------------------------------------------------------------------------------- /Icro-Next/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Next/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Icro-Next/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Next/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Icro-Next/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Next/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Icro-Next/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Next/ContentView.swift -------------------------------------------------------------------------------- /Icro-Next/Icro_Next.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Next/Icro_Next.entitlements -------------------------------------------------------------------------------- /Icro-Next/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Next/Info.plist -------------------------------------------------------------------------------- /Icro-Next/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Next/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Icro-Playground.swiftpm/.swiftpm/playgrounds/DocumentThumbnail.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Playground.swiftpm/.swiftpm/playgrounds/DocumentThumbnail.plist -------------------------------------------------------------------------------- /Icro-Playground.swiftpm/.swiftpm/playgrounds/DocumentThumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Playground.swiftpm/.swiftpm/playgrounds/DocumentThumbnail.png -------------------------------------------------------------------------------- /Icro-Playground.swiftpm/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Playground.swiftpm/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Icro-Playground.swiftpm/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Playground.swiftpm/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Icro-Playground.swiftpm/.swiftpm/xcode/xcuserdata/martinhartl.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Playground.swiftpm/.swiftpm/xcode/xcuserdata/martinhartl.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Icro-Playground.swiftpm/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Playground.swiftpm/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Icro-Playground.swiftpm/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Playground.swiftpm/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Icro-Playground.swiftpm/Assets.xcassets/AppIcon.appiconset/PlaceholderAppIcon-gift-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Playground.swiftpm/Assets.xcassets/AppIcon.appiconset/PlaceholderAppIcon-gift-1024.png -------------------------------------------------------------------------------- /Icro-Playground.swiftpm/Assets.xcassets/AppIcon.appiconset/PlaceholderAppIcon-gift-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Playground.swiftpm/Assets.xcassets/AppIcon.appiconset/PlaceholderAppIcon-gift-60@2x.png -------------------------------------------------------------------------------- /Icro-Playground.swiftpm/Assets.xcassets/AppIcon.appiconset/PlaceholderAppIcon-gift-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Playground.swiftpm/Assets.xcassets/AppIcon.appiconset/PlaceholderAppIcon-gift-60@3x.png -------------------------------------------------------------------------------- /Icro-Playground.swiftpm/Assets.xcassets/AppIcon.appiconset/PlaceholderAppIcon-gift-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Playground.swiftpm/Assets.xcassets/AppIcon.appiconset/PlaceholderAppIcon-gift-76@2x.png -------------------------------------------------------------------------------- /Icro-Playground.swiftpm/Assets.xcassets/AppIcon.appiconset/PlaceholderAppIcon-gift-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Playground.swiftpm/Assets.xcassets/AppIcon.appiconset/PlaceholderAppIcon-gift-83.5@2x.png -------------------------------------------------------------------------------- /Icro-Playground.swiftpm/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Playground.swiftpm/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Icro-Playground.swiftpm/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Playground.swiftpm/ContentView.swift -------------------------------------------------------------------------------- /Icro-Playground.swiftpm/MyApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Playground.swiftpm/MyApp.swift -------------------------------------------------------------------------------- /Icro-Playground.swiftpm/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Playground.swiftpm/Package.swift -------------------------------------------------------------------------------- /Icro-Share/Icro-Share-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Share/Icro-Share-Bridging-Header.h -------------------------------------------------------------------------------- /Icro-Share/Icro-Share.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Share/Icro-Share.entitlements -------------------------------------------------------------------------------- /Icro-Share/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Share/Info.plist -------------------------------------------------------------------------------- /Icro-Share/ShareViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro-Share/ShareViewController.swift -------------------------------------------------------------------------------- /Icro.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Icro.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Icro.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Icro.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Icro.xcodeproj/xcshareddata/xcschemes/Icro-Share.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro.xcodeproj/xcshareddata/xcschemes/Icro-Share.xcscheme -------------------------------------------------------------------------------- /Icro.xcodeproj/xcshareddata/xcschemes/Icro.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro.xcodeproj/xcshareddata/xcschemes/Icro.xcscheme -------------------------------------------------------------------------------- /Icro.xcodeproj/xcshareddata/xcschemes/Screenshots.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro.xcodeproj/xcshareddata/xcschemes/Screenshots.xcscheme -------------------------------------------------------------------------------- /Icro.xcodeproj/xcuserdata/martinhartl.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro.xcodeproj/xcuserdata/martinhartl.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Icro.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro.xctestplan -------------------------------------------------------------------------------- /Icro.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Icro.xcworkspace/xcshareddata/IDETemplateMacros.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro.xcworkspace/xcshareddata/IDETemplateMacros.plist -------------------------------------------------------------------------------- /Icro.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Icro.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Icro.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Icro/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/AppDelegate.swift -------------------------------------------------------------------------------- /Icro/AppDelegateComponents/AppearanceComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/AppDelegateComponents/AppearanceComponent.swift -------------------------------------------------------------------------------- /Icro/AppDelegateComponents/DiscoveryCategoryComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/AppDelegateComponents/DiscoveryCategoryComponent.swift -------------------------------------------------------------------------------- /Icro/AppDelegateComponents/NotificationComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/AppDelegateComponents/NotificationComponent.swift -------------------------------------------------------------------------------- /Icro/AppDelegateComponents/UserDefaultsMigrationComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/AppDelegateComponents/UserDefaultsMigrationComponent.swift -------------------------------------------------------------------------------- /Icro/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Icro/Assets.xcassets/AppIcon.appiconset/Icon-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/AppIcon.appiconset/Icon-20.png -------------------------------------------------------------------------------- /Icro/Assets.xcassets/AppIcon.appiconset/Icon-20@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/AppIcon.appiconset/Icon-20@2x-1.png -------------------------------------------------------------------------------- /Icro/Assets.xcassets/AppIcon.appiconset/Icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/AppIcon.appiconset/Icon-20@2x.png -------------------------------------------------------------------------------- /Icro/Assets.xcassets/AppIcon.appiconset/Icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/AppIcon.appiconset/Icon-20@3x.png -------------------------------------------------------------------------------- /Icro/Assets.xcassets/AppIcon.appiconset/Icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/AppIcon.appiconset/Icon-29.png -------------------------------------------------------------------------------- /Icro/Assets.xcassets/AppIcon.appiconset/Icon-29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/AppIcon.appiconset/Icon-29@2x-1.png -------------------------------------------------------------------------------- /Icro/Assets.xcassets/AppIcon.appiconset/Icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/AppIcon.appiconset/Icon-29@2x.png -------------------------------------------------------------------------------- /Icro/Assets.xcassets/AppIcon.appiconset/Icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/AppIcon.appiconset/Icon-29@3x.png -------------------------------------------------------------------------------- /Icro/Assets.xcassets/AppIcon.appiconset/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/AppIcon.appiconset/Icon-40.png -------------------------------------------------------------------------------- /Icro/Assets.xcassets/AppIcon.appiconset/Icon-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/AppIcon.appiconset/Icon-40@2x-1.png -------------------------------------------------------------------------------- /Icro/Assets.xcassets/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /Icro/Assets.xcassets/AppIcon.appiconset/Icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/AppIcon.appiconset/Icon-40@3x.png -------------------------------------------------------------------------------- /Icro/Assets.xcassets/AppIcon.appiconset/Icon-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/AppIcon.appiconset/Icon-512@2x.png -------------------------------------------------------------------------------- /Icro/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /Icro/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /Icro/Assets.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /Icro/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /Icro/Assets.xcassets/AppIcon.appiconset/Icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/AppIcon.appiconset/Icon-83.5@2x.png -------------------------------------------------------------------------------- /Icro/Assets.xcassets/Buttons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/Buttons/Contents.json -------------------------------------------------------------------------------- /Icro/Assets.xcassets/Buttons/cancel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/Buttons/cancel.imageset/Contents.json -------------------------------------------------------------------------------- /Icro/Assets.xcassets/Buttons/cancel.imageset/cancel.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/Buttons/cancel.imageset/cancel.pdf -------------------------------------------------------------------------------- /Icro/Assets.xcassets/Colors-black/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/Colors-black/Contents.json -------------------------------------------------------------------------------- /Icro/Assets.xcassets/Colors-black/black-accentLight.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/Colors-black/black-accentLight.colorset/Contents.json -------------------------------------------------------------------------------- /Icro/Assets.xcassets/Colors-black/black-accentSuperLight.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/Colors-black/black-accentSuperLight.colorset/Contents.json -------------------------------------------------------------------------------- /Icro/Assets.xcassets/Colors-black/black-secondaryTextColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/Colors-black/black-secondaryTextColor.colorset/Contents.json -------------------------------------------------------------------------------- /Icro/Assets.xcassets/Colors-black/black-separatorColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/Colors-black/black-separatorColor.colorset/Contents.json -------------------------------------------------------------------------------- /Icro/Assets.xcassets/Colors-black/black-textColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/Colors-black/black-textColor.colorset/Contents.json -------------------------------------------------------------------------------- /Icro/Assets.xcassets/Colors-gray/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/Colors-gray/Contents.json -------------------------------------------------------------------------------- /Icro/Assets.xcassets/Colors-gray/gray-backgroundColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/Colors-gray/gray-backgroundColor.colorset/Contents.json -------------------------------------------------------------------------------- /Icro/Assets.xcassets/Colors-gray/gray-buttonColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/Colors-gray/gray-buttonColor.colorset/Contents.json -------------------------------------------------------------------------------- /Icro/Assets.xcassets/Colors-gray/gray-secondaryTextColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/Colors-gray/gray-secondaryTextColor.colorset/Contents.json -------------------------------------------------------------------------------- /Icro/Assets.xcassets/Colors-gray/gray-textColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/Colors-gray/gray-textColor.colorset/Contents.json -------------------------------------------------------------------------------- /Icro/Assets.xcassets/Colors/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/Colors/Contents.json -------------------------------------------------------------------------------- /Icro/Assets.xcassets/Colors/accent.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/Colors/accent.colorset/Contents.json -------------------------------------------------------------------------------- /Icro/Assets.xcassets/Colors/accentDark.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/Colors/accentDark.colorset/Contents.json -------------------------------------------------------------------------------- /Icro/Assets.xcassets/Colors/accentLight.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/Colors/accentLight.colorset/Contents.json -------------------------------------------------------------------------------- /Icro/Assets.xcassets/Colors/accentSuperLight.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/Colors/accentSuperLight.colorset/Contents.json -------------------------------------------------------------------------------- /Icro/Assets.xcassets/Colors/blackTransparent.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/Colors/blackTransparent.colorset/Contents.json -------------------------------------------------------------------------------- /Icro/Assets.xcassets/Colors/main.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/Colors/main.colorset/Contents.json -------------------------------------------------------------------------------- /Icro/Assets.xcassets/Colors/secondaryTextColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/Colors/secondaryTextColor.colorset/Contents.json -------------------------------------------------------------------------------- /Icro/Assets.xcassets/Colors/separatorColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/Colors/separatorColor.colorset/Contents.json -------------------------------------------------------------------------------- /Icro/Assets.xcassets/Colors/success.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/Colors/success.colorset/Contents.json -------------------------------------------------------------------------------- /Icro/Assets.xcassets/Colors/textColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/Colors/textColor.colorset/Contents.json -------------------------------------------------------------------------------- /Icro/Assets.xcassets/Colors/whiteTransparent.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/Colors/whiteTransparent.colorset/Contents.json -------------------------------------------------------------------------------- /Icro/Assets.xcassets/Colors/yellow.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/Colors/yellow.colorset/Contents.json -------------------------------------------------------------------------------- /Icro/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Icro/Assets.xcassets/Icons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/Icons/Contents.json -------------------------------------------------------------------------------- /Icro/Assets.xcassets/Icons/play-button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/Icons/play-button.imageset/Contents.json -------------------------------------------------------------------------------- /Icro/Assets.xcassets/Icons/play-button.imageset/play-button.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Assets.xcassets/Icons/play-button.imageset/play-button.pdf -------------------------------------------------------------------------------- /Icro/Configurator/EditActionsConfigurator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Configurator/EditActionsConfigurator.swift -------------------------------------------------------------------------------- /Icro/Configurator/ProfileViewConfigurator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Configurator/ProfileViewConfigurator.swift -------------------------------------------------------------------------------- /Icro/Helper/AppearanceManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Helper/AppearanceManager.swift -------------------------------------------------------------------------------- /Icro/Helper/CatalystToolbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Helper/CatalystToolbar.swift -------------------------------------------------------------------------------- /Icro/Helper/GalleryDataSource+ImageViewer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Helper/GalleryDataSource+ImageViewer.swift -------------------------------------------------------------------------------- /Icro/Helper/MainMenuActionNotifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Helper/MainMenuActionNotifier.swift -------------------------------------------------------------------------------- /Icro/Helper/MainMenuBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Helper/MainMenuBuilder.swift -------------------------------------------------------------------------------- /Icro/Helper/UITableView+Keyboard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Helper/UITableView+Keyboard.swift -------------------------------------------------------------------------------- /Icro/Helper/UIViewController+ViewVisible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Helper/UIViewController+ViewVisible.swift -------------------------------------------------------------------------------- /Icro/Helper/UserActivities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Helper/UserActivities.swift -------------------------------------------------------------------------------- /Icro/Helper/VerticalTabAwareHostingController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Helper/VerticalTabAwareHostingController.swift -------------------------------------------------------------------------------- /Icro/Icro-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Icro-Bridging-Header.h -------------------------------------------------------------------------------- /Icro/Icro.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Icro.entitlements -------------------------------------------------------------------------------- /Icro/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Info.plist -------------------------------------------------------------------------------- /Icro/Navigator/AppNavigator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Navigator/AppNavigator.swift -------------------------------------------------------------------------------- /Icro/Navigator/ItemNavigator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Navigator/ItemNavigator.swift -------------------------------------------------------------------------------- /Icro/Navigator/MainNavigator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Navigator/MainNavigator.swift -------------------------------------------------------------------------------- /Icro/Navigator/SettingsNavigator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Navigator/SettingsNavigator.swift -------------------------------------------------------------------------------- /Icro/Resources/acknowledgements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/Resources/acknowledgements.json -------------------------------------------------------------------------------- /Icro/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/SceneDelegate.swift -------------------------------------------------------------------------------- /Icro/View/HTMLCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/View/HTMLCollectionViewCell.swift -------------------------------------------------------------------------------- /Icro/View/HTMLCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/View/HTMLCollectionViewCell.xib -------------------------------------------------------------------------------- /Icro/View/HostingCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/View/HostingCell.swift -------------------------------------------------------------------------------- /Icro/View/ListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/View/ListView.swift -------------------------------------------------------------------------------- /Icro/View/LoadMoreTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/View/LoadMoreTableViewCell.swift -------------------------------------------------------------------------------- /Icro/View/LoginOverlayView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/View/LoginOverlayView.swift -------------------------------------------------------------------------------- /Icro/View/LoginView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/View/LoginView.swift -------------------------------------------------------------------------------- /Icro/View/ProfileCellView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/View/ProfileCellView.swift -------------------------------------------------------------------------------- /Icro/View/Settings/AcknowledgementView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/View/Settings/AcknowledgementView.swift -------------------------------------------------------------------------------- /Icro/View/Settings/MuteView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/View/Settings/MuteView.swift -------------------------------------------------------------------------------- /Icro/View/Settings/SettingsContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/View/Settings/SettingsContentView.swift -------------------------------------------------------------------------------- /Icro/View/TipJarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/View/TipJarView.swift -------------------------------------------------------------------------------- /Icro/View/UserListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/View/UserListView.swift -------------------------------------------------------------------------------- /Icro/ViewController/ListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/ViewController/ListViewController.swift -------------------------------------------------------------------------------- /Icro/ViewController/TabBarViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/ViewController/TabBarViewController.swift -------------------------------------------------------------------------------- /Icro/ViewController/VerticalTabsSplitViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/ViewController/VerticalTabsSplitViewController.swift -------------------------------------------------------------------------------- /Icro/ViewModel/LoginViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/ViewModel/LoginViewModel.swift -------------------------------------------------------------------------------- /Icro/ViewModel/MuteViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/ViewModel/MuteViewModel.swift -------------------------------------------------------------------------------- /Icro/ViewModel/SettingsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/ViewModel/SettingsViewModel.swift -------------------------------------------------------------------------------- /Icro/ViewModel/TipJarViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/ViewModel/TipJarViewModel.swift -------------------------------------------------------------------------------- /Icro/ViewModel/UserListViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/ViewModel/UserListViewModel.swift -------------------------------------------------------------------------------- /Icro/ViewModel/VerticalTabViewModel+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/ViewModel/VerticalTabViewModel+Extensions.swift -------------------------------------------------------------------------------- /Icro/ViewModel/ViewModelState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/ViewModel/ViewModelState.swift -------------------------------------------------------------------------------- /Icro/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Icro/en.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/en.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Icro/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Icro/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /IcroKit-Mac/IcroKit_Mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroKit-Mac/IcroKit_Mac.h -------------------------------------------------------------------------------- /IcroKit-Mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroKit-Mac/Info.plist -------------------------------------------------------------------------------- /IcroKit/Helper/CacheStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroKit/Helper/CacheStorage.swift -------------------------------------------------------------------------------- /IcroKit/Helper/Date+Ago.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroKit/Helper/Date+Ago.swift -------------------------------------------------------------------------------- /IcroKit/Helper/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroKit/Helper/Error.swift -------------------------------------------------------------------------------- /IcroKit/Helper/Functions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroKit/Helper/Functions.swift -------------------------------------------------------------------------------- /IcroKit/Helper/GalleryDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroKit/Helper/GalleryDataSource.swift -------------------------------------------------------------------------------- /IcroKit/IcroKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroKit/IcroKit.h -------------------------------------------------------------------------------- /IcroKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroKit/Info.plist -------------------------------------------------------------------------------- /IcroKit/Manager/DiscoveryCategoryStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroKit/Manager/DiscoveryCategoryStore.swift -------------------------------------------------------------------------------- /IcroKit/Model/Author.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroKit/Model/Author.swift -------------------------------------------------------------------------------- /IcroKit/Model/DiscoveryCategory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroKit/Model/DiscoveryCategory.swift -------------------------------------------------------------------------------- /IcroKit/Model/HTMLContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroKit/Model/HTMLContent.swift -------------------------------------------------------------------------------- /IcroKit/Model/Item.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroKit/Model/Item.swift -------------------------------------------------------------------------------- /IcroKit/Model/Media.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroKit/Model/Media.swift -------------------------------------------------------------------------------- /IcroKit/Model/PushRegistration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroKit/Model/PushRegistration.swift -------------------------------------------------------------------------------- /IcroKit/Network/DiscoveryCategoryResource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroKit/Network/DiscoveryCategoryResource.swift -------------------------------------------------------------------------------- /IcroKit/Network/MediaEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroKit/Network/MediaEndpoint.swift -------------------------------------------------------------------------------- /IcroKit/Network/MicropubEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroKit/Network/MicropubEndpoint.swift -------------------------------------------------------------------------------- /IcroKit/Network/MicropubRequestController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroKit/Network/MicropubRequestController.swift -------------------------------------------------------------------------------- /IcroKit/Network/Resource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroKit/Network/Resource.swift -------------------------------------------------------------------------------- /IcroKit/ViewModel/ComposeViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroKit/ViewModel/ComposeViewModel.swift -------------------------------------------------------------------------------- /IcroKit/ViewModel/ListViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroKit/ViewModel/ListViewModel.swift -------------------------------------------------------------------------------- /IcroKit/ViewModel/ListViewModelListType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroKit/ViewModel/ListViewModelListType.swift -------------------------------------------------------------------------------- /IcroScreenshotsTests/IcroScreenshotsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroScreenshotsTests/IcroScreenshotsTests.swift -------------------------------------------------------------------------------- /IcroScreenshotsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroScreenshotsTests/Info.plist -------------------------------------------------------------------------------- /IcroTests/HTMLContentTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroTests/HTMLContentTests.swift -------------------------------------------------------------------------------- /IcroTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroTests/Info.plist -------------------------------------------------------------------------------- /IcroTests/ListViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroTests/ListViewModelTests.swift -------------------------------------------------------------------------------- /IcroTests/Mocks/MockClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroTests/Mocks/MockClient.swift -------------------------------------------------------------------------------- /IcroTests/UserListViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroTests/UserListViewModelTests.swift -------------------------------------------------------------------------------- /IcroUIKit/Configurator/ItemCellConfigurator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroUIKit/Configurator/ItemCellConfigurator.swift -------------------------------------------------------------------------------- /IcroUIKit/Helper/Font+Settings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroUIKit/Helper/Font+Settings.swift -------------------------------------------------------------------------------- /IcroUIKit/Helper/LocalizedString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroUIKit/Helper/LocalizedString.swift -------------------------------------------------------------------------------- /IcroUIKit/Helper/UIViewController+Loading.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroUIKit/Helper/UIViewController+Loading.swift -------------------------------------------------------------------------------- /IcroUIKit/Helper/VideoThumbnailImageProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroUIKit/Helper/VideoThumbnailImageProvider.swift -------------------------------------------------------------------------------- /IcroUIKit/IcroUIKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroUIKit/IcroUIKit.h -------------------------------------------------------------------------------- /IcroUIKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroUIKit/Info.plist -------------------------------------------------------------------------------- /IcroUIKit/Navigator/ItemNavigatorProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroUIKit/Navigator/ItemNavigatorProtocol.swift -------------------------------------------------------------------------------- /IcroUIKit/View/ComposeKeyboardInputView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroUIKit/View/ComposeKeyboardInputView.swift -------------------------------------------------------------------------------- /IcroUIKit/View/ItemTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroUIKit/View/ItemTableViewCell.swift -------------------------------------------------------------------------------- /IcroUIKit/View/LinkLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroUIKit/View/LinkLabel.swift -------------------------------------------------------------------------------- /IcroUIKit/View/SingleImageCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroUIKit/View/SingleImageCollectionViewCell.swift -------------------------------------------------------------------------------- /IcroUIKit/ViewController/ComposeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/IcroUIKit/ViewController/ComposeView.swift -------------------------------------------------------------------------------- /InsertLinkView/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/InsertLinkView/.gitignore -------------------------------------------------------------------------------- /InsertLinkView/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/InsertLinkView/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /InsertLinkView/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/InsertLinkView/Package.swift -------------------------------------------------------------------------------- /InsertLinkView/README.md: -------------------------------------------------------------------------------- 1 | # InsertLinkView 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /InsertLinkView/Sources/InsertLinkView/InsertLinkView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/InsertLinkView/Sources/InsertLinkView/InsertLinkView.swift -------------------------------------------------------------------------------- /InsertLinkView/Sources/InsertLinkView/Resources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/InsertLinkView/Sources/InsertLinkView/Resources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /InsertLinkView/Sources/InsertLinkView/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/InsertLinkView/Sources/InsertLinkView/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /InsertLinkView/Tests/InsertLinkViewTests/InsertLinkViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/InsertLinkView/Tests/InsertLinkViewTests/InsertLinkViewTests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/LICENSE -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/martinhartl.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Pods/Pods.xcodeproj/xcuserdata/martinhartl.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/1.0/iPad1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Screenshots/1.0/iPad1.png -------------------------------------------------------------------------------- /Screenshots/1.0/iPad2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Screenshots/1.0/iPad2.png -------------------------------------------------------------------------------- /Screenshots/1.0/iphonePlus1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Screenshots/1.0/iphonePlus1.png -------------------------------------------------------------------------------- /Screenshots/1.0/iphonePlus2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Screenshots/1.0/iphonePlus2.png -------------------------------------------------------------------------------- /Screenshots/1.0/iphoneX1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Screenshots/1.0/iphoneX1.png -------------------------------------------------------------------------------- /Screenshots/1.0/iphoneX2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Screenshots/1.0/iphoneX2.png -------------------------------------------------------------------------------- /Screenshots/1.0/iphoneX3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Screenshots/1.0/iphoneX3.png -------------------------------------------------------------------------------- /Screenshots/mac-2.1/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Screenshots/mac-2.1/1.png -------------------------------------------------------------------------------- /Settings/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | -------------------------------------------------------------------------------- /Settings/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Settings/Package.swift -------------------------------------------------------------------------------- /Settings/README.md: -------------------------------------------------------------------------------- 1 | # Settings 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Settings/Sources/Settings/LoginInformation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Settings/Sources/Settings/LoginInformation.swift -------------------------------------------------------------------------------- /Settings/Sources/Settings/Settings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Settings/Sources/Settings/Settings.swift -------------------------------------------------------------------------------- /Settings/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Settings/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Settings/Tests/SettingsTests/SettingsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Settings/Tests/SettingsTests/SettingsTests.swift -------------------------------------------------------------------------------- /Settings/Tests/SettingsTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Settings/Tests/SettingsTests/XCTestManifests.swift -------------------------------------------------------------------------------- /Style/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Style/.gitignore -------------------------------------------------------------------------------- /Style/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Style/Package.swift -------------------------------------------------------------------------------- /Style/README.md: -------------------------------------------------------------------------------- 1 | # Style 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /Style/Sources/Style/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Style/Sources/Style/Color.swift -------------------------------------------------------------------------------- /Style/Sources/Style/Font.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Style/Sources/Style/Font.swift -------------------------------------------------------------------------------- /Style/Sources/Style/StylePreference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Style/Sources/Style/StylePreference.swift -------------------------------------------------------------------------------- /Style/Tests/StyleTests/StyleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/Style/Tests/StyleTests/StyleTests.swift -------------------------------------------------------------------------------- /VerticalTabView/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | -------------------------------------------------------------------------------- /VerticalTabView/.swiftpm/xcode/xcshareddata/xcschemes/VerticalTabView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/VerticalTabView/.swiftpm/xcode/xcshareddata/xcschemes/VerticalTabView.xcscheme -------------------------------------------------------------------------------- /VerticalTabView/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/VerticalTabView/Package.swift -------------------------------------------------------------------------------- /VerticalTabView/README.md: -------------------------------------------------------------------------------- 1 | # VerticalTabView 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /VerticalTabView/Sources/VerticalTabView/VerticalTabView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/VerticalTabView/Sources/VerticalTabView/VerticalTabView.swift -------------------------------------------------------------------------------- /VerticalTabView/Sources/VerticalTabView/VerticalTabViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/VerticalTabView/Sources/VerticalTabView/VerticalTabViewModel.swift -------------------------------------------------------------------------------- /VerticalTabView/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/VerticalTabView/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /VerticalTabView/Tests/VerticalTabViewTests/VerticalTabViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/VerticalTabView/Tests/VerticalTabViewTests/VerticalTabViewModelTests.swift -------------------------------------------------------------------------------- /VerticalTabView/Tests/VerticalTabViewTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/VerticalTabView/Tests/VerticalTabViewTests/XCTestManifests.swift -------------------------------------------------------------------------------- /appversion.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/appversion.xcconfig -------------------------------------------------------------------------------- /dangerfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/dangerfile.js -------------------------------------------------------------------------------- /discoverCategories/discoverCategories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/discoverCategories/discoverCategories.json -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Matchfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/fastlane/Matchfile -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/fastlane/README.md -------------------------------------------------------------------------------- /fastlane/Snapfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/fastlane/Snapfile -------------------------------------------------------------------------------- /fastlane/SnapshotHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/fastlane/SnapshotHelper.swift -------------------------------------------------------------------------------- /icro.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/icro.sketch -------------------------------------------------------------------------------- /swiftgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartlco/Icro/HEAD/swiftgen.yml --------------------------------------------------------------------------------