├── .gitattributes ├── .github └── workflows │ └── test.yml ├── .gitignore ├── .gitmodules ├── .swiftlint.yml ├── Gemfile ├── Gemfile.lock ├── Kantan-Keyboard ├── Info.plist ├── KanjiCollectionViewCell.swift ├── KanjiCollectionViewCell.xib ├── KeyboardButton.swift ├── KeyboardViewController.swift ├── Model │ ├── DicKanji.swift │ ├── Kanji.swift │ ├── KanjiRadicalRelation.swift │ ├── KanjisGroup.swift │ └── Radical.swift ├── RadicalsDictionary.swift ├── kanjidic.sqlite.db └── radk.sqlite.db ├── Kantan-Manga.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ ├── Kantan-Keyboard.xcscheme │ └── MangaReader.xcscheme ├── Kantan-MangaIntegrationTests ├── CoreDataManagerIntegrationTests.swift └── Info.plist ├── LICENSE ├── MangaReader-Bridging-Header.h ├── MangaReader ├── Anki │ ├── AnkiConfig.swift │ ├── AnkiConfigManager.swift │ ├── AnkiConnect │ │ ├── AnkiConnectError.swift │ │ ├── AnkiConnectManager.swift │ │ ├── AnkiConnectRequest.swift │ │ ├── AnkiConnectResponse.swift │ │ ├── AnkiSyncCardOperation.swift │ │ └── CreateNoteRequest.swift │ └── LocalNetworkAuthorization.swift ├── AppDelegate.swift ├── Assets.xcassets │ ├── Colors │ │ ├── Contents.json │ │ ├── JapanRed.colorset │ │ │ └── Contents.json │ │ ├── LibraryBackground.colorset │ │ │ └── Contents.json │ │ ├── LightBlue.colorset │ │ │ └── Contents.json │ │ └── Purple.colorset │ │ │ └── Contents.json │ ├── Add manga │ │ ├── Contents.json │ │ └── bigAdd.imageset │ │ │ ├── Contents.json │ │ │ └── bigAdd.png │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-7-8-@3x~iphone.png │ │ ├── Icon-Settings-@2x~iphone.png │ │ ├── Icon-Settings-@3x~iphone.png │ │ ├── Icon-Spotlight-7-8~ipad.png │ │ ├── Icon-Spotlight-@2x~iphone.png │ │ ├── Icon-Spotlight-@3x~iphone-1.png │ │ ├── Icon-Spotlight-@3x~iphone.png │ │ ├── Icon-other-@2x~iphone.png │ │ ├── ios_marketing1024x1024.png │ │ ├── ipad_app76x76.png │ │ ├── ipad_app76x76@2x.png │ │ ├── ipad_notification20x20.png │ │ ├── ipad_notification20x20@2x.png │ │ ├── ipad_pro_app83.5x83.5@2x.png │ │ ├── ipad_settings29x29.png │ │ ├── ipad_settings29x29@2x.png │ │ ├── ipad_spotlight40x40.png │ │ └── ipad_spotlight40x40@2x.png │ ├── Contents.json │ ├── Library │ │ ├── Contents.json │ │ └── add.imageset │ │ │ ├── Contents.json │ │ │ └── add@x3.png │ ├── Onboarding │ │ ├── Contents.json │ │ ├── demo-bundle.imageset │ │ │ ├── Contents.json │ │ │ └── bundle.png │ │ ├── demo-ocr.imageset │ │ │ ├── Contents.json │ │ │ └── ocrDemo.png │ │ ├── k1.imageset │ │ │ ├── Contents.json │ │ │ └── k1.png │ │ ├── k2.imageset │ │ │ ├── Contents.json │ │ │ └── k2.png │ │ ├── k3.imageset │ │ │ ├── Contents.json │ │ │ └── k3.png │ │ └── k4.imageset │ │ │ ├── Contents.json │ │ │ └── k4.png │ ├── Page │ │ ├── Contents.json │ │ ├── gradientLtR.imageset │ │ │ ├── Contents.json │ │ │ └── gradient.png │ │ └── gradientRtL.imageset │ │ │ ├── Contents.json │ │ │ └── gradient2.png │ └── Settings │ │ ├── Contents.json │ │ └── app-icon.imageset │ │ ├── Contents.json │ │ └── iTunesArtwork.png ├── Base.lproj │ └── LaunchScreen.storyboard ├── Coordinators │ ├── AddMangasCoordinator.swift │ ├── AppCoordinator.swift │ ├── ConfigureAnkiCoordinator.swift │ ├── Coordinator.swift │ ├── DictionariesCoordinator.swift │ ├── EditSentenceCoordinator.swift │ ├── LibraryCoordinator.swift │ ├── Navigable.swift │ ├── SentencesCoordinator.swift │ ├── SettingsCoordinator.swift │ ├── SyncSentencesCoordinator.swift │ └── ViewMangaCoordinator.swift ├── Data Source │ ├── MangaDataSource.swift │ └── MangaDataSourceable.swift ├── File Extraction │ ├── CBRReader.swift │ ├── CBZReader.swift │ ├── GenericReader.swift │ ├── PDFReader.swift │ └── Reader.swift ├── GoogleService-Info.plist ├── Info.plist ├── Mecab │ ├── Token.swift │ ├── Tokenizer.swift │ └── WordParser.swift ├── Model │ ├── CoreDataManageable.swift │ ├── CoreDataManager.swift │ ├── Dictionary │ │ ├── CompoundDictionary.swift │ │ ├── DB │ │ │ ├── DBMigrator.swift │ │ │ ├── Dictionary.swift │ │ │ ├── Kanji.swift │ │ │ ├── KanjiMeta.swift │ │ │ ├── Search │ │ │ │ ├── KanjiMetaSearchResult.swift │ │ │ │ ├── KanjiSearchResult.swift │ │ │ │ ├── SearchTermResult.swift │ │ │ │ └── TermMetaSearchResult.swift │ │ │ ├── Tag.swift │ │ │ ├── Term.swift │ │ │ └── TermMeta.swift │ │ ├── DatabaseUtils.swift │ │ ├── Decode │ │ │ ├── DictionaryIndex.swift │ │ │ └── Entries │ │ │ │ ├── GlossaryItem.swift │ │ │ │ ├── KanjiEntry.swift │ │ │ │ ├── KanjiEntryV1.swift │ │ │ │ ├── KanjiEntryV3.swift │ │ │ │ ├── KanjiMetaEntry.swift │ │ │ │ ├── TagEntry.swift │ │ │ │ ├── TermEntry.swift │ │ │ │ ├── TermEntryV1.swift │ │ │ │ ├── TermEntryV3.swift │ │ │ │ └── TermMetaEntry.swift │ │ ├── DecodedDictionary.swift │ │ ├── DictionaryDecoder.swift │ │ ├── DictionaryDecoderError.swift │ │ └── YomichanDictionaryImporter.swift │ ├── EmptyMangaCollection.swift │ ├── FullKanjiResult.swift │ ├── Manga+CoreDataProperties.swift │ ├── Manga.swift │ ├── MangaCollection+CoreDataProperties.swift │ ├── MangaCollection.swift │ ├── MangaCollectionable.swift │ ├── MangaReader.xcdatamodeld │ │ ├── .xccurrentversion │ │ └── MangaReader.xcdatamodel │ │ │ └── contents │ ├── MergedTermSearchResult.swift │ ├── Sentence+CoreDataProperties.swift │ └── Sentence.swift ├── OCR │ ├── ImageOCR.swift │ ├── Tesseract+PageSegmentation.swift │ └── TesseractOCR.swift ├── Other │ ├── Bool+Extension.swift │ ├── CGPDFObjectRef+Extension.swift │ ├── CGSize+Extension.swift │ ├── Constants.swift │ ├── JapaneseUtils.swift │ ├── SelectionView.swift │ ├── Sequence+Extension.swift │ ├── String+Extension.swift │ ├── UIColor+Extension.swift │ ├── UIView+Extension.swift │ └── demo1.cbz ├── Resources │ ├── FAQ.html │ ├── cbz.svg │ └── dic.db ├── Settings.bundle │ ├── Root.plist │ └── en.lproj │ │ └── Root.strings └── Views │ ├── AnkiConnect │ ├── AnkiConnectionViewController.swift │ ├── AnkiConnectionViewController.xib │ ├── AnkiNamesListViewController.swift │ ├── AnkiNamesListViewController.xib │ ├── AnkiSettingsViewController.swift │ ├── AnkiSettingsViewController.xib │ ├── TransferringSentencesViewController.swift │ └── TransferringSentencesViewController.xib │ ├── Custom Views │ ├── AspectAlignImage.swift │ ├── CircleView.swift │ ├── DictionaryKanjiEntryView.swift │ ├── DictionaryTermEntryView.swift │ ├── DictionaryView.swift │ ├── FocusOverlayView.swift │ ├── IndexPathButton.swift │ ├── JapaneseHelpViewController.swift │ ├── ParsedInputField.swift │ └── WordButton.swift │ ├── Library │ ├── Add Manga │ │ ├── AddMangaViewController.swift │ │ ├── AddMangaViewController.xib │ │ ├── FileSourceViewController.swift │ │ ├── FileSourceViewController.xib │ │ ├── NewCollectionTableViewCell.swift │ │ ├── NewCollectionTableViewCell.xib │ │ ├── SelectCollectionTableViewController.swift │ │ ├── WebServerViewController.swift │ │ └── WebServerViewController.xib │ ├── CollectionViewController.swift │ ├── CollectionViewController.xib │ ├── LibraryViewController.swift │ ├── LibraryViewController.xib │ ├── MangaCollectionCollectionViewCell.swift │ ├── MangaCollectionCollectionViewCell.xib │ ├── MangaCollectionViewCell.swift │ ├── MangaCollectionViewCell.xib │ ├── Settings │ │ ├── AboutView.swift │ │ ├── AcknowledgmentsView.swift │ │ ├── DictionariesViewController.swift │ │ ├── DictionariesViewController.xib │ │ ├── FAQViewController.swift │ │ ├── FAQViewController.xib │ │ └── SettingsTableViewController.swift │ └── Transitions │ │ ├── OpenCollectionAnimationController.swift │ │ └── OpenMangaAnimationController.swift │ ├── Manga Viewer │ ├── CreateSentenceViewController.swift │ ├── CreateSentenceViewController.xib │ ├── MangaViewController.swift │ ├── MangaViewController.xib │ ├── PageViewController.swift │ ├── PageViewController.xib │ ├── Settings Cells │ │ ├── NumberTableViewCell.swift │ │ ├── NumberTableViewCell.xib │ │ ├── SettingValueChangeDelegate.swift │ │ ├── ToggleTableViewCell.swift │ │ └── ToggleTableViewCell.xib │ ├── ViewerSettings.swift │ ├── ViewerSettingsViewController.swift │ └── ViewerSettingsViewController.xib │ ├── Onboarding │ ├── DemoOcrView.swift │ ├── OnboardingViewController.swift │ └── OnboardingViewController.xib │ └── Sentences │ └── SentencesViewController.swift ├── MangaReaderTests ├── BoolExtensionTests.swift ├── CGSizeExtensionTests.swift ├── CompoundDictionaryTests.swift ├── Coordinators │ ├── AddMangasCoordinatorTests.swift │ ├── CreateSentenceCoordinatorTests.swift │ ├── DictionariesCoordinatorTests.swift │ ├── LibraryCoordinatorTests.swift │ ├── SettingsCoordinatorTests.swift │ └── ViewMangaCoordinatorTests.swift ├── CoreDataManagerTests.swift ├── Fakes │ ├── FakeAddMangasCoordinatorDelegate.swift │ ├── FakeCollectionView.swift │ ├── FakeCollectionViewController.swift │ ├── FakeCollectionViewControllerDelgate.swift │ ├── FakeCompoundDictionary.swift │ ├── FakeCoreDataManager.swift │ ├── FakeCreateSentenceCoordinatorDelegate.swift │ ├── FakeCreateSentenceViewControllerDelegate.swift │ ├── FakeDictionariesViewControllerDelegate.swift │ ├── FakeDictionaryDecoder.swift │ ├── FakeFileSourceViewControllerDelegate.swift │ ├── FakeImageOCR.swift │ ├── FakeLibraryViewController.swift │ ├── FakeLibraryViewControllerDelegate.swift │ ├── FakeMangaDataSource.swift │ ├── FakeMangaViewControllerDelegate.swift │ ├── FakeNavigation.swift │ ├── FakeReader.swift │ ├── FakeSelectCollectionTableViewControllerDelegate.swift │ ├── FakeSettingsCoordinatorDelegate.swift │ ├── FakeSettingsTableViewControllerDelegate.swift │ ├── FakeUploadServer.swift │ ├── FakeViewMangaCoordinatorDelegate.swift │ └── FakeViewerSettingsViewControllerDelegate.swift ├── Helpers │ └── InMemoryCoreDataManager.swift ├── Info.plist ├── JapaneseUtilsTests.swift ├── MangaDataSourceTests.swift ├── Mock Classes │ └── MockAddMangaViewControllerDelegate.swift ├── Model │ ├── Codables │ │ ├── DictionaryIndexTests.swift │ │ ├── GlossaryItemTests.swift │ │ ├── KanjiEntryV1Tests.swift │ │ ├── KanjiEntryV3Tests.swift │ │ ├── KanjiMetaEntryTests.swift │ │ ├── KanjiMetaTests.swift │ │ ├── TagEntryTests.swift │ │ ├── TermEntryV1Tests.swift │ │ ├── TermEntryV3Tests.swift │ │ ├── TermMetaEntryTests.swift │ │ └── TermMetaTests.swift │ └── DB │ │ ├── DictionaryTests.swift │ │ ├── KanjiTests.swift │ │ └── TermTests.swift ├── SequenceExtensionTests.swift ├── StringExtensionTests.swift ├── Testables │ ├── TestableAddMangasCoordinator.swift │ ├── TestableCreateSentenceCoordinator.swift │ ├── TestableMangaViewController.swift │ └── TestableViewMangaCoordinator.swift ├── UIViewExtensionTests.swift ├── Utils │ ├── ConstraintsUtils.swift │ └── TestsFactories.swift └── View Controllers │ └── MangaViewControllerTests.swift ├── Podfile ├── Podfile.lock ├── README.md ├── cbz.png ├── fastlane ├── Fastfile └── Matchfile ├── img ├── appstore.svg └── repo-header.png ├── mecabrc └── tessdata └── jpn_vert.traineddata /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/.gitmodules -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Kantan-Keyboard/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/Kantan-Keyboard/Info.plist -------------------------------------------------------------------------------- /Kantan-Keyboard/KanjiCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/Kantan-Keyboard/KanjiCollectionViewCell.swift -------------------------------------------------------------------------------- /Kantan-Keyboard/KanjiCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/Kantan-Keyboard/KanjiCollectionViewCell.xib -------------------------------------------------------------------------------- /Kantan-Keyboard/KeyboardButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/Kantan-Keyboard/KeyboardButton.swift -------------------------------------------------------------------------------- /Kantan-Keyboard/KeyboardViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/Kantan-Keyboard/KeyboardViewController.swift -------------------------------------------------------------------------------- /Kantan-Keyboard/Model/DicKanji.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/Kantan-Keyboard/Model/DicKanji.swift -------------------------------------------------------------------------------- /Kantan-Keyboard/Model/Kanji.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/Kantan-Keyboard/Model/Kanji.swift -------------------------------------------------------------------------------- /Kantan-Keyboard/Model/KanjiRadicalRelation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/Kantan-Keyboard/Model/KanjiRadicalRelation.swift -------------------------------------------------------------------------------- /Kantan-Keyboard/Model/KanjisGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/Kantan-Keyboard/Model/KanjisGroup.swift -------------------------------------------------------------------------------- /Kantan-Keyboard/Model/Radical.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/Kantan-Keyboard/Model/Radical.swift -------------------------------------------------------------------------------- /Kantan-Keyboard/RadicalsDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/Kantan-Keyboard/RadicalsDictionary.swift -------------------------------------------------------------------------------- /Kantan-Keyboard/kanjidic.sqlite.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/Kantan-Keyboard/kanjidic.sqlite.db -------------------------------------------------------------------------------- /Kantan-Keyboard/radk.sqlite.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/Kantan-Keyboard/radk.sqlite.db -------------------------------------------------------------------------------- /Kantan-Manga.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/Kantan-Manga.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Kantan-Manga.xcodeproj/xcshareddata/xcschemes/Kantan-Keyboard.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/Kantan-Manga.xcodeproj/xcshareddata/xcschemes/Kantan-Keyboard.xcscheme -------------------------------------------------------------------------------- /Kantan-Manga.xcodeproj/xcshareddata/xcschemes/MangaReader.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/Kantan-Manga.xcodeproj/xcshareddata/xcschemes/MangaReader.xcscheme -------------------------------------------------------------------------------- /Kantan-MangaIntegrationTests/CoreDataManagerIntegrationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/Kantan-MangaIntegrationTests/CoreDataManagerIntegrationTests.swift -------------------------------------------------------------------------------- /Kantan-MangaIntegrationTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/Kantan-MangaIntegrationTests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/LICENSE -------------------------------------------------------------------------------- /MangaReader-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader-Bridging-Header.h -------------------------------------------------------------------------------- /MangaReader/Anki/AnkiConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Anki/AnkiConfig.swift -------------------------------------------------------------------------------- /MangaReader/Anki/AnkiConfigManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Anki/AnkiConfigManager.swift -------------------------------------------------------------------------------- /MangaReader/Anki/AnkiConnect/AnkiConnectError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Anki/AnkiConnect/AnkiConnectError.swift -------------------------------------------------------------------------------- /MangaReader/Anki/AnkiConnect/AnkiConnectManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Anki/AnkiConnect/AnkiConnectManager.swift -------------------------------------------------------------------------------- /MangaReader/Anki/AnkiConnect/AnkiConnectRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Anki/AnkiConnect/AnkiConnectRequest.swift -------------------------------------------------------------------------------- /MangaReader/Anki/AnkiConnect/AnkiConnectResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Anki/AnkiConnect/AnkiConnectResponse.swift -------------------------------------------------------------------------------- /MangaReader/Anki/AnkiConnect/AnkiSyncCardOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Anki/AnkiConnect/AnkiSyncCardOperation.swift -------------------------------------------------------------------------------- /MangaReader/Anki/AnkiConnect/CreateNoteRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Anki/AnkiConnect/CreateNoteRequest.swift -------------------------------------------------------------------------------- /MangaReader/Anki/LocalNetworkAuthorization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Anki/LocalNetworkAuthorization.swift -------------------------------------------------------------------------------- /MangaReader/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/AppDelegate.swift -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/Colors/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/Colors/Contents.json -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/Colors/JapanRed.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/Colors/JapanRed.colorset/Contents.json -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/Colors/LibraryBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/Colors/LibraryBackground.colorset/Contents.json -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/Colors/LightBlue.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/Colors/LightBlue.colorset/Contents.json -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/Colors/Purple.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/Colors/Purple.colorset/Contents.json -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/Add manga/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/Add manga/Contents.json -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/Add manga/bigAdd.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/Add manga/bigAdd.imageset/Contents.json -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/Add manga/bigAdd.imageset/bigAdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/Add manga/bigAdd.imageset/bigAdd.png -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/AppIcon.appiconset/Icon-App-7-8-@3x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/AppIcon.appiconset/Icon-App-7-8-@3x~iphone.png -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/AppIcon.appiconset/Icon-Settings-@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/AppIcon.appiconset/Icon-Settings-@2x~iphone.png -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/AppIcon.appiconset/Icon-Settings-@3x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/AppIcon.appiconset/Icon-Settings-@3x~iphone.png -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-7-8~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-7-8~ipad.png -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-@2x~iphone.png -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-@3x~iphone-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-@3x~iphone-1.png -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-@3x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-@3x~iphone.png -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/AppIcon.appiconset/Icon-other-@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/AppIcon.appiconset/Icon-other-@2x~iphone.png -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/AppIcon.appiconset/ios_marketing1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/AppIcon.appiconset/ios_marketing1024x1024.png -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/AppIcon.appiconset/ipad_app76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/AppIcon.appiconset/ipad_app76x76.png -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/AppIcon.appiconset/ipad_app76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/AppIcon.appiconset/ipad_app76x76@2x.png -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/AppIcon.appiconset/ipad_notification20x20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/AppIcon.appiconset/ipad_notification20x20.png -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/AppIcon.appiconset/ipad_notification20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/AppIcon.appiconset/ipad_notification20x20@2x.png -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/AppIcon.appiconset/ipad_pro_app83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/AppIcon.appiconset/ipad_pro_app83.5x83.5@2x.png -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/AppIcon.appiconset/ipad_settings29x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/AppIcon.appiconset/ipad_settings29x29.png -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/AppIcon.appiconset/ipad_settings29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/AppIcon.appiconset/ipad_settings29x29@2x.png -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/AppIcon.appiconset/ipad_spotlight40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/AppIcon.appiconset/ipad_spotlight40x40.png -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/AppIcon.appiconset/ipad_spotlight40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/AppIcon.appiconset/ipad_spotlight40x40@2x.png -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/Library/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/Library/Contents.json -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/Library/add.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/Library/add.imageset/Contents.json -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/Library/add.imageset/add@x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/Library/add.imageset/add@x3.png -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/Onboarding/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/Onboarding/Contents.json -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/Onboarding/demo-bundle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/Onboarding/demo-bundle.imageset/Contents.json -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/Onboarding/demo-bundle.imageset/bundle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/Onboarding/demo-bundle.imageset/bundle.png -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/Onboarding/demo-ocr.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/Onboarding/demo-ocr.imageset/Contents.json -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/Onboarding/demo-ocr.imageset/ocrDemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/Onboarding/demo-ocr.imageset/ocrDemo.png -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/Onboarding/k1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/Onboarding/k1.imageset/Contents.json -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/Onboarding/k1.imageset/k1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/Onboarding/k1.imageset/k1.png -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/Onboarding/k2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/Onboarding/k2.imageset/Contents.json -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/Onboarding/k2.imageset/k2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/Onboarding/k2.imageset/k2.png -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/Onboarding/k3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/Onboarding/k3.imageset/Contents.json -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/Onboarding/k3.imageset/k3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/Onboarding/k3.imageset/k3.png -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/Onboarding/k4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/Onboarding/k4.imageset/Contents.json -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/Onboarding/k4.imageset/k4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/Onboarding/k4.imageset/k4.png -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/Page/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/Page/Contents.json -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/Page/gradientLtR.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/Page/gradientLtR.imageset/Contents.json -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/Page/gradientLtR.imageset/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/Page/gradientLtR.imageset/gradient.png -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/Page/gradientRtL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/Page/gradientRtL.imageset/Contents.json -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/Page/gradientRtL.imageset/gradient2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/Page/gradientRtL.imageset/gradient2.png -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/Settings/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/Settings/Contents.json -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/Settings/app-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/Settings/app-icon.imageset/Contents.json -------------------------------------------------------------------------------- /MangaReader/Assets.xcassets/Settings/app-icon.imageset/iTunesArtwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Assets.xcassets/Settings/app-icon.imageset/iTunesArtwork.png -------------------------------------------------------------------------------- /MangaReader/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /MangaReader/Coordinators/AddMangasCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Coordinators/AddMangasCoordinator.swift -------------------------------------------------------------------------------- /MangaReader/Coordinators/AppCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Coordinators/AppCoordinator.swift -------------------------------------------------------------------------------- /MangaReader/Coordinators/ConfigureAnkiCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Coordinators/ConfigureAnkiCoordinator.swift -------------------------------------------------------------------------------- /MangaReader/Coordinators/Coordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Coordinators/Coordinator.swift -------------------------------------------------------------------------------- /MangaReader/Coordinators/DictionariesCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Coordinators/DictionariesCoordinator.swift -------------------------------------------------------------------------------- /MangaReader/Coordinators/EditSentenceCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Coordinators/EditSentenceCoordinator.swift -------------------------------------------------------------------------------- /MangaReader/Coordinators/LibraryCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Coordinators/LibraryCoordinator.swift -------------------------------------------------------------------------------- /MangaReader/Coordinators/Navigable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Coordinators/Navigable.swift -------------------------------------------------------------------------------- /MangaReader/Coordinators/SentencesCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Coordinators/SentencesCoordinator.swift -------------------------------------------------------------------------------- /MangaReader/Coordinators/SettingsCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Coordinators/SettingsCoordinator.swift -------------------------------------------------------------------------------- /MangaReader/Coordinators/SyncSentencesCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Coordinators/SyncSentencesCoordinator.swift -------------------------------------------------------------------------------- /MangaReader/Coordinators/ViewMangaCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Coordinators/ViewMangaCoordinator.swift -------------------------------------------------------------------------------- /MangaReader/Data Source/MangaDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Data Source/MangaDataSource.swift -------------------------------------------------------------------------------- /MangaReader/Data Source/MangaDataSourceable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Data Source/MangaDataSourceable.swift -------------------------------------------------------------------------------- /MangaReader/File Extraction/CBRReader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/File Extraction/CBRReader.swift -------------------------------------------------------------------------------- /MangaReader/File Extraction/CBZReader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/File Extraction/CBZReader.swift -------------------------------------------------------------------------------- /MangaReader/File Extraction/GenericReader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/File Extraction/GenericReader.swift -------------------------------------------------------------------------------- /MangaReader/File Extraction/PDFReader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/File Extraction/PDFReader.swift -------------------------------------------------------------------------------- /MangaReader/File Extraction/Reader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/File Extraction/Reader.swift -------------------------------------------------------------------------------- /MangaReader/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/GoogleService-Info.plist -------------------------------------------------------------------------------- /MangaReader/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Info.plist -------------------------------------------------------------------------------- /MangaReader/Mecab/Token.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Mecab/Token.swift -------------------------------------------------------------------------------- /MangaReader/Mecab/Tokenizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Mecab/Tokenizer.swift -------------------------------------------------------------------------------- /MangaReader/Mecab/WordParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Mecab/WordParser.swift -------------------------------------------------------------------------------- /MangaReader/Model/CoreDataManageable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/CoreDataManageable.swift -------------------------------------------------------------------------------- /MangaReader/Model/CoreDataManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/CoreDataManager.swift -------------------------------------------------------------------------------- /MangaReader/Model/Dictionary/CompoundDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/Dictionary/CompoundDictionary.swift -------------------------------------------------------------------------------- /MangaReader/Model/Dictionary/DB/DBMigrator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/Dictionary/DB/DBMigrator.swift -------------------------------------------------------------------------------- /MangaReader/Model/Dictionary/DB/Dictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/Dictionary/DB/Dictionary.swift -------------------------------------------------------------------------------- /MangaReader/Model/Dictionary/DB/Kanji.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/Dictionary/DB/Kanji.swift -------------------------------------------------------------------------------- /MangaReader/Model/Dictionary/DB/KanjiMeta.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/Dictionary/DB/KanjiMeta.swift -------------------------------------------------------------------------------- /MangaReader/Model/Dictionary/DB/Search/KanjiMetaSearchResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/Dictionary/DB/Search/KanjiMetaSearchResult.swift -------------------------------------------------------------------------------- /MangaReader/Model/Dictionary/DB/Search/KanjiSearchResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/Dictionary/DB/Search/KanjiSearchResult.swift -------------------------------------------------------------------------------- /MangaReader/Model/Dictionary/DB/Search/SearchTermResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/Dictionary/DB/Search/SearchTermResult.swift -------------------------------------------------------------------------------- /MangaReader/Model/Dictionary/DB/Search/TermMetaSearchResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/Dictionary/DB/Search/TermMetaSearchResult.swift -------------------------------------------------------------------------------- /MangaReader/Model/Dictionary/DB/Tag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/Dictionary/DB/Tag.swift -------------------------------------------------------------------------------- /MangaReader/Model/Dictionary/DB/Term.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/Dictionary/DB/Term.swift -------------------------------------------------------------------------------- /MangaReader/Model/Dictionary/DB/TermMeta.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/Dictionary/DB/TermMeta.swift -------------------------------------------------------------------------------- /MangaReader/Model/Dictionary/DatabaseUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/Dictionary/DatabaseUtils.swift -------------------------------------------------------------------------------- /MangaReader/Model/Dictionary/Decode/DictionaryIndex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/Dictionary/Decode/DictionaryIndex.swift -------------------------------------------------------------------------------- /MangaReader/Model/Dictionary/Decode/Entries/GlossaryItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/Dictionary/Decode/Entries/GlossaryItem.swift -------------------------------------------------------------------------------- /MangaReader/Model/Dictionary/Decode/Entries/KanjiEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/Dictionary/Decode/Entries/KanjiEntry.swift -------------------------------------------------------------------------------- /MangaReader/Model/Dictionary/Decode/Entries/KanjiEntryV1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/Dictionary/Decode/Entries/KanjiEntryV1.swift -------------------------------------------------------------------------------- /MangaReader/Model/Dictionary/Decode/Entries/KanjiEntryV3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/Dictionary/Decode/Entries/KanjiEntryV3.swift -------------------------------------------------------------------------------- /MangaReader/Model/Dictionary/Decode/Entries/KanjiMetaEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/Dictionary/Decode/Entries/KanjiMetaEntry.swift -------------------------------------------------------------------------------- /MangaReader/Model/Dictionary/Decode/Entries/TagEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/Dictionary/Decode/Entries/TagEntry.swift -------------------------------------------------------------------------------- /MangaReader/Model/Dictionary/Decode/Entries/TermEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/Dictionary/Decode/Entries/TermEntry.swift -------------------------------------------------------------------------------- /MangaReader/Model/Dictionary/Decode/Entries/TermEntryV1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/Dictionary/Decode/Entries/TermEntryV1.swift -------------------------------------------------------------------------------- /MangaReader/Model/Dictionary/Decode/Entries/TermEntryV3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/Dictionary/Decode/Entries/TermEntryV3.swift -------------------------------------------------------------------------------- /MangaReader/Model/Dictionary/Decode/Entries/TermMetaEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/Dictionary/Decode/Entries/TermMetaEntry.swift -------------------------------------------------------------------------------- /MangaReader/Model/Dictionary/DecodedDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/Dictionary/DecodedDictionary.swift -------------------------------------------------------------------------------- /MangaReader/Model/Dictionary/DictionaryDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/Dictionary/DictionaryDecoder.swift -------------------------------------------------------------------------------- /MangaReader/Model/Dictionary/DictionaryDecoderError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/Dictionary/DictionaryDecoderError.swift -------------------------------------------------------------------------------- /MangaReader/Model/Dictionary/YomichanDictionaryImporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/Dictionary/YomichanDictionaryImporter.swift -------------------------------------------------------------------------------- /MangaReader/Model/EmptyMangaCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/EmptyMangaCollection.swift -------------------------------------------------------------------------------- /MangaReader/Model/FullKanjiResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/FullKanjiResult.swift -------------------------------------------------------------------------------- /MangaReader/Model/Manga+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/Manga+CoreDataProperties.swift -------------------------------------------------------------------------------- /MangaReader/Model/Manga.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/Manga.swift -------------------------------------------------------------------------------- /MangaReader/Model/MangaCollection+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/MangaCollection+CoreDataProperties.swift -------------------------------------------------------------------------------- /MangaReader/Model/MangaCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/MangaCollection.swift -------------------------------------------------------------------------------- /MangaReader/Model/MangaCollectionable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/MangaCollectionable.swift -------------------------------------------------------------------------------- /MangaReader/Model/MangaReader.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/MangaReader.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /MangaReader/Model/MangaReader.xcdatamodeld/MangaReader.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/MangaReader.xcdatamodeld/MangaReader.xcdatamodel/contents -------------------------------------------------------------------------------- /MangaReader/Model/MergedTermSearchResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/MergedTermSearchResult.swift -------------------------------------------------------------------------------- /MangaReader/Model/Sentence+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/Sentence+CoreDataProperties.swift -------------------------------------------------------------------------------- /MangaReader/Model/Sentence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Model/Sentence.swift -------------------------------------------------------------------------------- /MangaReader/OCR/ImageOCR.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/OCR/ImageOCR.swift -------------------------------------------------------------------------------- /MangaReader/OCR/Tesseract+PageSegmentation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/OCR/Tesseract+PageSegmentation.swift -------------------------------------------------------------------------------- /MangaReader/OCR/TesseractOCR.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/OCR/TesseractOCR.swift -------------------------------------------------------------------------------- /MangaReader/Other/Bool+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Other/Bool+Extension.swift -------------------------------------------------------------------------------- /MangaReader/Other/CGPDFObjectRef+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Other/CGPDFObjectRef+Extension.swift -------------------------------------------------------------------------------- /MangaReader/Other/CGSize+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Other/CGSize+Extension.swift -------------------------------------------------------------------------------- /MangaReader/Other/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Other/Constants.swift -------------------------------------------------------------------------------- /MangaReader/Other/JapaneseUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Other/JapaneseUtils.swift -------------------------------------------------------------------------------- /MangaReader/Other/SelectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Other/SelectionView.swift -------------------------------------------------------------------------------- /MangaReader/Other/Sequence+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Other/Sequence+Extension.swift -------------------------------------------------------------------------------- /MangaReader/Other/String+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Other/String+Extension.swift -------------------------------------------------------------------------------- /MangaReader/Other/UIColor+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Other/UIColor+Extension.swift -------------------------------------------------------------------------------- /MangaReader/Other/UIView+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Other/UIView+Extension.swift -------------------------------------------------------------------------------- /MangaReader/Other/demo1.cbz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Other/demo1.cbz -------------------------------------------------------------------------------- /MangaReader/Resources/FAQ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Resources/FAQ.html -------------------------------------------------------------------------------- /MangaReader/Resources/cbz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Resources/cbz.svg -------------------------------------------------------------------------------- /MangaReader/Resources/dic.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Resources/dic.db -------------------------------------------------------------------------------- /MangaReader/Settings.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Settings.bundle/Root.plist -------------------------------------------------------------------------------- /MangaReader/Settings.bundle/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Settings.bundle/en.lproj/Root.strings -------------------------------------------------------------------------------- /MangaReader/Views/AnkiConnect/AnkiConnectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/AnkiConnect/AnkiConnectionViewController.swift -------------------------------------------------------------------------------- /MangaReader/Views/AnkiConnect/AnkiConnectionViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/AnkiConnect/AnkiConnectionViewController.xib -------------------------------------------------------------------------------- /MangaReader/Views/AnkiConnect/AnkiNamesListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/AnkiConnect/AnkiNamesListViewController.swift -------------------------------------------------------------------------------- /MangaReader/Views/AnkiConnect/AnkiNamesListViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/AnkiConnect/AnkiNamesListViewController.xib -------------------------------------------------------------------------------- /MangaReader/Views/AnkiConnect/AnkiSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/AnkiConnect/AnkiSettingsViewController.swift -------------------------------------------------------------------------------- /MangaReader/Views/AnkiConnect/AnkiSettingsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/AnkiConnect/AnkiSettingsViewController.xib -------------------------------------------------------------------------------- /MangaReader/Views/AnkiConnect/TransferringSentencesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/AnkiConnect/TransferringSentencesViewController.swift -------------------------------------------------------------------------------- /MangaReader/Views/AnkiConnect/TransferringSentencesViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/AnkiConnect/TransferringSentencesViewController.xib -------------------------------------------------------------------------------- /MangaReader/Views/Custom Views/AspectAlignImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Custom Views/AspectAlignImage.swift -------------------------------------------------------------------------------- /MangaReader/Views/Custom Views/CircleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Custom Views/CircleView.swift -------------------------------------------------------------------------------- /MangaReader/Views/Custom Views/DictionaryKanjiEntryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Custom Views/DictionaryKanjiEntryView.swift -------------------------------------------------------------------------------- /MangaReader/Views/Custom Views/DictionaryTermEntryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Custom Views/DictionaryTermEntryView.swift -------------------------------------------------------------------------------- /MangaReader/Views/Custom Views/DictionaryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Custom Views/DictionaryView.swift -------------------------------------------------------------------------------- /MangaReader/Views/Custom Views/FocusOverlayView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Custom Views/FocusOverlayView.swift -------------------------------------------------------------------------------- /MangaReader/Views/Custom Views/IndexPathButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Custom Views/IndexPathButton.swift -------------------------------------------------------------------------------- /MangaReader/Views/Custom Views/JapaneseHelpViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Custom Views/JapaneseHelpViewController.swift -------------------------------------------------------------------------------- /MangaReader/Views/Custom Views/ParsedInputField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Custom Views/ParsedInputField.swift -------------------------------------------------------------------------------- /MangaReader/Views/Custom Views/WordButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Custom Views/WordButton.swift -------------------------------------------------------------------------------- /MangaReader/Views/Library/Add Manga/AddMangaViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Library/Add Manga/AddMangaViewController.swift -------------------------------------------------------------------------------- /MangaReader/Views/Library/Add Manga/AddMangaViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Library/Add Manga/AddMangaViewController.xib -------------------------------------------------------------------------------- /MangaReader/Views/Library/Add Manga/FileSourceViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Library/Add Manga/FileSourceViewController.swift -------------------------------------------------------------------------------- /MangaReader/Views/Library/Add Manga/FileSourceViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Library/Add Manga/FileSourceViewController.xib -------------------------------------------------------------------------------- /MangaReader/Views/Library/Add Manga/NewCollectionTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Library/Add Manga/NewCollectionTableViewCell.swift -------------------------------------------------------------------------------- /MangaReader/Views/Library/Add Manga/NewCollectionTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Library/Add Manga/NewCollectionTableViewCell.xib -------------------------------------------------------------------------------- /MangaReader/Views/Library/Add Manga/SelectCollectionTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Library/Add Manga/SelectCollectionTableViewController.swift -------------------------------------------------------------------------------- /MangaReader/Views/Library/Add Manga/WebServerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Library/Add Manga/WebServerViewController.swift -------------------------------------------------------------------------------- /MangaReader/Views/Library/Add Manga/WebServerViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Library/Add Manga/WebServerViewController.xib -------------------------------------------------------------------------------- /MangaReader/Views/Library/CollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Library/CollectionViewController.swift -------------------------------------------------------------------------------- /MangaReader/Views/Library/CollectionViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Library/CollectionViewController.xib -------------------------------------------------------------------------------- /MangaReader/Views/Library/LibraryViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Library/LibraryViewController.swift -------------------------------------------------------------------------------- /MangaReader/Views/Library/LibraryViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Library/LibraryViewController.xib -------------------------------------------------------------------------------- /MangaReader/Views/Library/MangaCollectionCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Library/MangaCollectionCollectionViewCell.swift -------------------------------------------------------------------------------- /MangaReader/Views/Library/MangaCollectionCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Library/MangaCollectionCollectionViewCell.xib -------------------------------------------------------------------------------- /MangaReader/Views/Library/MangaCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Library/MangaCollectionViewCell.swift -------------------------------------------------------------------------------- /MangaReader/Views/Library/MangaCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Library/MangaCollectionViewCell.xib -------------------------------------------------------------------------------- /MangaReader/Views/Library/Settings/AboutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Library/Settings/AboutView.swift -------------------------------------------------------------------------------- /MangaReader/Views/Library/Settings/AcknowledgmentsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Library/Settings/AcknowledgmentsView.swift -------------------------------------------------------------------------------- /MangaReader/Views/Library/Settings/DictionariesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Library/Settings/DictionariesViewController.swift -------------------------------------------------------------------------------- /MangaReader/Views/Library/Settings/DictionariesViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Library/Settings/DictionariesViewController.xib -------------------------------------------------------------------------------- /MangaReader/Views/Library/Settings/FAQViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Library/Settings/FAQViewController.swift -------------------------------------------------------------------------------- /MangaReader/Views/Library/Settings/FAQViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Library/Settings/FAQViewController.xib -------------------------------------------------------------------------------- /MangaReader/Views/Library/Settings/SettingsTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Library/Settings/SettingsTableViewController.swift -------------------------------------------------------------------------------- /MangaReader/Views/Library/Transitions/OpenCollectionAnimationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Library/Transitions/OpenCollectionAnimationController.swift -------------------------------------------------------------------------------- /MangaReader/Views/Library/Transitions/OpenMangaAnimationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Library/Transitions/OpenMangaAnimationController.swift -------------------------------------------------------------------------------- /MangaReader/Views/Manga Viewer/CreateSentenceViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Manga Viewer/CreateSentenceViewController.swift -------------------------------------------------------------------------------- /MangaReader/Views/Manga Viewer/CreateSentenceViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Manga Viewer/CreateSentenceViewController.xib -------------------------------------------------------------------------------- /MangaReader/Views/Manga Viewer/MangaViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Manga Viewer/MangaViewController.swift -------------------------------------------------------------------------------- /MangaReader/Views/Manga Viewer/MangaViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Manga Viewer/MangaViewController.xib -------------------------------------------------------------------------------- /MangaReader/Views/Manga Viewer/PageViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Manga Viewer/PageViewController.swift -------------------------------------------------------------------------------- /MangaReader/Views/Manga Viewer/PageViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Manga Viewer/PageViewController.xib -------------------------------------------------------------------------------- /MangaReader/Views/Manga Viewer/Settings Cells/NumberTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Manga Viewer/Settings Cells/NumberTableViewCell.swift -------------------------------------------------------------------------------- /MangaReader/Views/Manga Viewer/Settings Cells/NumberTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Manga Viewer/Settings Cells/NumberTableViewCell.xib -------------------------------------------------------------------------------- /MangaReader/Views/Manga Viewer/Settings Cells/SettingValueChangeDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Manga Viewer/Settings Cells/SettingValueChangeDelegate.swift -------------------------------------------------------------------------------- /MangaReader/Views/Manga Viewer/Settings Cells/ToggleTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Manga Viewer/Settings Cells/ToggleTableViewCell.swift -------------------------------------------------------------------------------- /MangaReader/Views/Manga Viewer/Settings Cells/ToggleTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Manga Viewer/Settings Cells/ToggleTableViewCell.xib -------------------------------------------------------------------------------- /MangaReader/Views/Manga Viewer/ViewerSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Manga Viewer/ViewerSettings.swift -------------------------------------------------------------------------------- /MangaReader/Views/Manga Viewer/ViewerSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Manga Viewer/ViewerSettingsViewController.swift -------------------------------------------------------------------------------- /MangaReader/Views/Manga Viewer/ViewerSettingsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Manga Viewer/ViewerSettingsViewController.xib -------------------------------------------------------------------------------- /MangaReader/Views/Onboarding/DemoOcrView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Onboarding/DemoOcrView.swift -------------------------------------------------------------------------------- /MangaReader/Views/Onboarding/OnboardingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Onboarding/OnboardingViewController.swift -------------------------------------------------------------------------------- /MangaReader/Views/Onboarding/OnboardingViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Onboarding/OnboardingViewController.xib -------------------------------------------------------------------------------- /MangaReader/Views/Sentences/SentencesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReader/Views/Sentences/SentencesViewController.swift -------------------------------------------------------------------------------- /MangaReaderTests/BoolExtensionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/BoolExtensionTests.swift -------------------------------------------------------------------------------- /MangaReaderTests/CGSizeExtensionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/CGSizeExtensionTests.swift -------------------------------------------------------------------------------- /MangaReaderTests/CompoundDictionaryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/CompoundDictionaryTests.swift -------------------------------------------------------------------------------- /MangaReaderTests/Coordinators/AddMangasCoordinatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Coordinators/AddMangasCoordinatorTests.swift -------------------------------------------------------------------------------- /MangaReaderTests/Coordinators/CreateSentenceCoordinatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Coordinators/CreateSentenceCoordinatorTests.swift -------------------------------------------------------------------------------- /MangaReaderTests/Coordinators/DictionariesCoordinatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Coordinators/DictionariesCoordinatorTests.swift -------------------------------------------------------------------------------- /MangaReaderTests/Coordinators/LibraryCoordinatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Coordinators/LibraryCoordinatorTests.swift -------------------------------------------------------------------------------- /MangaReaderTests/Coordinators/SettingsCoordinatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Coordinators/SettingsCoordinatorTests.swift -------------------------------------------------------------------------------- /MangaReaderTests/Coordinators/ViewMangaCoordinatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Coordinators/ViewMangaCoordinatorTests.swift -------------------------------------------------------------------------------- /MangaReaderTests/CoreDataManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/CoreDataManagerTests.swift -------------------------------------------------------------------------------- /MangaReaderTests/Fakes/FakeAddMangasCoordinatorDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Fakes/FakeAddMangasCoordinatorDelegate.swift -------------------------------------------------------------------------------- /MangaReaderTests/Fakes/FakeCollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Fakes/FakeCollectionView.swift -------------------------------------------------------------------------------- /MangaReaderTests/Fakes/FakeCollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Fakes/FakeCollectionViewController.swift -------------------------------------------------------------------------------- /MangaReaderTests/Fakes/FakeCollectionViewControllerDelgate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Fakes/FakeCollectionViewControllerDelgate.swift -------------------------------------------------------------------------------- /MangaReaderTests/Fakes/FakeCompoundDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Fakes/FakeCompoundDictionary.swift -------------------------------------------------------------------------------- /MangaReaderTests/Fakes/FakeCoreDataManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Fakes/FakeCoreDataManager.swift -------------------------------------------------------------------------------- /MangaReaderTests/Fakes/FakeCreateSentenceCoordinatorDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Fakes/FakeCreateSentenceCoordinatorDelegate.swift -------------------------------------------------------------------------------- /MangaReaderTests/Fakes/FakeCreateSentenceViewControllerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Fakes/FakeCreateSentenceViewControllerDelegate.swift -------------------------------------------------------------------------------- /MangaReaderTests/Fakes/FakeDictionariesViewControllerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Fakes/FakeDictionariesViewControllerDelegate.swift -------------------------------------------------------------------------------- /MangaReaderTests/Fakes/FakeDictionaryDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Fakes/FakeDictionaryDecoder.swift -------------------------------------------------------------------------------- /MangaReaderTests/Fakes/FakeFileSourceViewControllerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Fakes/FakeFileSourceViewControllerDelegate.swift -------------------------------------------------------------------------------- /MangaReaderTests/Fakes/FakeImageOCR.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Fakes/FakeImageOCR.swift -------------------------------------------------------------------------------- /MangaReaderTests/Fakes/FakeLibraryViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Fakes/FakeLibraryViewController.swift -------------------------------------------------------------------------------- /MangaReaderTests/Fakes/FakeLibraryViewControllerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Fakes/FakeLibraryViewControllerDelegate.swift -------------------------------------------------------------------------------- /MangaReaderTests/Fakes/FakeMangaDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Fakes/FakeMangaDataSource.swift -------------------------------------------------------------------------------- /MangaReaderTests/Fakes/FakeMangaViewControllerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Fakes/FakeMangaViewControllerDelegate.swift -------------------------------------------------------------------------------- /MangaReaderTests/Fakes/FakeNavigation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Fakes/FakeNavigation.swift -------------------------------------------------------------------------------- /MangaReaderTests/Fakes/FakeReader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Fakes/FakeReader.swift -------------------------------------------------------------------------------- /MangaReaderTests/Fakes/FakeSelectCollectionTableViewControllerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Fakes/FakeSelectCollectionTableViewControllerDelegate.swift -------------------------------------------------------------------------------- /MangaReaderTests/Fakes/FakeSettingsCoordinatorDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Fakes/FakeSettingsCoordinatorDelegate.swift -------------------------------------------------------------------------------- /MangaReaderTests/Fakes/FakeSettingsTableViewControllerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Fakes/FakeSettingsTableViewControllerDelegate.swift -------------------------------------------------------------------------------- /MangaReaderTests/Fakes/FakeUploadServer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Fakes/FakeUploadServer.swift -------------------------------------------------------------------------------- /MangaReaderTests/Fakes/FakeViewMangaCoordinatorDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Fakes/FakeViewMangaCoordinatorDelegate.swift -------------------------------------------------------------------------------- /MangaReaderTests/Fakes/FakeViewerSettingsViewControllerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Fakes/FakeViewerSettingsViewControllerDelegate.swift -------------------------------------------------------------------------------- /MangaReaderTests/Helpers/InMemoryCoreDataManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Helpers/InMemoryCoreDataManager.swift -------------------------------------------------------------------------------- /MangaReaderTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Info.plist -------------------------------------------------------------------------------- /MangaReaderTests/JapaneseUtilsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/JapaneseUtilsTests.swift -------------------------------------------------------------------------------- /MangaReaderTests/MangaDataSourceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/MangaDataSourceTests.swift -------------------------------------------------------------------------------- /MangaReaderTests/Mock Classes/MockAddMangaViewControllerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Mock Classes/MockAddMangaViewControllerDelegate.swift -------------------------------------------------------------------------------- /MangaReaderTests/Model/Codables/DictionaryIndexTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Model/Codables/DictionaryIndexTests.swift -------------------------------------------------------------------------------- /MangaReaderTests/Model/Codables/GlossaryItemTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Model/Codables/GlossaryItemTests.swift -------------------------------------------------------------------------------- /MangaReaderTests/Model/Codables/KanjiEntryV1Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Model/Codables/KanjiEntryV1Tests.swift -------------------------------------------------------------------------------- /MangaReaderTests/Model/Codables/KanjiEntryV3Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Model/Codables/KanjiEntryV3Tests.swift -------------------------------------------------------------------------------- /MangaReaderTests/Model/Codables/KanjiMetaEntryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Model/Codables/KanjiMetaEntryTests.swift -------------------------------------------------------------------------------- /MangaReaderTests/Model/Codables/KanjiMetaTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Model/Codables/KanjiMetaTests.swift -------------------------------------------------------------------------------- /MangaReaderTests/Model/Codables/TagEntryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Model/Codables/TagEntryTests.swift -------------------------------------------------------------------------------- /MangaReaderTests/Model/Codables/TermEntryV1Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Model/Codables/TermEntryV1Tests.swift -------------------------------------------------------------------------------- /MangaReaderTests/Model/Codables/TermEntryV3Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Model/Codables/TermEntryV3Tests.swift -------------------------------------------------------------------------------- /MangaReaderTests/Model/Codables/TermMetaEntryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Model/Codables/TermMetaEntryTests.swift -------------------------------------------------------------------------------- /MangaReaderTests/Model/Codables/TermMetaTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Model/Codables/TermMetaTests.swift -------------------------------------------------------------------------------- /MangaReaderTests/Model/DB/DictionaryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Model/DB/DictionaryTests.swift -------------------------------------------------------------------------------- /MangaReaderTests/Model/DB/KanjiTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Model/DB/KanjiTests.swift -------------------------------------------------------------------------------- /MangaReaderTests/Model/DB/TermTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Model/DB/TermTests.swift -------------------------------------------------------------------------------- /MangaReaderTests/SequenceExtensionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/SequenceExtensionTests.swift -------------------------------------------------------------------------------- /MangaReaderTests/StringExtensionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/StringExtensionTests.swift -------------------------------------------------------------------------------- /MangaReaderTests/Testables/TestableAddMangasCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Testables/TestableAddMangasCoordinator.swift -------------------------------------------------------------------------------- /MangaReaderTests/Testables/TestableCreateSentenceCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Testables/TestableCreateSentenceCoordinator.swift -------------------------------------------------------------------------------- /MangaReaderTests/Testables/TestableMangaViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Testables/TestableMangaViewController.swift -------------------------------------------------------------------------------- /MangaReaderTests/Testables/TestableViewMangaCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Testables/TestableViewMangaCoordinator.swift -------------------------------------------------------------------------------- /MangaReaderTests/UIViewExtensionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/UIViewExtensionTests.swift -------------------------------------------------------------------------------- /MangaReaderTests/Utils/ConstraintsUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Utils/ConstraintsUtils.swift -------------------------------------------------------------------------------- /MangaReaderTests/Utils/TestsFactories.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/Utils/TestsFactories.swift -------------------------------------------------------------------------------- /MangaReaderTests/View Controllers/MangaViewControllerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/MangaReaderTests/View Controllers/MangaViewControllerTests.swift -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/README.md -------------------------------------------------------------------------------- /cbz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/cbz.png -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Matchfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/fastlane/Matchfile -------------------------------------------------------------------------------- /img/appstore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/img/appstore.svg -------------------------------------------------------------------------------- /img/repo-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/img/repo-header.png -------------------------------------------------------------------------------- /mecabrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/mecabrc -------------------------------------------------------------------------------- /tessdata/jpn_vert.traineddata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanj/KantanManga/HEAD/tessdata/jpn_vert.traineddata --------------------------------------------------------------------------------