├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── config.yml │ └── report_issue.yml ├── dependabot.yml ├── readme-images │ ├── app-icon.png │ └── jetbrains.svg └── workflows │ ├── build-test.yml │ └── build.yml ├── .gitignore ├── .idea ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml └── runConfigurations │ ├── komga__bootRun__dev.xml │ ├── komga__bootRun__dev_demo_noclaim.xml │ ├── komga__bootRun__dev_localdb_noclaim_oauth2.xml │ └── komga__bootRun__dev_noclaim.xml ├── .nvmrc ├── .svu.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── DEVELOPING.md ├── DOCKERHUB.md ├── ERRORCODES.md ├── LICENSE ├── PRIVACY.md ├── README.md ├── apple.cer ├── conventionalcommit.json ├── conveyor.ci.conf ├── conveyor.conf ├── conveyor.detect.conf ├── conveyor.msstore.ci.conf ├── conveyor.msstore.conf ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── komga-tray ├── build.gradle.kts ├── conveyor │ └── required-jdk-modules.txt ├── lib │ ├── mac │ │ ├── aarch64 │ │ │ ├── libaom.3.dylib │ │ │ ├── libarchive.dylib │ │ │ ├── libb2.1.dylib │ │ │ ├── libbrotlicommon.1.dylib │ │ │ ├── libbrotlidec.1.dylib │ │ │ ├── libbrotlienc.1.dylib │ │ │ ├── libde265.0.dylib │ │ │ ├── libheif.dylib │ │ │ ├── libhwy.1.dylib │ │ │ ├── libjxl.0.8.dylib │ │ │ ├── libjxl.dylib │ │ │ ├── liblcms2.2.dylib │ │ │ ├── liblz4.1.dylib │ │ │ ├── liblzma.5.dylib │ │ │ ├── libsharpyuv.0.dylib │ │ │ ├── libvmaf.1.dylib │ │ │ ├── libwebp.7.dylib │ │ │ ├── libwebp.dylib │ │ │ ├── libwebpdemux.dylib │ │ │ ├── libx265.199.dylib │ │ │ └── libzstd.1.dylib │ │ └── x64 │ │ │ ├── libaom.3.dylib │ │ │ ├── libarchive.dylib │ │ │ ├── libb2.1.dylib │ │ │ ├── libbrotlicommon.1.dylib │ │ │ ├── libbrotlidec.1.dylib │ │ │ ├── libbrotlienc.1.dylib │ │ │ ├── libde265.0.dylib │ │ │ ├── libheif.dylib │ │ │ ├── libhwy.1.dylib │ │ │ ├── libjxl.0.8.dylib │ │ │ ├── libjxl.dylib │ │ │ ├── liblcms2.2.dylib │ │ │ ├── liblz4.1.dylib │ │ │ ├── liblzma.5.dylib │ │ │ ├── libsharpyuv.0.dylib │ │ │ ├── libvmaf.1.dylib │ │ │ ├── libwebp.7.dylib │ │ │ ├── libwebp.dylib │ │ │ ├── libwebpdemux.dylib │ │ │ ├── libx265.199.dylib │ │ │ └── libzstd.1.dylib │ └── windows │ │ └── x64 │ │ ├── aom.dll │ │ ├── archive.dll │ │ ├── brotlicommon.dll │ │ ├── brotlidec.dll │ │ ├── brotlienc.dll │ │ ├── dav1d.dll │ │ ├── heif.dll │ │ ├── hwy.dll │ │ ├── jxl.dll │ │ ├── jxl_threads.dll │ │ ├── lcms2.dll │ │ ├── libde265.dll │ │ ├── libsharpyuv.dll │ │ ├── libwebp.dll │ │ ├── libwebpdecoder.dll │ │ ├── libwebpmux.dll │ │ ├── libx265.dll │ │ ├── webp.dll │ │ ├── webpdemux.dll │ │ └── zlib1.dll └── src │ └── main │ ├── kotlin │ └── org │ │ └── gotson │ │ └── komga │ │ ├── DesktopApplication.kt │ │ ├── RB.kt │ │ ├── Utils.kt │ │ └── application │ │ └── gui │ │ ├── ErrorDialog.kt │ │ └── TrayIconRunner.kt │ └── resources │ ├── application-mac.yml │ ├── application-windows.yml │ ├── icons │ ├── komga-color.svg │ └── komga-gray-minimal.svg │ └── org │ └── gotson │ └── komga │ ├── messages.properties │ ├── messages_ar.properties │ ├── messages_bg.properties │ ├── messages_ca.properties │ ├── messages_cs.properties │ ├── messages_da.properties │ ├── messages_de.properties │ ├── messages_el.properties │ ├── messages_eo.properties │ ├── messages_es.properties │ ├── messages_fa.properties │ ├── messages_fi.properties │ ├── messages_fr.properties │ ├── messages_gl.properties │ ├── messages_he.properties │ ├── messages_hr.properties │ ├── messages_hu.properties │ ├── messages_id.properties │ ├── messages_it.properties │ ├── messages_ja.properties │ ├── messages_ko.properties │ ├── messages_nb_NO.properties │ ├── messages_nl.properties │ ├── messages_pl.properties │ ├── messages_pt.properties │ ├── messages_pt_BR.properties │ ├── messages_ru.properties │ ├── messages_sl.properties │ ├── messages_sv.properties │ ├── messages_ta.properties │ ├── messages_th.properties │ ├── messages_ti.properties │ ├── messages_tr.properties │ └── messages_vi.properties ├── komga-webui ├── .browserslistrc ├── .editorconfig ├── .env ├── .env.development ├── .eslintrc.js ├── .gitignore ├── babel.config.js ├── fork-ts-checker.config.js ├── jest.config.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── index.html │ ├── manifest.json │ └── mstile-144x144.png ├── src │ ├── App.vue │ ├── assets │ │ ├── cover.svg │ │ └── logo.svg │ ├── components │ │ ├── AlphabeticalNavigation.vue │ │ ├── ApiKeyTable.vue │ │ ├── AuthenticationActivityTable.vue │ │ ├── CollectionsExpansionPanels.vue │ │ ├── DropZone.vue │ │ ├── EmptyState.vue │ │ ├── FileImportRow.vue │ │ ├── FilterDrawer.vue │ │ ├── FilterList.vue │ │ ├── FilterPanels.vue │ │ ├── HorizontalScroller.vue │ │ ├── ItemBrowser.vue │ │ ├── ItemCard.vue │ │ ├── LibraryNavigation.vue │ │ ├── PageHashKnownCard.vue │ │ ├── PageHashMatchesTable.vue │ │ ├── PageHashUnknownCard.vue │ │ ├── PageSizeSelect.vue │ │ ├── PagesTable.vue │ │ ├── ReadListMatchRow.vue │ │ ├── ReadListsExpansionPanels.vue │ │ ├── ReadMore.vue │ │ ├── ReorderLibraries.vue │ │ ├── ReusableDialogs.vue │ │ ├── RtlIcon.vue │ │ ├── SearchBox.vue │ │ ├── SearchBoxBase.vue │ │ ├── SettingsSelect.vue │ │ ├── SettingsSwitch.vue │ │ ├── SortList.vue │ │ ├── ThumbnailCard.vue │ │ ├── ToasterNotification.vue │ │ ├── TocList.vue │ │ ├── TocListItem.vue │ │ ├── UsersList.vue │ │ ├── bars │ │ │ ├── MultiSelectBar.vue │ │ │ └── ToolbarSticky.vue │ │ ├── dialogs │ │ │ ├── ApiKeyAddDialog.vue │ │ │ ├── BookPickerDialog.vue │ │ │ ├── BulkEditBooksDialog.vue │ │ │ ├── CollectionAddToDialog.vue │ │ │ ├── CollectionEditDialog.vue │ │ │ ├── ConfirmationDialog.vue │ │ │ ├── EditBooksDialog.vue │ │ │ ├── EditOneshotDialog.vue │ │ │ ├── EditRecommendedDialog.vue │ │ │ ├── EditSeriesDialog.vue │ │ │ ├── FileBrowserDialog.vue │ │ │ ├── FileNameChooserDialog.vue │ │ │ ├── LibraryEditDialog.vue │ │ │ ├── PasswordChangeDialog.vue │ │ │ ├── ReadListAddToDialog.vue │ │ │ ├── ReadListEditDialog.vue │ │ │ ├── SeriesPickerDialog.vue │ │ │ ├── ShortcutHelpDialog.vue │ │ │ ├── ThumbnailExplorerDialog.vue │ │ │ ├── TransientBookDetailsDialog.vue │ │ │ ├── TransientBookViewerDialog.vue │ │ │ ├── UserAddDialog.vue │ │ │ ├── UserEditDialog.vue │ │ │ └── UserRestrictionsEditDialog.vue │ │ ├── icons │ │ │ └── IconFormatLineSpacingDown.vue │ │ ├── menus │ │ │ ├── BookActionsMenu.vue │ │ │ ├── CollectionActionsMenu.vue │ │ │ ├── LibrariesActionsMenu.vue │ │ │ ├── LibraryActionsMenu.vue │ │ │ ├── OneshotActionsMenu.vue │ │ │ ├── ReadListActionsMenu.vue │ │ │ └── SeriesActionsMenu.vue │ │ └── readers │ │ │ ├── ContinuousReader.vue │ │ │ └── PagedReader.vue │ ├── functions │ │ ├── authors.ts │ │ ├── book-format.ts │ │ ├── book-progress.ts │ │ ├── book-spreads.ts │ │ ├── book-title.ts │ │ ├── check-image.ts │ │ ├── error-codes.ts │ │ ├── file.ts │ │ ├── filter.ts │ │ ├── grid-utilities.ts │ │ ├── object.ts │ │ ├── page.ts │ │ ├── query-params.ts │ │ ├── readium.ts │ │ ├── resize-image.ts │ │ ├── shortcuts │ │ │ ├── bookreader.ts │ │ │ ├── continuous-reader.ts │ │ │ ├── epubreader.ts │ │ │ ├── paged-reader.ts │ │ │ └── reader.ts │ │ ├── string.ts │ │ ├── toc.ts │ │ └── urls.ts │ ├── i18n.ts │ ├── locales │ │ ├── ar.json │ │ ├── bg.json │ │ ├── ca.json │ │ ├── cs.json │ │ ├── da.json │ │ ├── de.json │ │ ├── el.json │ │ ├── en.json │ │ ├── eo.json │ │ ├── es.json │ │ ├── fa.json │ │ ├── fi.json │ │ ├── fr.json │ │ ├── gl.json │ │ ├── he.json │ │ ├── hr.json │ │ ├── hu.json │ │ ├── id.json │ │ ├── it.json │ │ ├── ja.json │ │ ├── ko.json │ │ ├── nb.json │ │ ├── nl.json │ │ ├── pl.json │ │ ├── pt-BR.json │ │ ├── pt.json │ │ ├── ru.json │ │ ├── sl.json │ │ ├── sv.json │ │ ├── ta.json │ │ ├── th.json │ │ ├── ti.json │ │ ├── tr.json │ │ ├── vi.json │ │ ├── zh-Hans.json │ │ └── zh-Hant.json │ ├── main.ts │ ├── plugins │ │ ├── actuator.plugin.ts │ │ ├── http.plugin.ts │ │ ├── komga-announcements.plugin.ts │ │ ├── komga-books.plugin.ts │ │ ├── komga-claim.plugin.ts │ │ ├── komga-collections.plugin.ts │ │ ├── komga-filesystem.plugin.ts │ │ ├── komga-fonts.plugin.ts │ │ ├── komga-history.plugin.ts │ │ ├── komga-libraries.plugin.ts │ │ ├── komga-login.plugin.ts │ │ ├── komga-metrics.plugin.ts │ │ ├── komga-oauth2.plugin.ts │ │ ├── komga-pagehashes.plugin.ts │ │ ├── komga-readlists.plugin.ts │ │ ├── komga-referential.plugin.ts │ │ ├── komga-releases.plugin.ts │ │ ├── komga-series.plugin.ts │ │ ├── komga-settings.plugin.ts │ │ ├── komga-sse.plugin.ts │ │ ├── komga-syncpoints.plugin.ts │ │ ├── komga-tasks.plugin.ts │ │ ├── komga-transientbooks.plugin.ts │ │ ├── komga-users.plugin.ts │ │ ├── logger.plugin.ts │ │ ├── persisted-state.ts │ │ └── vuetify.ts │ ├── public-path.js │ ├── router.ts │ ├── services │ │ ├── actuator.service.ts │ │ ├── komga-announcements.service.ts │ │ ├── komga-books.service.ts │ │ ├── komga-claim.service.ts │ │ ├── komga-collections.service.ts │ │ ├── komga-filesystem.service.ts │ │ ├── komga-fonts.service.ts │ │ ├── komga-history.service.ts │ │ ├── komga-libraries.service.ts │ │ ├── komga-login.service.ts │ │ ├── komga-metrics.service.ts │ │ ├── komga-oauth2.service.ts │ │ ├── komga-pagehashes.service.ts │ │ ├── komga-readlists.service.ts │ │ ├── komga-referential.service.ts │ │ ├── komga-releases.service.ts │ │ ├── komga-series.service.ts │ │ ├── komga-settings.service.ts │ │ ├── komga-sse.service.ts │ │ ├── komga-syncpoints.service.ts │ │ ├── komga-tasks.service.ts │ │ ├── komga-transientbooks.service.ts │ │ └── komga-users.service.ts │ ├── shims-tsx.d.ts │ ├── shims-vue.d.ts │ ├── store.ts │ ├── styles │ │ ├── global.css │ │ ├── list-warning.css │ │ ├── r2d2bc │ │ │ ├── popover.css.resource │ │ │ ├── popup.css.resource │ │ │ └── style.css.resource │ │ ├── readium │ │ │ ├── LICENSE │ │ │ ├── ReadiumCSS-after.css.resource │ │ │ ├── ReadiumCSS-before.css.resource │ │ │ └── ReadiumCSS-default.css.resource │ │ └── tabbed-dialog.sass │ ├── types │ │ ├── actuator.ts │ │ ├── author-roles.ts │ │ ├── context.ts │ │ ├── enum-books.ts │ │ ├── enum-libraries.ts │ │ ├── enum-pagehashes.ts │ │ ├── enum-reader.ts │ │ ├── enum-series.ts │ │ ├── enum-users.ts │ │ ├── epub.ts │ │ ├── events.ts │ │ ├── filter.ts │ │ ├── image.ts │ │ ├── items.ts │ │ ├── json-feed.ts │ │ ├── komga-books.ts │ │ ├── komga-claim.ts │ │ ├── komga-clientsettings.ts │ │ ├── komga-collections.ts │ │ ├── komga-filesystem.ts │ │ ├── komga-history.ts │ │ ├── komga-libraries.ts │ │ ├── komga-metrics.ts │ │ ├── komga-oauth2.ts │ │ ├── komga-pagehashes.ts │ │ ├── komga-readlists.ts │ │ ├── komga-search.ts │ │ ├── komga-series.ts │ │ ├── komga-settings.ts │ │ ├── komga-sse.ts │ │ ├── komga-transientbooks.ts │ │ ├── komga-users.ts │ │ ├── library.ts │ │ ├── pageLoader.ts │ │ ├── pageable.ts │ │ ├── readium.ts │ │ ├── release.ts │ │ ├── series-slim.ts │ │ ├── shortcuts.ts │ │ ├── social.ts │ │ ├── themes.ts │ │ └── urls.ts │ └── views │ │ ├── AccountView.vue │ │ ├── AnnouncementsView.vue │ │ ├── ApiKeys.vue │ │ ├── BrowseBook.vue │ │ ├── BrowseBooks.vue │ │ ├── BrowseCollection.vue │ │ ├── BrowseCollections.vue │ │ ├── BrowseLibraries.vue │ │ ├── BrowseOneshot.vue │ │ ├── BrowseReadList.vue │ │ ├── BrowseReadLists.vue │ │ ├── BrowseSeries.vue │ │ ├── DashboardView.vue │ │ ├── DivinaReader.vue │ │ ├── DuplicateFiles.vue │ │ ├── DuplicatePagesKnown.vue │ │ ├── DuplicatePagesUnknown.vue │ │ ├── EpubReader.vue │ │ ├── HistoryView.vue │ │ ├── HomeView.vue │ │ ├── ImportBooks.vue │ │ ├── ImportReadList.vue │ │ ├── LoginView.vue │ │ ├── MediaAnalysis.vue │ │ ├── MetricsView.vue │ │ ├── MissingPosters.vue │ │ ├── NoPinnedLibraries.vue │ │ ├── PageNotFound.vue │ │ ├── SearchView.vue │ │ ├── SelfAuthenticationActivity.vue │ │ ├── ServerManagement.vue │ │ ├── ServerSettings.vue │ │ ├── SettingsServer.vue │ │ ├── SettingsUsers.vue │ │ ├── StartupView.vue │ │ ├── UISettings.vue │ │ ├── UIUserSettings.vue │ │ ├── UpdatesView.vue │ │ └── WelcomeView.vue ├── tests │ └── unit │ │ ├── functions │ │ ├── book-spreads.spec.ts │ │ └── toc.spec.ts │ │ └── types │ │ └── pageLoader.spec.ts ├── tsconfig.json └── vue.config.js ├── komga ├── build.gradle.kts ├── docker │ └── Dockerfile.tpl ├── docs │ └── openapi.json └── src │ ├── benchmark │ ├── kotlin │ │ └── org │ │ │ └── gotson │ │ │ └── komga │ │ │ └── benchmark │ │ │ ├── AbstractBenchmark.kt │ │ │ ├── BenchmarkProperties.kt │ │ │ └── rest │ │ │ ├── AbstractRestBenchmark.kt │ │ │ ├── BrowseBenchmark.kt │ │ │ ├── DashboardBenchmark.kt │ │ │ └── UnsortedBenchmark.kt │ └── resources │ │ ├── application-benchmark.yml │ │ └── junit-platform.properties │ ├── flyway │ ├── kotlin │ │ └── db │ │ │ └── migration │ │ │ └── sqlite │ │ │ ├── V20200810154730__thumbnails_part_2.kt │ │ │ ├── V20200820150923__metadata_fields_part_2.kt │ │ │ ├── V20210624165023__missing_series_metadata.kt │ │ │ ├── V20230801104436__fix_incorrect_language_codes.kt │ │ │ └── V20240422132621__fix_read_progress_locators.kt │ └── resources │ │ ├── db │ │ └── migration │ │ │ └── sqlite │ │ │ ├── V20200706141854__initial_migration.sql │ │ │ ├── V20200730135746__image_dimension.sql │ │ │ ├── V20200810154729__thumbnails_part_1.sql │ │ │ ├── V20200810165912__thumbnails_part_3.sql │ │ │ ├── V20200812161631__thumbnails_series.sql │ │ │ ├── V20200814142406__library_scan_options.sql │ │ │ ├── V20200814145800__library_import_local_artwork.sql │ │ │ ├── V20200817115957__readlists.sql │ │ │ ├── V20200820141405__metadata_fields_part_1.sql │ │ │ ├── V20200820154318__metadata_fields_part_3.sql │ │ │ ├── V20200827103627__index.sql │ │ │ ├── V20200906115600__lower_trim_tags.sql │ │ │ ├── V20210111113543__book_metadata_aggregation.sql │ │ │ ├── V20210308163522__book_isbn.sql │ │ │ ├── V20210504171645__library_convert_to_cbz.sql │ │ │ ├── V20210505150806__library_repair_extensions.sql │ │ │ ├── V20210517145427__fix_rar.sql │ │ │ ├── V20210525172240__index.sql │ │ │ ├── V20210526113555__series_book_count.sql │ │ │ ├── V20210527100741__index_book_created.sql │ │ │ ├── V20210609165742__sidecars.sql │ │ │ ├── V20210617114814__sidecar_cleanup.sql │ │ │ ├── V20210625155626__authentication_activity.sql │ │ │ ├── V20210706162229__trash_bin.sql │ │ │ ├── V20210716153910__library_import_mylar_metadata.sql │ │ │ ├── V20210726140759__cover_preference.sql │ │ │ ├── V20210727102041__full_text_search.sql │ │ │ ├── V20210729173532__series_metadata_total_book_count.sql │ │ │ ├── V20210730111835__book_metadata_aggregation_tag.sql │ │ │ ├── V20210730151147__readlist_summary.sql │ │ │ ├── V20210805174355__remove_full_text_search.sql │ │ │ ├── V20210816113108__library_unavailable.sql │ │ │ ├── V20210831113524__temp_table_urls.sql │ │ │ ├── V20210902100930__series_thumbnail_blob.sql │ │ │ ├── V20210906163333__series_metadata_lowercase_language.sql │ │ │ ├── V20210907115532__spring_session.sql │ │ │ ├── V20210914111439__read_progress_read_date.sql │ │ │ ├── V20210926222612__authentication_activity_source.sql │ │ │ ├── V20211006141333__remove_spring_session.sql │ │ │ ├── V20211206100610__temp_table_ids.sql │ │ │ ├── V20211206124920__collection_and_readlist_thumbnails.sql │ │ │ ├── V20211228152113__book_metadata_link.sql │ │ │ ├── V20220101120232__page_hash.sql │ │ │ ├── V20220105143154__library_hashing_options.sql │ │ │ ├── V20220106143755__page_file_size.sql │ │ │ ├── V20220128152310__page_hash.sql │ │ │ ├── V20220208193203__fix_books_with_missing_pages.sql │ │ │ ├── V20220218111455__historical_events.sql │ │ │ ├── V20220224112015__series_sharing_labels.sql │ │ │ ├── V20220225164240__user_restrictions.sql │ │ │ ├── V20220715213721__perf_indices.sql │ │ │ ├── V20230112151202__library_comicinfo_append_volume.sql │ │ │ ├── V20230113140806__series_metadata_link.sql │ │ │ ├── V20230116112647__series_alternate_title.sql │ │ │ ├── V20230221170726__readlist_ordered.sql │ │ │ ├── V20230310121946__series_metadata_index.sql │ │ │ ├── V20230626150454__xxhash128.sql │ │ │ ├── V20230626151717__missing_page_size.sql │ │ │ ├── V20230626170856__page_hash_remove_columns.sql │ │ │ ├── V20230629114356__remove_library_scandeep_column.sql │ │ │ ├── V20230711173700__read_announcements.sql │ │ │ ├── V20230724114349__oneshots.sql │ │ │ ├── V20230918114751__library_settings.sql │ │ │ ├── V20230921112923__library_directory_exclusions.sql │ │ │ ├── V20230922143307__server_settings.sql │ │ │ ├── V20231005165322__thumbnails_additional_info.sql │ │ │ ├── V20231026164836__thumbnail_book_indices.sql │ │ │ ├── V20231115163730__analyze_pdf.sql │ │ │ ├── V20231116162048__epub.sql │ │ │ ├── V20231201115954__media_extension_blob.sql │ │ │ ├── V20231206152158__progression.sql │ │ │ ├── V20231213170042__cleanup_empty_thumbnails.sql │ │ │ ├── V20231214152305__epub_divina_compatibility.sql │ │ │ ├── V20231214163213__reanalyze_epub.sql │ │ │ ├── V20240309220627__library_settings.sql │ │ │ ├── V20240529120933__apikey.sql │ │ │ ├── V20240529120934__syncpoint.sql │ │ │ ├── V20240614170012__user_kobo_role.sql │ │ │ ├── V20240906152500__read_progress_series_read_date.sql │ │ │ ├── V20240909112827__syncpoint_readlists.sql │ │ │ ├── V20240911175419__kepub.sql │ │ │ ├── V20240925174446__syncpoint_covers.sql │ │ │ ├── V20250108115503__user_roles.sql │ │ │ ├── V20250108172343__koreader_hash.sql │ │ │ └── V20250205151235__client_settings.sql │ │ └── tasks │ │ └── migration │ │ └── sqlite │ │ └── V20231013114850__tasks.sql │ ├── main │ ├── kotlin │ │ └── org │ │ │ └── gotson │ │ │ └── komga │ │ │ ├── Application.kt │ │ │ ├── application │ │ │ ├── events │ │ │ │ └── AsynchronousSpringEventsConfig.kt │ │ │ ├── scheduler │ │ │ │ └── LibraryScanScheduler.kt │ │ │ └── tasks │ │ │ │ ├── Task.kt │ │ │ │ ├── TaskAddedEvent.kt │ │ │ │ ├── TaskEmitter.kt │ │ │ │ ├── TaskHandler.kt │ │ │ │ ├── TaskProcessor.kt │ │ │ │ └── TasksRepository.kt │ │ │ ├── domain │ │ │ ├── model │ │ │ │ ├── AgeRestriction.kt │ │ │ │ ├── AlternateTitle.kt │ │ │ │ ├── ApiKey.kt │ │ │ │ ├── Auditable.kt │ │ │ │ ├── AuthenticationActivity.kt │ │ │ │ ├── Author.kt │ │ │ │ ├── BCP47TagValidator.kt │ │ │ │ ├── Book.kt │ │ │ │ ├── BookAction.kt │ │ │ │ ├── BookMetadata.kt │ │ │ │ ├── BookMetadataAggregation.kt │ │ │ │ ├── BookMetadataPatch.kt │ │ │ │ ├── BookPage.kt │ │ │ │ ├── BookPageNumbered.kt │ │ │ │ ├── BookSearch.kt │ │ │ │ ├── BookWithMedia.kt │ │ │ │ ├── ContentRestrictions.kt │ │ │ │ ├── CopyMode.kt │ │ │ │ ├── Dimension.kt │ │ │ │ ├── DomainEvent.kt │ │ │ │ ├── EpubTocEntry.kt │ │ │ │ ├── Exceptions.kt │ │ │ │ ├── HistoricalEvent.kt │ │ │ │ ├── KomgaSyncToken.kt │ │ │ │ ├── KomgaUser.kt │ │ │ │ ├── Library.kt │ │ │ │ ├── MarkSelectedPreference.kt │ │ │ │ ├── Media.kt │ │ │ │ ├── MediaContainerEntry.kt │ │ │ │ ├── MediaExtension.kt │ │ │ │ ├── MediaFile.kt │ │ │ │ ├── MediaProfile.kt │ │ │ │ ├── MediaType.kt │ │ │ │ ├── MetadataPatchTarget.kt │ │ │ │ ├── PageHash.kt │ │ │ │ ├── PageHashKnown.kt │ │ │ │ ├── PageHashMatch.kt │ │ │ │ ├── PageHashUnknown.kt │ │ │ │ ├── R2Device.kt │ │ │ │ ├── R2Locator.kt │ │ │ │ ├── R2Progression.kt │ │ │ │ ├── ReadList.kt │ │ │ │ ├── ReadListRequest.kt │ │ │ │ ├── ReadProgress.kt │ │ │ │ ├── ReadStatus.kt │ │ │ │ ├── ScanResult.kt │ │ │ │ ├── SearchCondition.kt │ │ │ │ ├── SearchContext.kt │ │ │ │ ├── SearchField.kt │ │ │ │ ├── SearchOperator.kt │ │ │ │ ├── Series.kt │ │ │ │ ├── SeriesCollection.kt │ │ │ │ ├── SeriesMetadata.kt │ │ │ │ ├── SeriesMetadataPatch.kt │ │ │ │ ├── SeriesSearch.kt │ │ │ │ ├── Sidecar.kt │ │ │ │ ├── SyncPoint.kt │ │ │ │ ├── ThumbnailBook.kt │ │ │ │ ├── ThumbnailReadList.kt │ │ │ │ ├── ThumbnailSeries.kt │ │ │ │ ├── ThumbnailSeriesCollection.kt │ │ │ │ ├── ThumbnailSize.kt │ │ │ │ ├── TransientBook.kt │ │ │ │ ├── TypedBytes.kt │ │ │ │ ├── UserRoles.kt │ │ │ │ └── WebLink.kt │ │ │ ├── persistence │ │ │ │ ├── AuthenticationActivityRepository.kt │ │ │ │ ├── BookMetadataAggregationRepository.kt │ │ │ │ ├── BookMetadataRepository.kt │ │ │ │ ├── BookRepository.kt │ │ │ │ ├── HistoricalEventRepository.kt │ │ │ │ ├── KomgaUserRepository.kt │ │ │ │ ├── LibraryRepository.kt │ │ │ │ ├── MediaRepository.kt │ │ │ │ ├── PageHashRepository.kt │ │ │ │ ├── ReadListRepository.kt │ │ │ │ ├── ReadListRequestRepository.kt │ │ │ │ ├── ReadProgressRepository.kt │ │ │ │ ├── ReferentialRepository.kt │ │ │ │ ├── SeriesCollectionRepository.kt │ │ │ │ ├── SeriesMetadataRepository.kt │ │ │ │ ├── SeriesRepository.kt │ │ │ │ ├── SidecarRepository.kt │ │ │ │ ├── SyncPointRepository.kt │ │ │ │ ├── ThumbnailBookRepository.kt │ │ │ │ ├── ThumbnailReadListRepository.kt │ │ │ │ ├── ThumbnailSeriesCollectionRepository.kt │ │ │ │ ├── ThumbnailSeriesRepository.kt │ │ │ │ └── TransientBookRepository.kt │ │ │ └── service │ │ │ │ ├── BookAnalyzer.kt │ │ │ │ ├── BookConverter.kt │ │ │ │ ├── BookImporter.kt │ │ │ │ ├── BookLifecycle.kt │ │ │ │ ├── BookMetadataLifecycle.kt │ │ │ │ ├── BookPageEditor.kt │ │ │ │ ├── FileSystemScanner.kt │ │ │ │ ├── KomgaUserLifecycle.kt │ │ │ │ ├── LibraryContentLifecycle.kt │ │ │ │ ├── LibraryLifecycle.kt │ │ │ │ ├── LocalArtworkLifecycle.kt │ │ │ │ ├── MetadataAggregator.kt │ │ │ │ ├── MetadataApplier.kt │ │ │ │ ├── PageHashLifecycle.kt │ │ │ │ ├── ReadListLifecycle.kt │ │ │ │ ├── ReadListMatcher.kt │ │ │ │ ├── SeriesCollectionLifecycle.kt │ │ │ │ ├── SeriesLifecycle.kt │ │ │ │ ├── SeriesMetadataLifecycle.kt │ │ │ │ ├── SyncPointLifecycle.kt │ │ │ │ └── TransientBookLifecycle.kt │ │ │ ├── infrastructure │ │ │ ├── cache │ │ │ │ └── TransientBookCache.kt │ │ │ ├── configuration │ │ │ │ ├── KomgaProperties.kt │ │ │ │ ├── KomgaSettingsProvider.kt │ │ │ │ ├── SettingChangedEvent.kt │ │ │ │ └── StaticConfiguration.kt │ │ │ ├── datasource │ │ │ │ ├── DataSourcesConfiguration.kt │ │ │ │ ├── FlywaySecondaryMigrationInitializer.kt │ │ │ │ └── SqliteUdfDataSource.kt │ │ │ ├── hash │ │ │ │ ├── Hasher.kt │ │ │ │ └── KoreaderHasher.kt │ │ │ ├── httpexchange │ │ │ │ └── HttpExchangeConfiguration.kt │ │ │ ├── image │ │ │ │ ├── ImageAnalyzer.kt │ │ │ │ ├── ImageConverter.kt │ │ │ │ ├── ImageType.kt │ │ │ │ └── MosaicGenerator.kt │ │ │ ├── jms │ │ │ │ └── ArtemisCleanup.kt │ │ │ ├── jooq │ │ │ │ ├── BookSearchHelper.kt │ │ │ │ ├── ContentRestrictionsSearchHelper.kt │ │ │ │ ├── KomgaJooqConfiguration.kt │ │ │ │ ├── RequiredJoin.kt │ │ │ │ ├── SearchOperatorUtils.kt │ │ │ │ ├── SeriesSearchHelper.kt │ │ │ │ ├── UnpagedSorted.kt │ │ │ │ ├── Utils.kt │ │ │ │ ├── main │ │ │ │ │ ├── AuthenticationActivityDao.kt │ │ │ │ │ ├── BookCommonDao.kt │ │ │ │ │ ├── BookDao.kt │ │ │ │ │ ├── BookDtoDao.kt │ │ │ │ │ ├── BookMetadataAggregationDao.kt │ │ │ │ │ ├── BookMetadataDao.kt │ │ │ │ │ ├── ClientSettingsDtoDao.kt │ │ │ │ │ ├── HistoricalEventDao.kt │ │ │ │ │ ├── HistoricalEventDtoDao.kt │ │ │ │ │ ├── KoboDtoDao.kt │ │ │ │ │ ├── KomgaUserDao.kt │ │ │ │ │ ├── LibraryDao.kt │ │ │ │ │ ├── MediaDao.kt │ │ │ │ │ ├── PageHashDao.kt │ │ │ │ │ ├── ReadListDao.kt │ │ │ │ │ ├── ReadListRequestDao.kt │ │ │ │ │ ├── ReadProgressDao.kt │ │ │ │ │ ├── ReadProgressDtoDao.kt │ │ │ │ │ ├── ReferentialDao.kt │ │ │ │ │ ├── SeriesCollectionDao.kt │ │ │ │ │ ├── SeriesDao.kt │ │ │ │ │ ├── SeriesDtoDao.kt │ │ │ │ │ ├── SeriesMetadataDao.kt │ │ │ │ │ ├── ServerSettingsDao.kt │ │ │ │ │ ├── SidecarDao.kt │ │ │ │ │ ├── SyncPointDao.kt │ │ │ │ │ ├── ThumbnailBookDao.kt │ │ │ │ │ ├── ThumbnailReadListDao.kt │ │ │ │ │ ├── ThumbnailSeriesCollectionDao.kt │ │ │ │ │ └── ThumbnailSeriesDao.kt │ │ │ │ └── tasks │ │ │ │ │ └── TasksDao.kt │ │ │ ├── kobo │ │ │ │ ├── KepubConverter.kt │ │ │ │ ├── KoboHeaders.kt │ │ │ │ ├── KoboProxy.kt │ │ │ │ └── KomgaSyncTokenGenerator.kt │ │ │ ├── mediacontainer │ │ │ │ ├── ContentDetector.kt │ │ │ │ ├── TikaConfiguration.kt │ │ │ │ ├── divina │ │ │ │ │ ├── DivinaExtractor.kt │ │ │ │ │ ├── Rar5Extractor.kt │ │ │ │ │ ├── RarExtractor.kt │ │ │ │ │ └── ZipExtractor.kt │ │ │ │ ├── epub │ │ │ │ │ ├── Epub.kt │ │ │ │ │ ├── Epub2Nav.kt │ │ │ │ │ ├── Epub3Nav.kt │ │ │ │ │ ├── EpubExtractor.kt │ │ │ │ │ ├── ManifestItem.kt │ │ │ │ │ ├── Nav.kt │ │ │ │ │ ├── Ncx.kt │ │ │ │ │ ├── Opf.kt │ │ │ │ │ └── ResourceContent.kt │ │ │ │ ├── mobi │ │ │ │ │ └── MobiExtractor.kt │ │ │ │ └── pdf │ │ │ │ │ └── PdfExtractor.kt │ │ │ ├── metadata │ │ │ │ ├── BookMetadataProvider.kt │ │ │ │ ├── MetadataProvider.kt │ │ │ │ ├── SeriesMetadataFromBookProvider.kt │ │ │ │ ├── SeriesMetadataProvider.kt │ │ │ │ ├── barcode │ │ │ │ │ ├── IsbnBarcodeProvider.kt │ │ │ │ │ └── IsbnConfiguration.kt │ │ │ │ ├── comicrack │ │ │ │ │ ├── ComicInfoProvider.kt │ │ │ │ │ ├── ReadListProvider.kt │ │ │ │ │ └── dto │ │ │ │ │ │ ├── AgeRating.kt │ │ │ │ │ │ ├── Book.kt │ │ │ │ │ │ ├── ComicInfo.kt │ │ │ │ │ │ ├── Manga.kt │ │ │ │ │ │ ├── ReadingList.kt │ │ │ │ │ │ └── YesNo.kt │ │ │ │ ├── epub │ │ │ │ │ └── EpubMetadataProvider.kt │ │ │ │ ├── localartwork │ │ │ │ │ └── LocalArtworkProvider.kt │ │ │ │ ├── mylar │ │ │ │ │ ├── MylarSeriesProvider.kt │ │ │ │ │ └── dto │ │ │ │ │ │ ├── AgeRating.kt │ │ │ │ │ │ ├── MylarMetadata.kt │ │ │ │ │ │ ├── Series.kt │ │ │ │ │ │ └── Status.kt │ │ │ │ └── oneshot │ │ │ │ │ └── OneShotSeriesProvider.kt │ │ │ ├── openapi │ │ │ │ ├── AuthorsAsQueryParam.kt │ │ │ │ ├── OpenApiConfiguration.kt │ │ │ │ └── PageableAnnotations.kt │ │ │ ├── search │ │ │ │ ├── LuceneConfiguration.kt │ │ │ │ ├── LuceneEntity.kt │ │ │ │ ├── LuceneHelper.kt │ │ │ │ ├── MultiLingualAnalyzer.kt │ │ │ │ ├── MultiLingualNGramAnalyzer.kt │ │ │ │ └── SearchIndexLifecycle.kt │ │ │ ├── security │ │ │ │ ├── CorsConfiguration.kt │ │ │ │ ├── KomgaPrincipal.kt │ │ │ │ ├── KomgaUserDetailsService.kt │ │ │ │ ├── LoginListener.kt │ │ │ │ ├── OpdsAuthenticationEntryPoint.kt │ │ │ │ ├── PasswordEncoderConfiguration.kt │ │ │ │ ├── SecurityConfiguration.kt │ │ │ │ ├── TokenEncoder.kt │ │ │ │ ├── UserAgentWebAuthenticationDetails.kt │ │ │ │ ├── UserAgentWebAuthenticationDetailsSource.kt │ │ │ │ ├── apikey │ │ │ │ │ ├── ApiKeyAuthenticationFilter.kt │ │ │ │ │ ├── ApiKeyAuthenticationProvider.kt │ │ │ │ │ ├── ApiKeyAuthenticationToken.kt │ │ │ │ │ ├── ApiKeyGenerator.kt │ │ │ │ │ ├── HeaderApiKeyAuthenticationConverter.kt │ │ │ │ │ └── UriRegexApiKeyAuthenticationConverter.kt │ │ │ │ ├── oauth2 │ │ │ │ │ ├── GithubOAuth2UserService.kt │ │ │ │ │ └── KomgaOAuth2UserServiceConfiguration.kt │ │ │ │ └── session │ │ │ │ │ ├── SessionConfiguration.kt │ │ │ │ │ ├── SessionListener.kt │ │ │ │ │ └── SmartHttpSessionIdResolver.kt │ │ │ ├── sidecar │ │ │ │ ├── SidecarBookConsumer.kt │ │ │ │ └── SidecarSeriesConsumer.kt │ │ │ ├── transaction │ │ │ │ └── TransactionConfiguration.kt │ │ │ ├── util │ │ │ │ ├── TempDirectoryChecker.kt │ │ │ │ └── ZipFileUtils.kt │ │ │ ├── validation │ │ │ │ ├── BCP47.kt │ │ │ │ ├── Blank.kt │ │ │ │ ├── NullOrBlankOrBCP47.kt │ │ │ │ ├── NullOrBlankOrISBN.kt │ │ │ │ ├── NullOrNotBlank.kt │ │ │ │ └── NullOrNotEmpty.kt │ │ │ ├── web │ │ │ │ ├── Authors.kt │ │ │ │ ├── AuthorsHandlerMethodArgumentResolver.kt │ │ │ │ ├── BracketParamsFilterConfiguration.kt │ │ │ │ ├── BracketParamsRequestWrapper.kt │ │ │ │ ├── DelimitedPair.kt │ │ │ │ ├── DelimitedPairHandlerMethodArgumentResolver.kt │ │ │ │ ├── EtagFilterConfiguration.kt │ │ │ │ ├── KoboMissingPortFilter.kt │ │ │ │ ├── KoboMissingPortFilterConfiguration.kt │ │ │ │ ├── RequestLoggingFilterConfig.kt │ │ │ │ ├── Utils.kt │ │ │ │ ├── WebMvcConfiguration.kt │ │ │ │ ├── WebServerConfiguration.kt │ │ │ │ └── WebServerEffectiveSettings.kt │ │ │ └── xml │ │ │ │ ├── MappingJackson2XmlHttpMessageConverterConfiguration.kt │ │ │ │ └── NamespaceXmlFactory.kt │ │ │ ├── interfaces │ │ │ ├── api │ │ │ │ ├── CommonBookController.kt │ │ │ │ ├── ContentRestrictionChecker.kt │ │ │ │ ├── OpdsGenerator.kt │ │ │ │ ├── Utils.kt │ │ │ │ ├── WebPubGenerator.kt │ │ │ │ ├── dto │ │ │ │ │ ├── Constants.kt │ │ │ │ │ ├── OpdsLinkRel.kt │ │ │ │ │ └── WepPub.kt │ │ │ │ ├── kobo │ │ │ │ │ ├── KoboController.kt │ │ │ │ │ ├── dto │ │ │ │ │ │ ├── AmountDto.kt │ │ │ │ │ │ ├── AuthDto.kt │ │ │ │ │ │ ├── BookEntitlementContainerDto.kt │ │ │ │ │ │ ├── BookEntitlementDto.kt │ │ │ │ │ │ ├── BookmarkDto.kt │ │ │ │ │ │ ├── ContributorDto.kt │ │ │ │ │ │ ├── DownloadUrlDto.kt │ │ │ │ │ │ ├── FormatDto.kt │ │ │ │ │ │ ├── KoboBookMetadataDto.kt │ │ │ │ │ │ ├── KoboSeriesDto.kt │ │ │ │ │ │ ├── LocationDto.kt │ │ │ │ │ │ ├── PeriodDto.kt │ │ │ │ │ │ ├── PublisherDto.kt │ │ │ │ │ │ ├── ReadingStateDto.kt │ │ │ │ │ │ ├── ReadingStateStateUpdateDto.kt │ │ │ │ │ │ ├── ReadingStateUpdateResultDto.kt │ │ │ │ │ │ ├── ResourcesDto.kt │ │ │ │ │ │ ├── ResultDto.kt │ │ │ │ │ │ ├── StatisticsDto.kt │ │ │ │ │ │ ├── StatusDto.kt │ │ │ │ │ │ ├── StatusInfoDto.kt │ │ │ │ │ │ ├── SyncResultDto.kt │ │ │ │ │ │ ├── TagDto.kt │ │ │ │ │ │ ├── TagItemDto.kt │ │ │ │ │ │ ├── TagTypeDto.kt │ │ │ │ │ │ └── TestsDto.kt │ │ │ │ │ └── persistence │ │ │ │ │ │ └── KoboDtoRepository.kt │ │ │ │ ├── kosync │ │ │ │ │ ├── KoreaderSyncController.kt │ │ │ │ │ └── dto │ │ │ │ │ │ ├── DocumentProgressDto.kt │ │ │ │ │ │ └── UserAuthenticationDto.kt │ │ │ │ ├── opds │ │ │ │ │ ├── OpdsCommonController.kt │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── OpdsController.kt │ │ │ │ │ │ └── dto │ │ │ │ │ │ │ ├── OpdsAuthor.kt │ │ │ │ │ │ │ ├── OpdsEntry.kt │ │ │ │ │ │ │ ├── OpdsFeed.kt │ │ │ │ │ │ │ ├── OpdsLink.kt │ │ │ │ │ │ │ ├── OpenSearchDescription.kt │ │ │ │ │ │ │ └── XmlNamespaces.kt │ │ │ │ │ └── v2 │ │ │ │ │ │ ├── Opds2Controller.kt │ │ │ │ │ │ └── dto │ │ │ │ │ │ ├── Opds2Dto.kt │ │ │ │ │ │ └── OpdsAuthDto.kt │ │ │ │ ├── persistence │ │ │ │ │ ├── BookDtoRepository.kt │ │ │ │ │ ├── HistoricalEventDtoRepository.kt │ │ │ │ │ ├── ReadProgressDtoRepository.kt │ │ │ │ │ └── SeriesDtoRepository.kt │ │ │ │ └── rest │ │ │ │ │ ├── AnnouncementController.kt │ │ │ │ │ ├── BookController.kt │ │ │ │ │ ├── ClaimController.kt │ │ │ │ │ ├── ClientSettingsController.kt │ │ │ │ │ ├── ErrorHandlingControllerAdvice.kt │ │ │ │ │ ├── FileSystemController.kt │ │ │ │ │ ├── FontsController.kt │ │ │ │ │ ├── HistoricalEventController.kt │ │ │ │ │ ├── LibraryController.kt │ │ │ │ │ ├── LoginController.kt │ │ │ │ │ ├── OAuth2Controller.kt │ │ │ │ │ ├── PageHashController.kt │ │ │ │ │ ├── ReadListController.kt │ │ │ │ │ ├── ReferentialController.kt │ │ │ │ │ ├── ReleaseController.kt │ │ │ │ │ ├── SeriesCollectionController.kt │ │ │ │ │ ├── SeriesController.kt │ │ │ │ │ ├── SettingsController.kt │ │ │ │ │ ├── SyncPointController.kt │ │ │ │ │ ├── TaskController.kt │ │ │ │ │ ├── TransientBooksController.kt │ │ │ │ │ ├── UserController.kt │ │ │ │ │ └── dto │ │ │ │ │ ├── AlternateTitleDto.kt │ │ │ │ │ ├── AlternateTitleUpdateDto.kt │ │ │ │ │ ├── ApiKeyDto.kt │ │ │ │ │ ├── ApiKeyRequestDto.kt │ │ │ │ │ ├── AuthenticationActivityDto.kt │ │ │ │ │ ├── AuthorDto.kt │ │ │ │ │ ├── BookDto.kt │ │ │ │ │ ├── BookImportBatchDto.kt │ │ │ │ │ ├── BookMetadataUpdateDto.kt │ │ │ │ │ ├── ClientSettingDto.kt │ │ │ │ │ ├── CollectionCreationDto.kt │ │ │ │ │ ├── CollectionDto.kt │ │ │ │ │ ├── CollectionUpdateDto.kt │ │ │ │ │ ├── GithubReleaseDto.kt │ │ │ │ │ ├── GroupCountDto.kt │ │ │ │ │ ├── HistoricalEventDto.kt │ │ │ │ │ ├── JsonFeedDto.kt │ │ │ │ │ ├── LibraryCreationDto.kt │ │ │ │ │ ├── LibraryDto.kt │ │ │ │ │ ├── LibraryUpdateDto.kt │ │ │ │ │ ├── PageDto.kt │ │ │ │ │ ├── PageHashCreationDto.kt │ │ │ │ │ ├── PageHashKnownDto.kt │ │ │ │ │ ├── PageHashMatchDto.kt │ │ │ │ │ ├── PageHashUnknownDto.kt │ │ │ │ │ ├── PasswordUpdateDto.kt │ │ │ │ │ ├── R2Positions.kt │ │ │ │ │ ├── ReadListCreationDto.kt │ │ │ │ │ ├── ReadListDto.kt │ │ │ │ │ ├── ReadListRequestMatchDto.kt │ │ │ │ │ ├── ReadListUpdateDto.kt │ │ │ │ │ ├── ReadProgressUpdateDto.kt │ │ │ │ │ ├── ReleaseDto.kt │ │ │ │ │ ├── ScanIntervalDto.kt │ │ │ │ │ ├── SeriesCoverDto.kt │ │ │ │ │ ├── SeriesDto.kt │ │ │ │ │ ├── SeriesMetadataUpdateDto.kt │ │ │ │ │ ├── SettingsDto.kt │ │ │ │ │ ├── SettingsUpdateDto.kt │ │ │ │ │ ├── TachiyomiReadProgressDto.kt │ │ │ │ │ ├── TachiyomiReadProgressUpdateDto.kt │ │ │ │ │ ├── TachiyomiReadProgressV2Dto.kt │ │ │ │ │ ├── ThumbnailBookDto.kt │ │ │ │ │ ├── ThumbnailReadListDto.kt │ │ │ │ │ ├── ThumbnailSeriesCollectionDto.kt │ │ │ │ │ ├── ThumbnailSeriesDto.kt │ │ │ │ │ ├── ThumbnailSizeDto.kt │ │ │ │ │ ├── UserCreationDto.kt │ │ │ │ │ ├── UserDto.kt │ │ │ │ │ ├── UserUpdateDto.kt │ │ │ │ │ └── WebLinkDto.kt │ │ │ ├── apprunner │ │ │ │ ├── ListUsersRunner.kt │ │ │ │ └── PasswordResetRunner.kt │ │ │ ├── mvc │ │ │ │ ├── IndexController.kt │ │ │ │ └── ResourceNotFoundController.kt │ │ │ ├── scheduler │ │ │ │ ├── AuthenticationActivityCleanupController.kt │ │ │ │ ├── InitialUserController.kt │ │ │ │ ├── MetricsPublisherController.kt │ │ │ │ ├── PeriodicScannerController.kt │ │ │ │ └── SearchIndexController.kt │ │ │ └── sse │ │ │ │ ├── SseController.kt │ │ │ │ └── dto │ │ │ │ ├── BookImportSseDto.kt │ │ │ │ ├── BookSseDto.kt │ │ │ │ ├── CollectionSseDto.kt │ │ │ │ ├── LibrarySseDto.kt │ │ │ │ ├── ReadListSseDto.kt │ │ │ │ ├── ReadProgressSeriesSseDto.kt │ │ │ │ ├── ReadProgressSseDto.kt │ │ │ │ ├── SeriesSseDto.kt │ │ │ │ ├── SessionExpiredDto.kt │ │ │ │ ├── TaskQueueSseDto.kt │ │ │ │ ├── ThumbnailBookSseDto.kt │ │ │ │ ├── ThumbnailReadListSseDto.kt │ │ │ │ ├── ThumbnailSeriesCollectionSseDto.kt │ │ │ │ └── ThumbnailSeriesSseDto.kt │ │ │ └── language │ │ │ └── LanguageUtils.kt │ └── resources │ │ ├── application-dev.yml │ │ ├── application-docker.yml │ │ ├── application-localdb.yml │ │ ├── application.yml │ │ ├── banner.txt │ │ └── embeddedFonts │ │ └── OpenDyslexic │ │ ├── OpenDyslexic-Bold-Italic.woff │ │ ├── OpenDyslexic-Bold-Italic.woff2 │ │ ├── OpenDyslexic-Bold.woff │ │ ├── OpenDyslexic-Bold.woff2 │ │ ├── OpenDyslexic-Italic.woff │ │ ├── OpenDyslexic-Italic.woff2 │ │ ├── OpenDyslexic-Regular.woff │ │ └── OpenDyslexic-Regular.woff2 │ └── test │ ├── kotlin │ └── org │ │ └── gotson │ │ └── komga │ │ ├── AutowiringTest.kt │ │ ├── Utils.kt │ │ ├── application │ │ └── tasks │ │ │ └── TaskProcessorTest.kt │ │ ├── architecture │ │ ├── CodingRulesTest.kt │ │ ├── DomainDrivenDesignRulesTest.kt │ │ ├── NamingConventionTest.kt │ │ └── SlicesIsolationRulesTest.kt │ │ ├── domain │ │ ├── model │ │ │ ├── AuthorTest.kt │ │ │ ├── BCP47TagValidatorTest.kt │ │ │ ├── BookMetadataTest.kt │ │ │ ├── BookSearchTest.kt │ │ │ ├── ContentRestrictionsTest.kt │ │ │ ├── KomgaUserTest.kt │ │ │ ├── PageHashTest.kt │ │ │ ├── ProxyExtensionTest.kt │ │ │ ├── SeriesMetadataTest.kt │ │ │ ├── SeriesSearchTest.kt │ │ │ └── Utils.kt │ │ └── service │ │ │ ├── BookAnalyzerTest.kt │ │ │ ├── BookImporterTest.kt │ │ │ ├── BookLifecycleTest.kt │ │ │ ├── FileSystemScannerTest.kt │ │ │ ├── KomgaUserLifecycleTest.kt │ │ │ ├── LibraryContentLifecycleTest.kt │ │ │ ├── LibraryLifecycleTest.kt │ │ │ ├── MetadataAggregatorTest.kt │ │ │ ├── MetadataApplierTest.kt │ │ │ ├── ReadListMatcherTest.kt │ │ │ ├── SeriesLifecycleTest.kt │ │ │ ├── SyncPointLifecycleTest.kt │ │ │ └── TransientBookLifecycleTest.kt │ │ ├── infrastructure │ │ ├── jooq │ │ │ ├── TestUtils.kt │ │ │ ├── main │ │ │ │ ├── BookDaoTest.kt │ │ │ │ ├── BookDtoDaoTest.kt │ │ │ │ ├── BookMetadataAggregationDaoTest.kt │ │ │ │ ├── BookMetadataDaoTest.kt │ │ │ │ ├── BookSearchTest.kt │ │ │ │ ├── ClientSettingsDtoDaoTest.kt │ │ │ │ ├── KomgaUserDaoTest.kt │ │ │ │ ├── LibraryDaoTest.kt │ │ │ │ ├── MediaDaoTest.kt │ │ │ │ ├── PageHashDaoTest.kt │ │ │ │ ├── ReadListDaoTest.kt │ │ │ │ ├── ReadProgressDaoTest.kt │ │ │ │ ├── SeriesCollectionDaoTest.kt │ │ │ │ ├── SeriesDaoTest.kt │ │ │ │ ├── SeriesDtoDaoTest.kt │ │ │ │ ├── SeriesMetadataDaoTest.kt │ │ │ │ ├── SeriesSearchTest.kt │ │ │ │ └── ServerSettingsDaoTest.kt │ │ │ └── tasks │ │ │ │ └── TasksDaoTest.kt │ │ ├── kobo │ │ │ ├── KepubConverterTest.kt │ │ │ └── KomgaSyncTokenGeneratorTest.kt │ │ ├── mediacontainer │ │ │ ├── divina │ │ │ │ ├── RarExtractorTest.kt │ │ │ │ └── ZipExtractorTest.kt │ │ │ ├── epub │ │ │ │ ├── NavTest.kt │ │ │ │ ├── NcxTest.kt │ │ │ │ └── OpfTest.kt │ │ │ └── pdf │ │ │ │ └── PdfExtractorTest.kt │ │ ├── metadata │ │ │ ├── barcode │ │ │ │ └── IsbnBarcodeProviderTest.kt │ │ │ ├── comicrack │ │ │ │ ├── ComicInfoProviderTest.kt │ │ │ │ ├── ReadListProviderTest.kt │ │ │ │ └── dto │ │ │ │ │ ├── ComicInfoTest.kt │ │ │ │ │ └── ReadingListTest.kt │ │ │ ├── epub │ │ │ │ └── EpubMetadataProviderTest.kt │ │ │ ├── localartwork │ │ │ │ └── LocalArtworkProviderTest.kt │ │ │ └── mylar │ │ │ │ ├── MylarSeriesProviderTest.kt │ │ │ │ └── dto │ │ │ │ └── SeriesTest.kt │ │ ├── search │ │ │ ├── MultilingualAnalyzerTest.kt │ │ │ ├── MultilingualNGramAnalyzerTest.kt │ │ │ ├── SearchIndexLifecycleTest.kt │ │ │ └── Utils.kt │ │ └── web │ │ │ └── BracketParamsRequestWrapperTest.kt │ │ └── interfaces │ │ ├── api │ │ ├── SessionTest.kt │ │ ├── kobo │ │ │ └── KoboControllerTest.kt │ │ ├── kosync │ │ │ └── KoreaderSyncControllerTest.kt │ │ ├── opds │ │ │ └── OpdsControllerTest.kt │ │ └── rest │ │ │ ├── ActuatorTest.kt │ │ │ ├── AnnouncementControllerTest.kt │ │ │ ├── ApiKeyTest.kt │ │ │ ├── BookControllerPageTest.kt │ │ │ ├── BookControllerTest.kt │ │ │ ├── ClaimControllerTest.kt │ │ │ ├── ClientSettingsControllerTest.kt │ │ │ ├── FileSystemControllerTest.kt │ │ │ ├── FontsControllerTest.kt │ │ │ ├── LibraryControllerTest.kt │ │ │ ├── MockSpringSecurity.kt │ │ │ ├── OAuth2ControllerTest.kt │ │ │ ├── ReadListControllerTest.kt │ │ │ ├── SeriesCollectionControllerTest.kt │ │ │ ├── SeriesControllerTest.kt │ │ │ ├── SettingsControllerTest.kt │ │ │ ├── UserControllerDemoTest.kt │ │ │ └── UserControllerTest.kt │ │ └── mvc │ │ └── ResourceNotFoundControllerTest.kt │ └── resources │ ├── application-test.yml │ ├── archives │ ├── 7zip-encrypted.7z │ ├── 7zip.7z │ ├── epub3.epub │ ├── rar4-encrypted.rar │ ├── rar4-solid.rar │ ├── rar4.rar │ ├── rar5-encrypted.rar │ ├── rar5-solid.rar │ ├── rar5.rar │ ├── zip-as-epub.epub │ ├── zip-bzip2.zip │ ├── zip-copy.zip │ ├── zip-deflate64.zip │ ├── zip-encrypted.zip │ ├── zip-lzma.zip │ ├── zip-ppmd.zip │ └── zip.zip │ ├── barcode │ ├── komga.png │ └── page_384.jpg │ ├── epub │ ├── 1979.opf │ ├── Die Drei 3.opf │ ├── Panik im Paradies.opf │ ├── The Incomplete Theft - Ralph Burke.epub │ ├── clash.opf │ ├── nav.xhtml │ └── toc.ncx │ ├── hashpage │ ├── dd.png │ │ ├── 1.png │ │ └── 2.png │ ├── e-drq.webp │ │ ├── 1.webp │ │ └── 2.webp │ ├── e-sou.jpeg │ │ ├── 1.jpg │ │ └── 2.jpg │ ├── e-sou.webp │ │ ├── 1.webp │ │ └── 2.webp │ ├── e-z.jpeg │ │ ├── 1.jpg │ │ └── 2.jpg │ ├── m-d.jpeg │ │ ├── 1.jpg │ │ └── 2.jpg │ ├── tg.png │ │ ├── 1.png │ │ └── 2.png │ ├── tr.gif │ │ ├── 1.gif │ │ └── 2.gif │ └── xt.png │ │ ├── 1.png │ │ └── 2.png │ ├── io │ └── mockk │ │ └── settings.properties │ ├── junit-platform.properties │ └── pdf │ └── komga.pdf ├── res ├── komga-gray-minimal.svg ├── komga-grayscale.svg ├── komga.svg ├── komga_300x300.png └── komga_text_as_path.svg └── settings.gradle /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/report_issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/.github/ISSUE_TEMPLATE/report_issue.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/readme-images/app-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/.github/readme-images/app-icon.png -------------------------------------------------------------------------------- /.github/readme-images/jetbrains.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/.github/readme-images/jetbrains.svg -------------------------------------------------------------------------------- /.github/workflows/build-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/.github/workflows/build-test.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/komga__bootRun__dev.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/.idea/runConfigurations/komga__bootRun__dev.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/komga__bootRun__dev_demo_noclaim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/.idea/runConfigurations/komga__bootRun__dev_demo_noclaim.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/komga__bootRun__dev_localdb_noclaim_oauth2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/.idea/runConfigurations/komga__bootRun__dev_localdb_noclaim_oauth2.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/komga__bootRun__dev_noclaim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/.idea/runConfigurations/komga__bootRun__dev_noclaim.xml -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /.svu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/.svu.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/DEVELOPING.md -------------------------------------------------------------------------------- /DOCKERHUB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/DOCKERHUB.md -------------------------------------------------------------------------------- /ERRORCODES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/ERRORCODES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/LICENSE -------------------------------------------------------------------------------- /PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/PRIVACY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/README.md -------------------------------------------------------------------------------- /apple.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/apple.cer -------------------------------------------------------------------------------- /conventionalcommit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/conventionalcommit.json -------------------------------------------------------------------------------- /conveyor.ci.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/conveyor.ci.conf -------------------------------------------------------------------------------- /conveyor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/conveyor.conf -------------------------------------------------------------------------------- /conveyor.detect.conf: -------------------------------------------------------------------------------- 1 | include required("conveyor.conf") 2 | 3 | app.jvm.modules = detect 4 | -------------------------------------------------------------------------------- /conveyor.msstore.ci.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/conveyor.msstore.ci.conf -------------------------------------------------------------------------------- /conveyor.msstore.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/conveyor.msstore.conf -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | version=1.21.3 2 | org.gradle.jvmargs=-Xmx2G 3 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/gradlew.bat -------------------------------------------------------------------------------- /komga-tray/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/build.gradle.kts -------------------------------------------------------------------------------- /komga-tray/conveyor/required-jdk-modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/conveyor/required-jdk-modules.txt -------------------------------------------------------------------------------- /komga-tray/lib/mac/aarch64/libaom.3.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/aarch64/libaom.3.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/aarch64/libarchive.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/aarch64/libarchive.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/aarch64/libb2.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/aarch64/libb2.1.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/aarch64/libbrotlicommon.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/aarch64/libbrotlicommon.1.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/aarch64/libbrotlidec.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/aarch64/libbrotlidec.1.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/aarch64/libbrotlienc.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/aarch64/libbrotlienc.1.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/aarch64/libde265.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/aarch64/libde265.0.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/aarch64/libheif.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/aarch64/libheif.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/aarch64/libhwy.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/aarch64/libhwy.1.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/aarch64/libjxl.0.8.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/aarch64/libjxl.0.8.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/aarch64/libjxl.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/aarch64/libjxl.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/aarch64/liblcms2.2.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/aarch64/liblcms2.2.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/aarch64/liblz4.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/aarch64/liblz4.1.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/aarch64/liblzma.5.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/aarch64/liblzma.5.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/aarch64/libsharpyuv.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/aarch64/libsharpyuv.0.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/aarch64/libvmaf.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/aarch64/libvmaf.1.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/aarch64/libwebp.7.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/aarch64/libwebp.7.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/aarch64/libwebp.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/aarch64/libwebp.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/aarch64/libwebpdemux.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/aarch64/libwebpdemux.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/aarch64/libx265.199.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/aarch64/libx265.199.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/aarch64/libzstd.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/aarch64/libzstd.1.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/x64/libaom.3.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/x64/libaom.3.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/x64/libarchive.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/x64/libarchive.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/x64/libb2.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/x64/libb2.1.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/x64/libbrotlicommon.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/x64/libbrotlicommon.1.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/x64/libbrotlidec.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/x64/libbrotlidec.1.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/x64/libbrotlienc.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/x64/libbrotlienc.1.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/x64/libde265.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/x64/libde265.0.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/x64/libheif.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/x64/libheif.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/x64/libhwy.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/x64/libhwy.1.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/x64/libjxl.0.8.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/x64/libjxl.0.8.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/x64/libjxl.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/x64/libjxl.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/x64/liblcms2.2.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/x64/liblcms2.2.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/x64/liblz4.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/x64/liblz4.1.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/x64/liblzma.5.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/x64/liblzma.5.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/x64/libsharpyuv.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/x64/libsharpyuv.0.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/x64/libvmaf.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/x64/libvmaf.1.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/x64/libwebp.7.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/x64/libwebp.7.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/x64/libwebp.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/x64/libwebp.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/x64/libwebpdemux.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/x64/libwebpdemux.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/x64/libx265.199.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/x64/libx265.199.dylib -------------------------------------------------------------------------------- /komga-tray/lib/mac/x64/libzstd.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/mac/x64/libzstd.1.dylib -------------------------------------------------------------------------------- /komga-tray/lib/windows/x64/aom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/windows/x64/aom.dll -------------------------------------------------------------------------------- /komga-tray/lib/windows/x64/archive.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/windows/x64/archive.dll -------------------------------------------------------------------------------- /komga-tray/lib/windows/x64/brotlicommon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/windows/x64/brotlicommon.dll -------------------------------------------------------------------------------- /komga-tray/lib/windows/x64/brotlidec.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/windows/x64/brotlidec.dll -------------------------------------------------------------------------------- /komga-tray/lib/windows/x64/brotlienc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/windows/x64/brotlienc.dll -------------------------------------------------------------------------------- /komga-tray/lib/windows/x64/dav1d.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/windows/x64/dav1d.dll -------------------------------------------------------------------------------- /komga-tray/lib/windows/x64/heif.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/windows/x64/heif.dll -------------------------------------------------------------------------------- /komga-tray/lib/windows/x64/hwy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/windows/x64/hwy.dll -------------------------------------------------------------------------------- /komga-tray/lib/windows/x64/jxl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/windows/x64/jxl.dll -------------------------------------------------------------------------------- /komga-tray/lib/windows/x64/jxl_threads.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/windows/x64/jxl_threads.dll -------------------------------------------------------------------------------- /komga-tray/lib/windows/x64/lcms2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/windows/x64/lcms2.dll -------------------------------------------------------------------------------- /komga-tray/lib/windows/x64/libde265.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/windows/x64/libde265.dll -------------------------------------------------------------------------------- /komga-tray/lib/windows/x64/libsharpyuv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/windows/x64/libsharpyuv.dll -------------------------------------------------------------------------------- /komga-tray/lib/windows/x64/libwebp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/windows/x64/libwebp.dll -------------------------------------------------------------------------------- /komga-tray/lib/windows/x64/libwebpdecoder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/windows/x64/libwebpdecoder.dll -------------------------------------------------------------------------------- /komga-tray/lib/windows/x64/libwebpmux.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/windows/x64/libwebpmux.dll -------------------------------------------------------------------------------- /komga-tray/lib/windows/x64/libx265.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/windows/x64/libx265.dll -------------------------------------------------------------------------------- /komga-tray/lib/windows/x64/webp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/windows/x64/webp.dll -------------------------------------------------------------------------------- /komga-tray/lib/windows/x64/webpdemux.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/windows/x64/webpdemux.dll -------------------------------------------------------------------------------- /komga-tray/lib/windows/x64/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/lib/windows/x64/zlib1.dll -------------------------------------------------------------------------------- /komga-tray/src/main/kotlin/org/gotson/komga/DesktopApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/src/main/kotlin/org/gotson/komga/DesktopApplication.kt -------------------------------------------------------------------------------- /komga-tray/src/main/kotlin/org/gotson/komga/RB.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/src/main/kotlin/org/gotson/komga/RB.kt -------------------------------------------------------------------------------- /komga-tray/src/main/kotlin/org/gotson/komga/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/src/main/kotlin/org/gotson/komga/Utils.kt -------------------------------------------------------------------------------- /komga-tray/src/main/kotlin/org/gotson/komga/application/gui/ErrorDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/src/main/kotlin/org/gotson/komga/application/gui/ErrorDialog.kt -------------------------------------------------------------------------------- /komga-tray/src/main/kotlin/org/gotson/komga/application/gui/TrayIconRunner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/src/main/kotlin/org/gotson/komga/application/gui/TrayIconRunner.kt -------------------------------------------------------------------------------- /komga-tray/src/main/resources/application-mac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/src/main/resources/application-mac.yml -------------------------------------------------------------------------------- /komga-tray/src/main/resources/application-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/src/main/resources/application-windows.yml -------------------------------------------------------------------------------- /komga-tray/src/main/resources/icons/komga-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/src/main/resources/icons/komga-color.svg -------------------------------------------------------------------------------- /komga-tray/src/main/resources/icons/komga-gray-minimal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/src/main/resources/icons/komga-gray-minimal.svg -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/src/main/resources/org/gotson/komga/messages.properties -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages_ar.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages_bg.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages_ca.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages_cs.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/src/main/resources/org/gotson/komga/messages_cs.properties -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages_da.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/src/main/resources/org/gotson/komga/messages_da.properties -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/src/main/resources/org/gotson/komga/messages_de.properties -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages_el.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages_eo.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/src/main/resources/org/gotson/komga/messages_es.properties -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages_fa.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages_fi.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/src/main/resources/org/gotson/komga/messages_fi.properties -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/src/main/resources/org/gotson/komga/messages_fr.properties -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages_gl.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages_he.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages_hr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/src/main/resources/org/gotson/komga/messages_hr.properties -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages_hu.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/src/main/resources/org/gotson/komga/messages_hu.properties -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages_id.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages_it.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/src/main/resources/org/gotson/komga/messages_it.properties -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages_ja.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/src/main/resources/org/gotson/komga/messages_ja.properties -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages_ko.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/src/main/resources/org/gotson/komga/messages_ko.properties -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages_nb_NO.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages_nl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/src/main/resources/org/gotson/komga/messages_nl.properties -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages_pl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/src/main/resources/org/gotson/komga/messages_pl.properties -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages_pt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/src/main/resources/org/gotson/komga/messages_pt.properties -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages_pt_BR.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages_ru.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/src/main/resources/org/gotson/komga/messages_ru.properties -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages_sl.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages_sv.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/src/main/resources/org/gotson/komga/messages_sv.properties -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages_ta.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/src/main/resources/org/gotson/komga/messages_ta.properties -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages_th.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/src/main/resources/org/gotson/komga/messages_th.properties -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages_ti.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages_tr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-tray/src/main/resources/org/gotson/komga/messages_tr.properties -------------------------------------------------------------------------------- /komga-tray/src/main/resources/org/gotson/komga/messages_vi.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /komga-webui/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 0.5% 2 | ios >= 12 3 | last 2 versions 4 | not dead 5 | -------------------------------------------------------------------------------- /komga-webui/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/.editorconfig -------------------------------------------------------------------------------- /komga-webui/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/.env -------------------------------------------------------------------------------- /komga-webui/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/.env.development -------------------------------------------------------------------------------- /komga-webui/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/.eslintrc.js -------------------------------------------------------------------------------- /komga-webui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/.gitignore -------------------------------------------------------------------------------- /komga-webui/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/babel.config.js -------------------------------------------------------------------------------- /komga-webui/fork-ts-checker.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/fork-ts-checker.config.js -------------------------------------------------------------------------------- /komga-webui/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/jest.config.js -------------------------------------------------------------------------------- /komga-webui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/package-lock.json -------------------------------------------------------------------------------- /komga-webui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/package.json -------------------------------------------------------------------------------- /komga-webui/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/postcss.config.js -------------------------------------------------------------------------------- /komga-webui/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /komga-webui/public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /komga-webui/public/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/public/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /komga-webui/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/public/apple-touch-icon.png -------------------------------------------------------------------------------- /komga-webui/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/public/favicon-16x16.png -------------------------------------------------------------------------------- /komga-webui/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/public/favicon-32x32.png -------------------------------------------------------------------------------- /komga-webui/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/public/favicon.ico -------------------------------------------------------------------------------- /komga-webui/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/public/index.html -------------------------------------------------------------------------------- /komga-webui/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/public/manifest.json -------------------------------------------------------------------------------- /komga-webui/public/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/public/mstile-144x144.png -------------------------------------------------------------------------------- /komga-webui/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/App.vue -------------------------------------------------------------------------------- /komga-webui/src/assets/cover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/assets/cover.svg -------------------------------------------------------------------------------- /komga-webui/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/assets/logo.svg -------------------------------------------------------------------------------- /komga-webui/src/components/AlphabeticalNavigation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/AlphabeticalNavigation.vue -------------------------------------------------------------------------------- /komga-webui/src/components/ApiKeyTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/ApiKeyTable.vue -------------------------------------------------------------------------------- /komga-webui/src/components/AuthenticationActivityTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/AuthenticationActivityTable.vue -------------------------------------------------------------------------------- /komga-webui/src/components/CollectionsExpansionPanels.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/CollectionsExpansionPanels.vue -------------------------------------------------------------------------------- /komga-webui/src/components/DropZone.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/DropZone.vue -------------------------------------------------------------------------------- /komga-webui/src/components/EmptyState.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/EmptyState.vue -------------------------------------------------------------------------------- /komga-webui/src/components/FileImportRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/FileImportRow.vue -------------------------------------------------------------------------------- /komga-webui/src/components/FilterDrawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/FilterDrawer.vue -------------------------------------------------------------------------------- /komga-webui/src/components/FilterList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/FilterList.vue -------------------------------------------------------------------------------- /komga-webui/src/components/FilterPanels.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/FilterPanels.vue -------------------------------------------------------------------------------- /komga-webui/src/components/HorizontalScroller.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/HorizontalScroller.vue -------------------------------------------------------------------------------- /komga-webui/src/components/ItemBrowser.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/ItemBrowser.vue -------------------------------------------------------------------------------- /komga-webui/src/components/ItemCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/ItemCard.vue -------------------------------------------------------------------------------- /komga-webui/src/components/LibraryNavigation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/LibraryNavigation.vue -------------------------------------------------------------------------------- /komga-webui/src/components/PageHashKnownCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/PageHashKnownCard.vue -------------------------------------------------------------------------------- /komga-webui/src/components/PageHashMatchesTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/PageHashMatchesTable.vue -------------------------------------------------------------------------------- /komga-webui/src/components/PageHashUnknownCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/PageHashUnknownCard.vue -------------------------------------------------------------------------------- /komga-webui/src/components/PageSizeSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/PageSizeSelect.vue -------------------------------------------------------------------------------- /komga-webui/src/components/PagesTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/PagesTable.vue -------------------------------------------------------------------------------- /komga-webui/src/components/ReadListMatchRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/ReadListMatchRow.vue -------------------------------------------------------------------------------- /komga-webui/src/components/ReadListsExpansionPanels.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/ReadListsExpansionPanels.vue -------------------------------------------------------------------------------- /komga-webui/src/components/ReadMore.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/ReadMore.vue -------------------------------------------------------------------------------- /komga-webui/src/components/ReorderLibraries.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/ReorderLibraries.vue -------------------------------------------------------------------------------- /komga-webui/src/components/ReusableDialogs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/ReusableDialogs.vue -------------------------------------------------------------------------------- /komga-webui/src/components/RtlIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/RtlIcon.vue -------------------------------------------------------------------------------- /komga-webui/src/components/SearchBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/SearchBox.vue -------------------------------------------------------------------------------- /komga-webui/src/components/SearchBoxBase.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/SearchBoxBase.vue -------------------------------------------------------------------------------- /komga-webui/src/components/SettingsSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/SettingsSelect.vue -------------------------------------------------------------------------------- /komga-webui/src/components/SettingsSwitch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/SettingsSwitch.vue -------------------------------------------------------------------------------- /komga-webui/src/components/SortList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/SortList.vue -------------------------------------------------------------------------------- /komga-webui/src/components/ThumbnailCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/ThumbnailCard.vue -------------------------------------------------------------------------------- /komga-webui/src/components/ToasterNotification.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/ToasterNotification.vue -------------------------------------------------------------------------------- /komga-webui/src/components/TocList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/TocList.vue -------------------------------------------------------------------------------- /komga-webui/src/components/TocListItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/TocListItem.vue -------------------------------------------------------------------------------- /komga-webui/src/components/UsersList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/UsersList.vue -------------------------------------------------------------------------------- /komga-webui/src/components/bars/MultiSelectBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/bars/MultiSelectBar.vue -------------------------------------------------------------------------------- /komga-webui/src/components/bars/ToolbarSticky.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/bars/ToolbarSticky.vue -------------------------------------------------------------------------------- /komga-webui/src/components/dialogs/ApiKeyAddDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/dialogs/ApiKeyAddDialog.vue -------------------------------------------------------------------------------- /komga-webui/src/components/dialogs/BookPickerDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/dialogs/BookPickerDialog.vue -------------------------------------------------------------------------------- /komga-webui/src/components/dialogs/BulkEditBooksDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/dialogs/BulkEditBooksDialog.vue -------------------------------------------------------------------------------- /komga-webui/src/components/dialogs/CollectionAddToDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/dialogs/CollectionAddToDialog.vue -------------------------------------------------------------------------------- /komga-webui/src/components/dialogs/CollectionEditDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/dialogs/CollectionEditDialog.vue -------------------------------------------------------------------------------- /komga-webui/src/components/dialogs/ConfirmationDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/dialogs/ConfirmationDialog.vue -------------------------------------------------------------------------------- /komga-webui/src/components/dialogs/EditBooksDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/dialogs/EditBooksDialog.vue -------------------------------------------------------------------------------- /komga-webui/src/components/dialogs/EditOneshotDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/dialogs/EditOneshotDialog.vue -------------------------------------------------------------------------------- /komga-webui/src/components/dialogs/EditRecommendedDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/dialogs/EditRecommendedDialog.vue -------------------------------------------------------------------------------- /komga-webui/src/components/dialogs/EditSeriesDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/dialogs/EditSeriesDialog.vue -------------------------------------------------------------------------------- /komga-webui/src/components/dialogs/FileBrowserDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/dialogs/FileBrowserDialog.vue -------------------------------------------------------------------------------- /komga-webui/src/components/dialogs/FileNameChooserDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/dialogs/FileNameChooserDialog.vue -------------------------------------------------------------------------------- /komga-webui/src/components/dialogs/LibraryEditDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/dialogs/LibraryEditDialog.vue -------------------------------------------------------------------------------- /komga-webui/src/components/dialogs/PasswordChangeDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/dialogs/PasswordChangeDialog.vue -------------------------------------------------------------------------------- /komga-webui/src/components/dialogs/ReadListAddToDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/dialogs/ReadListAddToDialog.vue -------------------------------------------------------------------------------- /komga-webui/src/components/dialogs/ReadListEditDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/dialogs/ReadListEditDialog.vue -------------------------------------------------------------------------------- /komga-webui/src/components/dialogs/SeriesPickerDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/dialogs/SeriesPickerDialog.vue -------------------------------------------------------------------------------- /komga-webui/src/components/dialogs/ShortcutHelpDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/dialogs/ShortcutHelpDialog.vue -------------------------------------------------------------------------------- /komga-webui/src/components/dialogs/ThumbnailExplorerDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/dialogs/ThumbnailExplorerDialog.vue -------------------------------------------------------------------------------- /komga-webui/src/components/dialogs/TransientBookDetailsDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/dialogs/TransientBookDetailsDialog.vue -------------------------------------------------------------------------------- /komga-webui/src/components/dialogs/TransientBookViewerDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/dialogs/TransientBookViewerDialog.vue -------------------------------------------------------------------------------- /komga-webui/src/components/dialogs/UserAddDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/dialogs/UserAddDialog.vue -------------------------------------------------------------------------------- /komga-webui/src/components/dialogs/UserEditDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/dialogs/UserEditDialog.vue -------------------------------------------------------------------------------- /komga-webui/src/components/dialogs/UserRestrictionsEditDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/dialogs/UserRestrictionsEditDialog.vue -------------------------------------------------------------------------------- /komga-webui/src/components/icons/IconFormatLineSpacingDown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/icons/IconFormatLineSpacingDown.vue -------------------------------------------------------------------------------- /komga-webui/src/components/menus/BookActionsMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/menus/BookActionsMenu.vue -------------------------------------------------------------------------------- /komga-webui/src/components/menus/CollectionActionsMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/menus/CollectionActionsMenu.vue -------------------------------------------------------------------------------- /komga-webui/src/components/menus/LibrariesActionsMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/menus/LibrariesActionsMenu.vue -------------------------------------------------------------------------------- /komga-webui/src/components/menus/LibraryActionsMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/menus/LibraryActionsMenu.vue -------------------------------------------------------------------------------- /komga-webui/src/components/menus/OneshotActionsMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/menus/OneshotActionsMenu.vue -------------------------------------------------------------------------------- /komga-webui/src/components/menus/ReadListActionsMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/menus/ReadListActionsMenu.vue -------------------------------------------------------------------------------- /komga-webui/src/components/menus/SeriesActionsMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/menus/SeriesActionsMenu.vue -------------------------------------------------------------------------------- /komga-webui/src/components/readers/ContinuousReader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/readers/ContinuousReader.vue -------------------------------------------------------------------------------- /komga-webui/src/components/readers/PagedReader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/components/readers/PagedReader.vue -------------------------------------------------------------------------------- /komga-webui/src/functions/authors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/functions/authors.ts -------------------------------------------------------------------------------- /komga-webui/src/functions/book-format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/functions/book-format.ts -------------------------------------------------------------------------------- /komga-webui/src/functions/book-progress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/functions/book-progress.ts -------------------------------------------------------------------------------- /komga-webui/src/functions/book-spreads.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/functions/book-spreads.ts -------------------------------------------------------------------------------- /komga-webui/src/functions/book-title.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/functions/book-title.ts -------------------------------------------------------------------------------- /komga-webui/src/functions/check-image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/functions/check-image.ts -------------------------------------------------------------------------------- /komga-webui/src/functions/error-codes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/functions/error-codes.ts -------------------------------------------------------------------------------- /komga-webui/src/functions/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/functions/file.ts -------------------------------------------------------------------------------- /komga-webui/src/functions/filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/functions/filter.ts -------------------------------------------------------------------------------- /komga-webui/src/functions/grid-utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/functions/grid-utilities.ts -------------------------------------------------------------------------------- /komga-webui/src/functions/object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/functions/object.ts -------------------------------------------------------------------------------- /komga-webui/src/functions/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/functions/page.ts -------------------------------------------------------------------------------- /komga-webui/src/functions/query-params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/functions/query-params.ts -------------------------------------------------------------------------------- /komga-webui/src/functions/readium.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/functions/readium.ts -------------------------------------------------------------------------------- /komga-webui/src/functions/resize-image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/functions/resize-image.ts -------------------------------------------------------------------------------- /komga-webui/src/functions/shortcuts/bookreader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/functions/shortcuts/bookreader.ts -------------------------------------------------------------------------------- /komga-webui/src/functions/shortcuts/continuous-reader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/functions/shortcuts/continuous-reader.ts -------------------------------------------------------------------------------- /komga-webui/src/functions/shortcuts/epubreader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/functions/shortcuts/epubreader.ts -------------------------------------------------------------------------------- /komga-webui/src/functions/shortcuts/paged-reader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/functions/shortcuts/paged-reader.ts -------------------------------------------------------------------------------- /komga-webui/src/functions/shortcuts/reader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/functions/shortcuts/reader.ts -------------------------------------------------------------------------------- /komga-webui/src/functions/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/functions/string.ts -------------------------------------------------------------------------------- /komga-webui/src/functions/toc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/functions/toc.ts -------------------------------------------------------------------------------- /komga-webui/src/functions/urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/functions/urls.ts -------------------------------------------------------------------------------- /komga-webui/src/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/i18n.ts -------------------------------------------------------------------------------- /komga-webui/src/locales/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/ar.json -------------------------------------------------------------------------------- /komga-webui/src/locales/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/bg.json -------------------------------------------------------------------------------- /komga-webui/src/locales/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/ca.json -------------------------------------------------------------------------------- /komga-webui/src/locales/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/cs.json -------------------------------------------------------------------------------- /komga-webui/src/locales/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/da.json -------------------------------------------------------------------------------- /komga-webui/src/locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/de.json -------------------------------------------------------------------------------- /komga-webui/src/locales/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/el.json -------------------------------------------------------------------------------- /komga-webui/src/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/en.json -------------------------------------------------------------------------------- /komga-webui/src/locales/eo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/eo.json -------------------------------------------------------------------------------- /komga-webui/src/locales/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/es.json -------------------------------------------------------------------------------- /komga-webui/src/locales/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/fa.json -------------------------------------------------------------------------------- /komga-webui/src/locales/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/fi.json -------------------------------------------------------------------------------- /komga-webui/src/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/fr.json -------------------------------------------------------------------------------- /komga-webui/src/locales/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/gl.json -------------------------------------------------------------------------------- /komga-webui/src/locales/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/he.json -------------------------------------------------------------------------------- /komga-webui/src/locales/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/hr.json -------------------------------------------------------------------------------- /komga-webui/src/locales/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/hu.json -------------------------------------------------------------------------------- /komga-webui/src/locales/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/id.json -------------------------------------------------------------------------------- /komga-webui/src/locales/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/it.json -------------------------------------------------------------------------------- /komga-webui/src/locales/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/ja.json -------------------------------------------------------------------------------- /komga-webui/src/locales/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/ko.json -------------------------------------------------------------------------------- /komga-webui/src/locales/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/nb.json -------------------------------------------------------------------------------- /komga-webui/src/locales/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/nl.json -------------------------------------------------------------------------------- /komga-webui/src/locales/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/pl.json -------------------------------------------------------------------------------- /komga-webui/src/locales/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/pt-BR.json -------------------------------------------------------------------------------- /komga-webui/src/locales/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/pt.json -------------------------------------------------------------------------------- /komga-webui/src/locales/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/ru.json -------------------------------------------------------------------------------- /komga-webui/src/locales/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/sl.json -------------------------------------------------------------------------------- /komga-webui/src/locales/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/sv.json -------------------------------------------------------------------------------- /komga-webui/src/locales/ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/ta.json -------------------------------------------------------------------------------- /komga-webui/src/locales/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/th.json -------------------------------------------------------------------------------- /komga-webui/src/locales/ti.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/ti.json -------------------------------------------------------------------------------- /komga-webui/src/locales/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/tr.json -------------------------------------------------------------------------------- /komga-webui/src/locales/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/vi.json -------------------------------------------------------------------------------- /komga-webui/src/locales/zh-Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/zh-Hans.json -------------------------------------------------------------------------------- /komga-webui/src/locales/zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/locales/zh-Hant.json -------------------------------------------------------------------------------- /komga-webui/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/main.ts -------------------------------------------------------------------------------- /komga-webui/src/plugins/actuator.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/plugins/actuator.plugin.ts -------------------------------------------------------------------------------- /komga-webui/src/plugins/http.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/plugins/http.plugin.ts -------------------------------------------------------------------------------- /komga-webui/src/plugins/komga-announcements.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/plugins/komga-announcements.plugin.ts -------------------------------------------------------------------------------- /komga-webui/src/plugins/komga-books.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/plugins/komga-books.plugin.ts -------------------------------------------------------------------------------- /komga-webui/src/plugins/komga-claim.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/plugins/komga-claim.plugin.ts -------------------------------------------------------------------------------- /komga-webui/src/plugins/komga-collections.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/plugins/komga-collections.plugin.ts -------------------------------------------------------------------------------- /komga-webui/src/plugins/komga-filesystem.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/plugins/komga-filesystem.plugin.ts -------------------------------------------------------------------------------- /komga-webui/src/plugins/komga-fonts.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/plugins/komga-fonts.plugin.ts -------------------------------------------------------------------------------- /komga-webui/src/plugins/komga-history.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/plugins/komga-history.plugin.ts -------------------------------------------------------------------------------- /komga-webui/src/plugins/komga-libraries.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/plugins/komga-libraries.plugin.ts -------------------------------------------------------------------------------- /komga-webui/src/plugins/komga-login.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/plugins/komga-login.plugin.ts -------------------------------------------------------------------------------- /komga-webui/src/plugins/komga-metrics.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/plugins/komga-metrics.plugin.ts -------------------------------------------------------------------------------- /komga-webui/src/plugins/komga-oauth2.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/plugins/komga-oauth2.plugin.ts -------------------------------------------------------------------------------- /komga-webui/src/plugins/komga-pagehashes.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/plugins/komga-pagehashes.plugin.ts -------------------------------------------------------------------------------- /komga-webui/src/plugins/komga-readlists.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/plugins/komga-readlists.plugin.ts -------------------------------------------------------------------------------- /komga-webui/src/plugins/komga-referential.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/plugins/komga-referential.plugin.ts -------------------------------------------------------------------------------- /komga-webui/src/plugins/komga-releases.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/plugins/komga-releases.plugin.ts -------------------------------------------------------------------------------- /komga-webui/src/plugins/komga-series.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/plugins/komga-series.plugin.ts -------------------------------------------------------------------------------- /komga-webui/src/plugins/komga-settings.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/plugins/komga-settings.plugin.ts -------------------------------------------------------------------------------- /komga-webui/src/plugins/komga-sse.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/plugins/komga-sse.plugin.ts -------------------------------------------------------------------------------- /komga-webui/src/plugins/komga-syncpoints.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/plugins/komga-syncpoints.plugin.ts -------------------------------------------------------------------------------- /komga-webui/src/plugins/komga-tasks.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/plugins/komga-tasks.plugin.ts -------------------------------------------------------------------------------- /komga-webui/src/plugins/komga-transientbooks.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/plugins/komga-transientbooks.plugin.ts -------------------------------------------------------------------------------- /komga-webui/src/plugins/komga-users.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/plugins/komga-users.plugin.ts -------------------------------------------------------------------------------- /komga-webui/src/plugins/logger.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/plugins/logger.plugin.ts -------------------------------------------------------------------------------- /komga-webui/src/plugins/persisted-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/plugins/persisted-state.ts -------------------------------------------------------------------------------- /komga-webui/src/plugins/vuetify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/plugins/vuetify.ts -------------------------------------------------------------------------------- /komga-webui/src/public-path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/public-path.js -------------------------------------------------------------------------------- /komga-webui/src/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/router.ts -------------------------------------------------------------------------------- /komga-webui/src/services/actuator.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/services/actuator.service.ts -------------------------------------------------------------------------------- /komga-webui/src/services/komga-announcements.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/services/komga-announcements.service.ts -------------------------------------------------------------------------------- /komga-webui/src/services/komga-books.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/services/komga-books.service.ts -------------------------------------------------------------------------------- /komga-webui/src/services/komga-claim.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/services/komga-claim.service.ts -------------------------------------------------------------------------------- /komga-webui/src/services/komga-collections.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/services/komga-collections.service.ts -------------------------------------------------------------------------------- /komga-webui/src/services/komga-filesystem.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/services/komga-filesystem.service.ts -------------------------------------------------------------------------------- /komga-webui/src/services/komga-fonts.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/services/komga-fonts.service.ts -------------------------------------------------------------------------------- /komga-webui/src/services/komga-history.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/services/komga-history.service.ts -------------------------------------------------------------------------------- /komga-webui/src/services/komga-libraries.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/services/komga-libraries.service.ts -------------------------------------------------------------------------------- /komga-webui/src/services/komga-login.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/services/komga-login.service.ts -------------------------------------------------------------------------------- /komga-webui/src/services/komga-metrics.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/services/komga-metrics.service.ts -------------------------------------------------------------------------------- /komga-webui/src/services/komga-oauth2.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/services/komga-oauth2.service.ts -------------------------------------------------------------------------------- /komga-webui/src/services/komga-pagehashes.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/services/komga-pagehashes.service.ts -------------------------------------------------------------------------------- /komga-webui/src/services/komga-readlists.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/services/komga-readlists.service.ts -------------------------------------------------------------------------------- /komga-webui/src/services/komga-referential.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/services/komga-referential.service.ts -------------------------------------------------------------------------------- /komga-webui/src/services/komga-releases.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/services/komga-releases.service.ts -------------------------------------------------------------------------------- /komga-webui/src/services/komga-series.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/services/komga-series.service.ts -------------------------------------------------------------------------------- /komga-webui/src/services/komga-settings.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/services/komga-settings.service.ts -------------------------------------------------------------------------------- /komga-webui/src/services/komga-sse.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/services/komga-sse.service.ts -------------------------------------------------------------------------------- /komga-webui/src/services/komga-syncpoints.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/services/komga-syncpoints.service.ts -------------------------------------------------------------------------------- /komga-webui/src/services/komga-tasks.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/services/komga-tasks.service.ts -------------------------------------------------------------------------------- /komga-webui/src/services/komga-transientbooks.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/services/komga-transientbooks.service.ts -------------------------------------------------------------------------------- /komga-webui/src/services/komga-users.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/services/komga-users.service.ts -------------------------------------------------------------------------------- /komga-webui/src/shims-tsx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/shims-tsx.d.ts -------------------------------------------------------------------------------- /komga-webui/src/shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/shims-vue.d.ts -------------------------------------------------------------------------------- /komga-webui/src/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/store.ts -------------------------------------------------------------------------------- /komga-webui/src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/styles/global.css -------------------------------------------------------------------------------- /komga-webui/src/styles/list-warning.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/styles/list-warning.css -------------------------------------------------------------------------------- /komga-webui/src/styles/r2d2bc/popover.css.resource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/styles/r2d2bc/popover.css.resource -------------------------------------------------------------------------------- /komga-webui/src/styles/r2d2bc/popup.css.resource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/styles/r2d2bc/popup.css.resource -------------------------------------------------------------------------------- /komga-webui/src/styles/r2d2bc/style.css.resource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/styles/r2d2bc/style.css.resource -------------------------------------------------------------------------------- /komga-webui/src/styles/readium/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/styles/readium/LICENSE -------------------------------------------------------------------------------- /komga-webui/src/styles/readium/ReadiumCSS-after.css.resource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/styles/readium/ReadiumCSS-after.css.resource -------------------------------------------------------------------------------- /komga-webui/src/styles/readium/ReadiumCSS-before.css.resource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/styles/readium/ReadiumCSS-before.css.resource -------------------------------------------------------------------------------- /komga-webui/src/styles/readium/ReadiumCSS-default.css.resource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/styles/readium/ReadiumCSS-default.css.resource -------------------------------------------------------------------------------- /komga-webui/src/styles/tabbed-dialog.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/styles/tabbed-dialog.sass -------------------------------------------------------------------------------- /komga-webui/src/types/actuator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/actuator.ts -------------------------------------------------------------------------------- /komga-webui/src/types/author-roles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/author-roles.ts -------------------------------------------------------------------------------- /komga-webui/src/types/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/context.ts -------------------------------------------------------------------------------- /komga-webui/src/types/enum-books.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/enum-books.ts -------------------------------------------------------------------------------- /komga-webui/src/types/enum-libraries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/enum-libraries.ts -------------------------------------------------------------------------------- /komga-webui/src/types/enum-pagehashes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/enum-pagehashes.ts -------------------------------------------------------------------------------- /komga-webui/src/types/enum-reader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/enum-reader.ts -------------------------------------------------------------------------------- /komga-webui/src/types/enum-series.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/enum-series.ts -------------------------------------------------------------------------------- /komga-webui/src/types/enum-users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/enum-users.ts -------------------------------------------------------------------------------- /komga-webui/src/types/epub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/epub.ts -------------------------------------------------------------------------------- /komga-webui/src/types/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/events.ts -------------------------------------------------------------------------------- /komga-webui/src/types/filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/filter.ts -------------------------------------------------------------------------------- /komga-webui/src/types/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/image.ts -------------------------------------------------------------------------------- /komga-webui/src/types/items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/items.ts -------------------------------------------------------------------------------- /komga-webui/src/types/json-feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/json-feed.ts -------------------------------------------------------------------------------- /komga-webui/src/types/komga-books.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/komga-books.ts -------------------------------------------------------------------------------- /komga-webui/src/types/komga-claim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/komga-claim.ts -------------------------------------------------------------------------------- /komga-webui/src/types/komga-clientsettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/komga-clientsettings.ts -------------------------------------------------------------------------------- /komga-webui/src/types/komga-collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/komga-collections.ts -------------------------------------------------------------------------------- /komga-webui/src/types/komga-filesystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/komga-filesystem.ts -------------------------------------------------------------------------------- /komga-webui/src/types/komga-history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/komga-history.ts -------------------------------------------------------------------------------- /komga-webui/src/types/komga-libraries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/komga-libraries.ts -------------------------------------------------------------------------------- /komga-webui/src/types/komga-metrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/komga-metrics.ts -------------------------------------------------------------------------------- /komga-webui/src/types/komga-oauth2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/komga-oauth2.ts -------------------------------------------------------------------------------- /komga-webui/src/types/komga-pagehashes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/komga-pagehashes.ts -------------------------------------------------------------------------------- /komga-webui/src/types/komga-readlists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/komga-readlists.ts -------------------------------------------------------------------------------- /komga-webui/src/types/komga-search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/komga-search.ts -------------------------------------------------------------------------------- /komga-webui/src/types/komga-series.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/komga-series.ts -------------------------------------------------------------------------------- /komga-webui/src/types/komga-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/komga-settings.ts -------------------------------------------------------------------------------- /komga-webui/src/types/komga-sse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/komga-sse.ts -------------------------------------------------------------------------------- /komga-webui/src/types/komga-transientbooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/komga-transientbooks.ts -------------------------------------------------------------------------------- /komga-webui/src/types/komga-users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/komga-users.ts -------------------------------------------------------------------------------- /komga-webui/src/types/library.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/library.ts -------------------------------------------------------------------------------- /komga-webui/src/types/pageLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/pageLoader.ts -------------------------------------------------------------------------------- /komga-webui/src/types/pageable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/pageable.ts -------------------------------------------------------------------------------- /komga-webui/src/types/readium.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/readium.ts -------------------------------------------------------------------------------- /komga-webui/src/types/release.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/release.ts -------------------------------------------------------------------------------- /komga-webui/src/types/series-slim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/series-slim.ts -------------------------------------------------------------------------------- /komga-webui/src/types/shortcuts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/shortcuts.ts -------------------------------------------------------------------------------- /komga-webui/src/types/social.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/social.ts -------------------------------------------------------------------------------- /komga-webui/src/types/themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/themes.ts -------------------------------------------------------------------------------- /komga-webui/src/types/urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/types/urls.ts -------------------------------------------------------------------------------- /komga-webui/src/views/AccountView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/AccountView.vue -------------------------------------------------------------------------------- /komga-webui/src/views/AnnouncementsView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/AnnouncementsView.vue -------------------------------------------------------------------------------- /komga-webui/src/views/ApiKeys.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/ApiKeys.vue -------------------------------------------------------------------------------- /komga-webui/src/views/BrowseBook.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/BrowseBook.vue -------------------------------------------------------------------------------- /komga-webui/src/views/BrowseBooks.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/BrowseBooks.vue -------------------------------------------------------------------------------- /komga-webui/src/views/BrowseCollection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/BrowseCollection.vue -------------------------------------------------------------------------------- /komga-webui/src/views/BrowseCollections.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/BrowseCollections.vue -------------------------------------------------------------------------------- /komga-webui/src/views/BrowseLibraries.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/BrowseLibraries.vue -------------------------------------------------------------------------------- /komga-webui/src/views/BrowseOneshot.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/BrowseOneshot.vue -------------------------------------------------------------------------------- /komga-webui/src/views/BrowseReadList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/BrowseReadList.vue -------------------------------------------------------------------------------- /komga-webui/src/views/BrowseReadLists.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/BrowseReadLists.vue -------------------------------------------------------------------------------- /komga-webui/src/views/BrowseSeries.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/BrowseSeries.vue -------------------------------------------------------------------------------- /komga-webui/src/views/DashboardView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/DashboardView.vue -------------------------------------------------------------------------------- /komga-webui/src/views/DivinaReader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/DivinaReader.vue -------------------------------------------------------------------------------- /komga-webui/src/views/DuplicateFiles.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/DuplicateFiles.vue -------------------------------------------------------------------------------- /komga-webui/src/views/DuplicatePagesKnown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/DuplicatePagesKnown.vue -------------------------------------------------------------------------------- /komga-webui/src/views/DuplicatePagesUnknown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/DuplicatePagesUnknown.vue -------------------------------------------------------------------------------- /komga-webui/src/views/EpubReader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/EpubReader.vue -------------------------------------------------------------------------------- /komga-webui/src/views/HistoryView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/HistoryView.vue -------------------------------------------------------------------------------- /komga-webui/src/views/HomeView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/HomeView.vue -------------------------------------------------------------------------------- /komga-webui/src/views/ImportBooks.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/ImportBooks.vue -------------------------------------------------------------------------------- /komga-webui/src/views/ImportReadList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/ImportReadList.vue -------------------------------------------------------------------------------- /komga-webui/src/views/LoginView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/LoginView.vue -------------------------------------------------------------------------------- /komga-webui/src/views/MediaAnalysis.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/MediaAnalysis.vue -------------------------------------------------------------------------------- /komga-webui/src/views/MetricsView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/MetricsView.vue -------------------------------------------------------------------------------- /komga-webui/src/views/MissingPosters.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/MissingPosters.vue -------------------------------------------------------------------------------- /komga-webui/src/views/NoPinnedLibraries.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/NoPinnedLibraries.vue -------------------------------------------------------------------------------- /komga-webui/src/views/PageNotFound.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/PageNotFound.vue -------------------------------------------------------------------------------- /komga-webui/src/views/SearchView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/SearchView.vue -------------------------------------------------------------------------------- /komga-webui/src/views/SelfAuthenticationActivity.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/SelfAuthenticationActivity.vue -------------------------------------------------------------------------------- /komga-webui/src/views/ServerManagement.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/ServerManagement.vue -------------------------------------------------------------------------------- /komga-webui/src/views/ServerSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/ServerSettings.vue -------------------------------------------------------------------------------- /komga-webui/src/views/SettingsServer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/SettingsServer.vue -------------------------------------------------------------------------------- /komga-webui/src/views/SettingsUsers.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/SettingsUsers.vue -------------------------------------------------------------------------------- /komga-webui/src/views/StartupView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/StartupView.vue -------------------------------------------------------------------------------- /komga-webui/src/views/UISettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/UISettings.vue -------------------------------------------------------------------------------- /komga-webui/src/views/UIUserSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/UIUserSettings.vue -------------------------------------------------------------------------------- /komga-webui/src/views/UpdatesView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/UpdatesView.vue -------------------------------------------------------------------------------- /komga-webui/src/views/WelcomeView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/src/views/WelcomeView.vue -------------------------------------------------------------------------------- /komga-webui/tests/unit/functions/book-spreads.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/tests/unit/functions/book-spreads.spec.ts -------------------------------------------------------------------------------- /komga-webui/tests/unit/functions/toc.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/tests/unit/functions/toc.spec.ts -------------------------------------------------------------------------------- /komga-webui/tests/unit/types/pageLoader.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/tests/unit/types/pageLoader.spec.ts -------------------------------------------------------------------------------- /komga-webui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/tsconfig.json -------------------------------------------------------------------------------- /komga-webui/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga-webui/vue.config.js -------------------------------------------------------------------------------- /komga/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/build.gradle.kts -------------------------------------------------------------------------------- /komga/docker/Dockerfile.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/docker/Dockerfile.tpl -------------------------------------------------------------------------------- /komga/docs/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/docs/openapi.json -------------------------------------------------------------------------------- /komga/src/benchmark/kotlin/org/gotson/komga/benchmark/AbstractBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/benchmark/kotlin/org/gotson/komga/benchmark/AbstractBenchmark.kt -------------------------------------------------------------------------------- /komga/src/benchmark/kotlin/org/gotson/komga/benchmark/BenchmarkProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/benchmark/kotlin/org/gotson/komga/benchmark/BenchmarkProperties.kt -------------------------------------------------------------------------------- /komga/src/benchmark/kotlin/org/gotson/komga/benchmark/rest/BrowseBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/benchmark/kotlin/org/gotson/komga/benchmark/rest/BrowseBenchmark.kt -------------------------------------------------------------------------------- /komga/src/benchmark/kotlin/org/gotson/komga/benchmark/rest/UnsortedBenchmark.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/benchmark/kotlin/org/gotson/komga/benchmark/rest/UnsortedBenchmark.kt -------------------------------------------------------------------------------- /komga/src/benchmark/resources/application-benchmark.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/benchmark/resources/application-benchmark.yml -------------------------------------------------------------------------------- /komga/src/benchmark/resources/junit-platform.properties: -------------------------------------------------------------------------------- 1 | junit.jupiter.testinstance.lifecycle.default=per_class 2 | -------------------------------------------------------------------------------- /komga/src/flyway/resources/db/migration/sqlite/V20200814145800__library_import_local_artwork.sql: -------------------------------------------------------------------------------- 1 | alter table library 2 | add column IMPORT_LOCAL_ARTWORK boolean NOT NULL DEFAULT 1; 3 | -------------------------------------------------------------------------------- /komga/src/flyway/resources/db/migration/sqlite/V20200817115957__readlists.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/flyway/resources/db/migration/sqlite/V20200817115957__readlists.sql -------------------------------------------------------------------------------- /komga/src/flyway/resources/db/migration/sqlite/V20200827103627__index.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/flyway/resources/db/migration/sqlite/V20200827103627__index.sql -------------------------------------------------------------------------------- /komga/src/flyway/resources/db/migration/sqlite/V20210308163522__book_isbn.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/flyway/resources/db/migration/sqlite/V20210308163522__book_isbn.sql -------------------------------------------------------------------------------- /komga/src/flyway/resources/db/migration/sqlite/V20210504171645__library_convert_to_cbz.sql: -------------------------------------------------------------------------------- 1 | alter table library 2 | add column CONVERT_TO_CBZ boolean NOT NULL DEFAULT 0; 3 | -------------------------------------------------------------------------------- /komga/src/flyway/resources/db/migration/sqlite/V20210505150806__library_repair_extensions.sql: -------------------------------------------------------------------------------- 1 | alter table library 2 | add column REPAIR_EXTENSIONS boolean NOT NULL DEFAULT 0; 3 | -------------------------------------------------------------------------------- /komga/src/flyway/resources/db/migration/sqlite/V20210517145427__fix_rar.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/flyway/resources/db/migration/sqlite/V20210517145427__fix_rar.sql -------------------------------------------------------------------------------- /komga/src/flyway/resources/db/migration/sqlite/V20210525172240__index.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/flyway/resources/db/migration/sqlite/V20210525172240__index.sql -------------------------------------------------------------------------------- /komga/src/flyway/resources/db/migration/sqlite/V20210609165742__sidecars.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/flyway/resources/db/migration/sqlite/V20210609165742__sidecars.sql -------------------------------------------------------------------------------- /komga/src/flyway/resources/db/migration/sqlite/V20210706162229__trash_bin.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/flyway/resources/db/migration/sqlite/V20210706162229__trash_bin.sql -------------------------------------------------------------------------------- /komga/src/flyway/resources/db/migration/sqlite/V20210716153910__library_import_mylar_metadata.sql: -------------------------------------------------------------------------------- 1 | alter table library 2 | add column IMPORT_MYLAR_SERIES boolean NOT NULL DEFAULT 1; 3 | -------------------------------------------------------------------------------- /komga/src/flyway/resources/db/migration/sqlite/V20210726140759__cover_preference.sql: -------------------------------------------------------------------------------- 1 | alter table library 2 | add column SERIES_COVER varchar NOT NULL DEFAULT 'FIRST'; 3 | -------------------------------------------------------------------------------- /komga/src/flyway/resources/db/migration/sqlite/V20220101120232__page_hash.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/flyway/resources/db/migration/sqlite/V20220101120232__page_hash.sql -------------------------------------------------------------------------------- /komga/src/flyway/resources/db/migration/sqlite/V20220106143755__page_file_size.sql: -------------------------------------------------------------------------------- 1 | alter table media_page 2 | add column FILE_SIZE int8 NULL; 3 | -------------------------------------------------------------------------------- /komga/src/flyway/resources/db/migration/sqlite/V20220128152310__page_hash.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/flyway/resources/db/migration/sqlite/V20220128152310__page_hash.sql -------------------------------------------------------------------------------- /komga/src/flyway/resources/db/migration/sqlite/V20230221170726__readlist_ordered.sql: -------------------------------------------------------------------------------- 1 | alter table READLIST 2 | add column ORDERED boolean NOT NULL DEFAULT 1; 3 | -------------------------------------------------------------------------------- /komga/src/flyway/resources/db/migration/sqlite/V20230626150454__xxhash128.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/flyway/resources/db/migration/sqlite/V20230626150454__xxhash128.sql -------------------------------------------------------------------------------- /komga/src/flyway/resources/db/migration/sqlite/V20230629114356__remove_library_scandeep_column.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE LIBRARY 2 | RENAME COLUMN SCAN_DEEP to _UNUSED; 3 | -------------------------------------------------------------------------------- /komga/src/flyway/resources/db/migration/sqlite/V20230724114349__oneshots.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/flyway/resources/db/migration/sqlite/V20230724114349__oneshots.sql -------------------------------------------------------------------------------- /komga/src/flyway/resources/db/migration/sqlite/V20231115163730__analyze_pdf.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/flyway/resources/db/migration/sqlite/V20231115163730__analyze_pdf.sql -------------------------------------------------------------------------------- /komga/src/flyway/resources/db/migration/sqlite/V20231116162048__epub.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/flyway/resources/db/migration/sqlite/V20231116162048__epub.sql -------------------------------------------------------------------------------- /komga/src/flyway/resources/db/migration/sqlite/V20231206152158__progression.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/flyway/resources/db/migration/sqlite/V20231206152158__progression.sql -------------------------------------------------------------------------------- /komga/src/flyway/resources/db/migration/sqlite/V20240309220627__library_settings.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE LIBRARY 2 | add column SCAN_MOBI boolean NOT NULL DEFAULT 1; 3 | 4 | -------------------------------------------------------------------------------- /komga/src/flyway/resources/db/migration/sqlite/V20240529120933__apikey.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/flyway/resources/db/migration/sqlite/V20240529120933__apikey.sql -------------------------------------------------------------------------------- /komga/src/flyway/resources/db/migration/sqlite/V20240529120934__syncpoint.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/flyway/resources/db/migration/sqlite/V20240529120934__syncpoint.sql -------------------------------------------------------------------------------- /komga/src/flyway/resources/db/migration/sqlite/V20240911175419__kepub.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/flyway/resources/db/migration/sqlite/V20240911175419__kepub.sql -------------------------------------------------------------------------------- /komga/src/flyway/resources/db/migration/sqlite/V20250108115503__user_roles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/flyway/resources/db/migration/sqlite/V20250108115503__user_roles.sql -------------------------------------------------------------------------------- /komga/src/flyway/resources/tasks/migration/sqlite/V20231013114850__tasks.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/flyway/resources/tasks/migration/sqlite/V20231013114850__tasks.sql -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/Application.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/Application.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/application/tasks/Task.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/application/tasks/Task.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/application/tasks/TaskAddedEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/application/tasks/TaskAddedEvent.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/application/tasks/TaskEmitter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/application/tasks/TaskEmitter.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/application/tasks/TaskHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/application/tasks/TaskHandler.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/application/tasks/TaskProcessor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/application/tasks/TaskProcessor.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/application/tasks/TasksRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/application/tasks/TasksRepository.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/AgeRestriction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/AgeRestriction.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/AlternateTitle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/AlternateTitle.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/ApiKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/ApiKey.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/Auditable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/Auditable.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/AuthenticationActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/AuthenticationActivity.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/Author.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/Author.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/BCP47TagValidator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/BCP47TagValidator.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/Book.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/Book.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/BookAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/BookAction.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/BookMetadata.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/BookMetadata.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/BookMetadataAggregation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/BookMetadataAggregation.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/BookMetadataPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/BookMetadataPatch.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/BookPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/BookPage.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/BookPageNumbered.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/BookPageNumbered.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/BookSearch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/BookSearch.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/BookWithMedia.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/BookWithMedia.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/ContentRestrictions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/ContentRestrictions.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/CopyMode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/CopyMode.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/Dimension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/Dimension.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/DomainEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/DomainEvent.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/EpubTocEntry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/EpubTocEntry.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/Exceptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/Exceptions.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/HistoricalEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/HistoricalEvent.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/KomgaSyncToken.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/KomgaSyncToken.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/KomgaUser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/KomgaUser.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/Library.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/Library.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/MarkSelectedPreference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/MarkSelectedPreference.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/Media.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/Media.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/MediaContainerEntry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/MediaContainerEntry.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/MediaExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/MediaExtension.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/MediaFile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/MediaFile.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/MediaProfile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/MediaProfile.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/MediaType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/MediaType.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/MetadataPatchTarget.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/MetadataPatchTarget.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/PageHash.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/PageHash.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/PageHashKnown.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/PageHashKnown.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/PageHashMatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/PageHashMatch.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/PageHashUnknown.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/PageHashUnknown.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/R2Device.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/R2Device.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/R2Locator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/R2Locator.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/R2Progression.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/R2Progression.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/ReadList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/ReadList.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/ReadListRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/ReadListRequest.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/ReadProgress.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/ReadProgress.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/ReadStatus.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/ReadStatus.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/ScanResult.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/ScanResult.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/SearchCondition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/SearchCondition.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/SearchContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/SearchContext.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/SearchField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/SearchField.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/SearchOperator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/SearchOperator.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/Series.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/Series.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/SeriesCollection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/SeriesCollection.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/SeriesMetadata.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/SeriesMetadata.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/SeriesMetadataPatch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/SeriesMetadataPatch.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/SeriesSearch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/SeriesSearch.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/Sidecar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/Sidecar.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/SyncPoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/SyncPoint.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/ThumbnailBook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/ThumbnailBook.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/ThumbnailReadList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/ThumbnailReadList.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/ThumbnailSeries.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/ThumbnailSeries.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/ThumbnailSize.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/ThumbnailSize.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/TransientBook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/TransientBook.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/TypedBytes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/TypedBytes.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/UserRoles.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/UserRoles.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/model/WebLink.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/model/WebLink.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/persistence/BookRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/persistence/BookRepository.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/persistence/LibraryRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/persistence/LibraryRepository.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/persistence/MediaRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/persistence/MediaRepository.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/persistence/PageHashRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/persistence/PageHashRepository.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/persistence/ReadListRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/persistence/ReadListRepository.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/persistence/SeriesRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/persistence/SeriesRepository.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/persistence/SidecarRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/persistence/SidecarRepository.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/service/BookAnalyzer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/service/BookAnalyzer.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/service/BookConverter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/service/BookConverter.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/service/BookImporter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/service/BookImporter.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/service/BookLifecycle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/service/BookLifecycle.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/service/BookMetadataLifecycle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/service/BookMetadataLifecycle.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/service/BookPageEditor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/service/BookPageEditor.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/service/FileSystemScanner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/service/FileSystemScanner.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/service/KomgaUserLifecycle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/service/KomgaUserLifecycle.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/service/LibraryLifecycle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/service/LibraryLifecycle.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/service/LocalArtworkLifecycle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/service/LocalArtworkLifecycle.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/service/MetadataAggregator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/service/MetadataAggregator.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/service/MetadataApplier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/service/MetadataApplier.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/service/PageHashLifecycle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/service/PageHashLifecycle.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/service/ReadListLifecycle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/service/ReadListLifecycle.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/service/ReadListMatcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/service/ReadListMatcher.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/service/SeriesLifecycle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/service/SeriesLifecycle.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/service/SyncPointLifecycle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/service/SyncPointLifecycle.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/domain/service/TransientBookLifecycle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/domain/service/TransientBookLifecycle.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/infrastructure/hash/Hasher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/infrastructure/hash/Hasher.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/infrastructure/hash/KoreaderHasher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/infrastructure/hash/KoreaderHasher.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/infrastructure/image/ImageAnalyzer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/infrastructure/image/ImageAnalyzer.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/infrastructure/image/ImageConverter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/infrastructure/image/ImageConverter.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/infrastructure/image/ImageType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/infrastructure/image/ImageType.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/infrastructure/image/MosaicGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/infrastructure/image/MosaicGenerator.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/infrastructure/jms/ArtemisCleanup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/infrastructure/jms/ArtemisCleanup.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/infrastructure/jooq/BookSearchHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/infrastructure/jooq/BookSearchHelper.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/infrastructure/jooq/RequiredJoin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/infrastructure/jooq/RequiredJoin.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/infrastructure/jooq/UnpagedSorted.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/infrastructure/jooq/UnpagedSorted.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/infrastructure/jooq/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/infrastructure/jooq/Utils.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/infrastructure/jooq/main/BookDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/infrastructure/jooq/main/BookDao.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/infrastructure/jooq/main/BookDtoDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/infrastructure/jooq/main/BookDtoDao.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/infrastructure/jooq/main/KoboDtoDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/infrastructure/jooq/main/KoboDtoDao.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/infrastructure/jooq/main/LibraryDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/infrastructure/jooq/main/LibraryDao.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/infrastructure/jooq/main/MediaDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/infrastructure/jooq/main/MediaDao.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/infrastructure/jooq/main/SeriesDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/infrastructure/jooq/main/SeriesDao.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/infrastructure/jooq/main/SidecarDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/infrastructure/jooq/main/SidecarDao.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/infrastructure/jooq/tasks/TasksDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/infrastructure/jooq/tasks/TasksDao.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/infrastructure/kobo/KepubConverter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/infrastructure/kobo/KepubConverter.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/infrastructure/kobo/KoboHeaders.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/infrastructure/kobo/KoboHeaders.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/infrastructure/kobo/KoboProxy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/infrastructure/kobo/KoboProxy.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/infrastructure/search/LuceneEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/infrastructure/search/LuceneEntity.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/infrastructure/search/LuceneHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/infrastructure/search/LuceneHelper.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/infrastructure/util/ZipFileUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/infrastructure/util/ZipFileUtils.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/infrastructure/validation/BCP47.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/infrastructure/validation/BCP47.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/infrastructure/validation/Blank.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/infrastructure/validation/Blank.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/infrastructure/web/Authors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/infrastructure/web/Authors.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/infrastructure/web/DelimitedPair.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/infrastructure/web/DelimitedPair.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/infrastructure/web/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/infrastructure/web/Utils.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/CommonBookController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/CommonBookController.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/OpdsGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/OpdsGenerator.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/Utils.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/WebPubGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/WebPubGenerator.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/dto/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/dto/Constants.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/dto/OpdsLinkRel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/dto/OpdsLinkRel.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/dto/WepPub.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/dto/WepPub.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/kobo/KoboController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/kobo/KoboController.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/kobo/dto/AmountDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/kobo/dto/AmountDto.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/kobo/dto/AuthDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/kobo/dto/AuthDto.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/kobo/dto/BookmarkDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/kobo/dto/BookmarkDto.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/kobo/dto/FormatDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/kobo/dto/FormatDto.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/kobo/dto/LocationDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/kobo/dto/LocationDto.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/kobo/dto/PeriodDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/kobo/dto/PeriodDto.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/kobo/dto/ResultDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/kobo/dto/ResultDto.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/kobo/dto/StatusDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/kobo/dto/StatusDto.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/kobo/dto/TagDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/kobo/dto/TagDto.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/kobo/dto/TagItemDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/kobo/dto/TagItemDto.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/kobo/dto/TagTypeDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/kobo/dto/TagTypeDto.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/kobo/dto/TestsDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/kobo/dto/TestsDto.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/opds/v1/dto/OpdsFeed.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/opds/v1/dto/OpdsFeed.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/opds/v1/dto/OpdsLink.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/opds/v1/dto/OpdsLink.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/opds/v2/dto/Opds2Dto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/opds/v2/dto/Opds2Dto.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/BookController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/BookController.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/ClaimController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/ClaimController.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/FontsController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/FontsController.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/LoginController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/LoginController.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/TaskController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/TaskController.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/UserController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/UserController.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/dto/ApiKeyDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/dto/ApiKeyDto.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/dto/AuthorDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/dto/AuthorDto.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/dto/BookDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/dto/BookDto.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/dto/JsonFeedDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/dto/JsonFeedDto.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/dto/LibraryDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/dto/LibraryDto.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/dto/PageDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/dto/PageDto.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/dto/R2Positions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/dto/R2Positions.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/dto/ReadListDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/dto/ReadListDto.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/dto/ReleaseDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/dto/ReleaseDto.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/dto/SeriesDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/dto/SeriesDto.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/dto/SettingsDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/dto/SettingsDto.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/dto/UserDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/dto/UserDto.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/dto/WebLinkDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/api/rest/dto/WebLinkDto.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/mvc/IndexController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/mvc/IndexController.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/sse/SseController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/sse/SseController.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/sse/dto/BookImportSseDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/sse/dto/BookImportSseDto.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/sse/dto/BookSseDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/sse/dto/BookSseDto.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/sse/dto/CollectionSseDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/sse/dto/CollectionSseDto.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/sse/dto/LibrarySseDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/sse/dto/LibrarySseDto.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/sse/dto/ReadListSseDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/sse/dto/ReadListSseDto.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/sse/dto/SeriesSseDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/sse/dto/SeriesSseDto.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/interfaces/sse/dto/TaskQueueSseDto.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/interfaces/sse/dto/TaskQueueSseDto.kt -------------------------------------------------------------------------------- /komga/src/main/kotlin/org/gotson/komga/language/LanguageUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/kotlin/org/gotson/komga/language/LanguageUtils.kt -------------------------------------------------------------------------------- /komga/src/main/resources/application-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/resources/application-dev.yml -------------------------------------------------------------------------------- /komga/src/main/resources/application-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/resources/application-docker.yml -------------------------------------------------------------------------------- /komga/src/main/resources/application-localdb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/resources/application-localdb.yml -------------------------------------------------------------------------------- /komga/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/resources/application.yml -------------------------------------------------------------------------------- /komga/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/resources/banner.txt -------------------------------------------------------------------------------- /komga/src/main/resources/embeddedFonts/OpenDyslexic/OpenDyslexic-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/resources/embeddedFonts/OpenDyslexic/OpenDyslexic-Bold.woff -------------------------------------------------------------------------------- /komga/src/main/resources/embeddedFonts/OpenDyslexic/OpenDyslexic-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/resources/embeddedFonts/OpenDyslexic/OpenDyslexic-Bold.woff2 -------------------------------------------------------------------------------- /komga/src/main/resources/embeddedFonts/OpenDyslexic/OpenDyslexic-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/resources/embeddedFonts/OpenDyslexic/OpenDyslexic-Italic.woff -------------------------------------------------------------------------------- /komga/src/main/resources/embeddedFonts/OpenDyslexic/OpenDyslexic-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/resources/embeddedFonts/OpenDyslexic/OpenDyslexic-Italic.woff2 -------------------------------------------------------------------------------- /komga/src/main/resources/embeddedFonts/OpenDyslexic/OpenDyslexic-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/main/resources/embeddedFonts/OpenDyslexic/OpenDyslexic-Regular.woff -------------------------------------------------------------------------------- /komga/src/test/kotlin/org/gotson/komga/AutowiringTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/kotlin/org/gotson/komga/AutowiringTest.kt -------------------------------------------------------------------------------- /komga/src/test/kotlin/org/gotson/komga/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/kotlin/org/gotson/komga/Utils.kt -------------------------------------------------------------------------------- /komga/src/test/kotlin/org/gotson/komga/application/tasks/TaskProcessorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/kotlin/org/gotson/komga/application/tasks/TaskProcessorTest.kt -------------------------------------------------------------------------------- /komga/src/test/kotlin/org/gotson/komga/architecture/CodingRulesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/kotlin/org/gotson/komga/architecture/CodingRulesTest.kt -------------------------------------------------------------------------------- /komga/src/test/kotlin/org/gotson/komga/architecture/NamingConventionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/kotlin/org/gotson/komga/architecture/NamingConventionTest.kt -------------------------------------------------------------------------------- /komga/src/test/kotlin/org/gotson/komga/domain/model/AuthorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/kotlin/org/gotson/komga/domain/model/AuthorTest.kt -------------------------------------------------------------------------------- /komga/src/test/kotlin/org/gotson/komga/domain/model/BCP47TagValidatorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/kotlin/org/gotson/komga/domain/model/BCP47TagValidatorTest.kt -------------------------------------------------------------------------------- /komga/src/test/kotlin/org/gotson/komga/domain/model/BookMetadataTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/kotlin/org/gotson/komga/domain/model/BookMetadataTest.kt -------------------------------------------------------------------------------- /komga/src/test/kotlin/org/gotson/komga/domain/model/BookSearchTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/kotlin/org/gotson/komga/domain/model/BookSearchTest.kt -------------------------------------------------------------------------------- /komga/src/test/kotlin/org/gotson/komga/domain/model/KomgaUserTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/kotlin/org/gotson/komga/domain/model/KomgaUserTest.kt -------------------------------------------------------------------------------- /komga/src/test/kotlin/org/gotson/komga/domain/model/PageHashTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/kotlin/org/gotson/komga/domain/model/PageHashTest.kt -------------------------------------------------------------------------------- /komga/src/test/kotlin/org/gotson/komga/domain/model/ProxyExtensionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/kotlin/org/gotson/komga/domain/model/ProxyExtensionTest.kt -------------------------------------------------------------------------------- /komga/src/test/kotlin/org/gotson/komga/domain/model/SeriesMetadataTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/kotlin/org/gotson/komga/domain/model/SeriesMetadataTest.kt -------------------------------------------------------------------------------- /komga/src/test/kotlin/org/gotson/komga/domain/model/SeriesSearchTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/kotlin/org/gotson/komga/domain/model/SeriesSearchTest.kt -------------------------------------------------------------------------------- /komga/src/test/kotlin/org/gotson/komga/domain/model/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/kotlin/org/gotson/komga/domain/model/Utils.kt -------------------------------------------------------------------------------- /komga/src/test/kotlin/org/gotson/komga/domain/service/BookAnalyzerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/kotlin/org/gotson/komga/domain/service/BookAnalyzerTest.kt -------------------------------------------------------------------------------- /komga/src/test/kotlin/org/gotson/komga/domain/service/BookImporterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/kotlin/org/gotson/komga/domain/service/BookImporterTest.kt -------------------------------------------------------------------------------- /komga/src/test/kotlin/org/gotson/komga/domain/service/BookLifecycleTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/kotlin/org/gotson/komga/domain/service/BookLifecycleTest.kt -------------------------------------------------------------------------------- /komga/src/test/kotlin/org/gotson/komga/domain/service/LibraryLifecycleTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/kotlin/org/gotson/komga/domain/service/LibraryLifecycleTest.kt -------------------------------------------------------------------------------- /komga/src/test/kotlin/org/gotson/komga/domain/service/MetadataApplierTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/kotlin/org/gotson/komga/domain/service/MetadataApplierTest.kt -------------------------------------------------------------------------------- /komga/src/test/kotlin/org/gotson/komga/domain/service/ReadListMatcherTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/kotlin/org/gotson/komga/domain/service/ReadListMatcherTest.kt -------------------------------------------------------------------------------- /komga/src/test/kotlin/org/gotson/komga/domain/service/SeriesLifecycleTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/kotlin/org/gotson/komga/domain/service/SeriesLifecycleTest.kt -------------------------------------------------------------------------------- /komga/src/test/kotlin/org/gotson/komga/infrastructure/jooq/TestUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/kotlin/org/gotson/komga/infrastructure/jooq/TestUtils.kt -------------------------------------------------------------------------------- /komga/src/test/kotlin/org/gotson/komga/infrastructure/search/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/kotlin/org/gotson/komga/infrastructure/search/Utils.kt -------------------------------------------------------------------------------- /komga/src/test/kotlin/org/gotson/komga/interfaces/api/SessionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/kotlin/org/gotson/komga/interfaces/api/SessionTest.kt -------------------------------------------------------------------------------- /komga/src/test/kotlin/org/gotson/komga/interfaces/api/rest/ActuatorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/kotlin/org/gotson/komga/interfaces/api/rest/ActuatorTest.kt -------------------------------------------------------------------------------- /komga/src/test/kotlin/org/gotson/komga/interfaces/api/rest/ApiKeyTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/kotlin/org/gotson/komga/interfaces/api/rest/ApiKeyTest.kt -------------------------------------------------------------------------------- /komga/src/test/resources/application-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/application-test.yml -------------------------------------------------------------------------------- /komga/src/test/resources/archives/7zip-encrypted.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/archives/7zip-encrypted.7z -------------------------------------------------------------------------------- /komga/src/test/resources/archives/7zip.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/archives/7zip.7z -------------------------------------------------------------------------------- /komga/src/test/resources/archives/epub3.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/archives/epub3.epub -------------------------------------------------------------------------------- /komga/src/test/resources/archives/rar4-encrypted.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/archives/rar4-encrypted.rar -------------------------------------------------------------------------------- /komga/src/test/resources/archives/rar4-solid.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/archives/rar4-solid.rar -------------------------------------------------------------------------------- /komga/src/test/resources/archives/rar4.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/archives/rar4.rar -------------------------------------------------------------------------------- /komga/src/test/resources/archives/rar5-encrypted.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/archives/rar5-encrypted.rar -------------------------------------------------------------------------------- /komga/src/test/resources/archives/rar5-solid.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/archives/rar5-solid.rar -------------------------------------------------------------------------------- /komga/src/test/resources/archives/rar5.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/archives/rar5.rar -------------------------------------------------------------------------------- /komga/src/test/resources/archives/zip-as-epub.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/archives/zip-as-epub.epub -------------------------------------------------------------------------------- /komga/src/test/resources/archives/zip-bzip2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/archives/zip-bzip2.zip -------------------------------------------------------------------------------- /komga/src/test/resources/archives/zip-copy.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/archives/zip-copy.zip -------------------------------------------------------------------------------- /komga/src/test/resources/archives/zip-deflate64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/archives/zip-deflate64.zip -------------------------------------------------------------------------------- /komga/src/test/resources/archives/zip-encrypted.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/archives/zip-encrypted.zip -------------------------------------------------------------------------------- /komga/src/test/resources/archives/zip-lzma.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/archives/zip-lzma.zip -------------------------------------------------------------------------------- /komga/src/test/resources/archives/zip-ppmd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/archives/zip-ppmd.zip -------------------------------------------------------------------------------- /komga/src/test/resources/archives/zip.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/archives/zip.zip -------------------------------------------------------------------------------- /komga/src/test/resources/barcode/komga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/barcode/komga.png -------------------------------------------------------------------------------- /komga/src/test/resources/barcode/page_384.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/barcode/page_384.jpg -------------------------------------------------------------------------------- /komga/src/test/resources/epub/1979.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/epub/1979.opf -------------------------------------------------------------------------------- /komga/src/test/resources/epub/Die Drei 3.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/epub/Die Drei 3.opf -------------------------------------------------------------------------------- /komga/src/test/resources/epub/Panik im Paradies.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/epub/Panik im Paradies.opf -------------------------------------------------------------------------------- /komga/src/test/resources/epub/The Incomplete Theft - Ralph Burke.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/epub/The Incomplete Theft - Ralph Burke.epub -------------------------------------------------------------------------------- /komga/src/test/resources/epub/clash.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/epub/clash.opf -------------------------------------------------------------------------------- /komga/src/test/resources/epub/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/epub/nav.xhtml -------------------------------------------------------------------------------- /komga/src/test/resources/epub/toc.ncx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/epub/toc.ncx -------------------------------------------------------------------------------- /komga/src/test/resources/hashpage/dd.png/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/hashpage/dd.png/1.png -------------------------------------------------------------------------------- /komga/src/test/resources/hashpage/dd.png/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/hashpage/dd.png/2.png -------------------------------------------------------------------------------- /komga/src/test/resources/hashpage/e-drq.webp/1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/hashpage/e-drq.webp/1.webp -------------------------------------------------------------------------------- /komga/src/test/resources/hashpage/e-drq.webp/2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/hashpage/e-drq.webp/2.webp -------------------------------------------------------------------------------- /komga/src/test/resources/hashpage/e-sou.jpeg/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/hashpage/e-sou.jpeg/1.jpg -------------------------------------------------------------------------------- /komga/src/test/resources/hashpage/e-sou.jpeg/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/hashpage/e-sou.jpeg/2.jpg -------------------------------------------------------------------------------- /komga/src/test/resources/hashpage/e-sou.webp/1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/hashpage/e-sou.webp/1.webp -------------------------------------------------------------------------------- /komga/src/test/resources/hashpage/e-sou.webp/2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/hashpage/e-sou.webp/2.webp -------------------------------------------------------------------------------- /komga/src/test/resources/hashpage/e-z.jpeg/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/hashpage/e-z.jpeg/1.jpg -------------------------------------------------------------------------------- /komga/src/test/resources/hashpage/e-z.jpeg/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/hashpage/e-z.jpeg/2.jpg -------------------------------------------------------------------------------- /komga/src/test/resources/hashpage/m-d.jpeg/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/hashpage/m-d.jpeg/1.jpg -------------------------------------------------------------------------------- /komga/src/test/resources/hashpage/m-d.jpeg/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/hashpage/m-d.jpeg/2.jpg -------------------------------------------------------------------------------- /komga/src/test/resources/hashpage/tg.png/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/hashpage/tg.png/1.png -------------------------------------------------------------------------------- /komga/src/test/resources/hashpage/tg.png/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/hashpage/tg.png/2.png -------------------------------------------------------------------------------- /komga/src/test/resources/hashpage/tr.gif/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/hashpage/tr.gif/1.gif -------------------------------------------------------------------------------- /komga/src/test/resources/hashpage/tr.gif/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/hashpage/tr.gif/2.gif -------------------------------------------------------------------------------- /komga/src/test/resources/hashpage/xt.png/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/hashpage/xt.png/1.png -------------------------------------------------------------------------------- /komga/src/test/resources/hashpage/xt.png/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/hashpage/xt.png/2.png -------------------------------------------------------------------------------- /komga/src/test/resources/io/mockk/settings.properties: -------------------------------------------------------------------------------- 1 | relaxed=false -------------------------------------------------------------------------------- /komga/src/test/resources/junit-platform.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/junit-platform.properties -------------------------------------------------------------------------------- /komga/src/test/resources/pdf/komga.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/komga/src/test/resources/pdf/komga.pdf -------------------------------------------------------------------------------- /res/komga-gray-minimal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/res/komga-gray-minimal.svg -------------------------------------------------------------------------------- /res/komga-grayscale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/res/komga-grayscale.svg -------------------------------------------------------------------------------- /res/komga.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/res/komga.svg -------------------------------------------------------------------------------- /res/komga_300x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/res/komga_300x300.png -------------------------------------------------------------------------------- /res/komga_text_as_path.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/res/komga_text_as_path.svg -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wushuo894/komga-cn/HEAD/settings.gradle --------------------------------------------------------------------------------