codex 1.7.15__py3-none-any.whl โ 1.8.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of codex might be problematic. Click here for more details.
- codex/__init__.py +6 -1
- codex/applications/lifespan.py +16 -12
- codex/asgi.py +1 -2
- codex/choices/admin.py +64 -60
- codex/choices/browser.py +7 -10
- codex/choices/choices_to_json.py +21 -9
- codex/choices/search.py +133 -0
- codex/choices/statii.py +40 -0
- codex/librarian/bookmark/bookmarkd.py +56 -17
- codex/librarian/bookmark/latest_version.py +65 -0
- codex/librarian/bookmark/tasks.py +13 -2
- codex/librarian/bookmark/update.py +1 -1
- codex/librarian/bookmark/user_active.py +2 -3
- codex/librarian/covers/coverd.py +4 -1
- codex/librarian/covers/create.py +31 -22
- codex/librarian/covers/path.py +1 -1
- codex/librarian/covers/purge.py +22 -22
- codex/librarian/covers/status.py +37 -6
- codex/librarian/covers/tasks.py +2 -1
- codex/librarian/cron/crond.py +5 -3
- codex/librarian/librariand.py +59 -84
- codex/librarian/notifier/notifierd.py +8 -3
- codex/librarian/restarter/__init__.py +1 -0
- codex/librarian/restarter/restarter.py +55 -0
- codex/librarian/restarter/status.py +32 -0
- codex/librarian/restarter/tasks.py +15 -0
- codex/librarian/scribe/__init__.py +1 -0
- codex/librarian/scribe/importer/__init__.py +1 -0
- codex/librarian/scribe/importer/const.py +369 -0
- codex/librarian/scribe/importer/create/__init__.py +37 -0
- codex/librarian/scribe/importer/create/comics.py +172 -0
- codex/librarian/scribe/importer/create/const.py +131 -0
- codex/librarian/scribe/importer/create/covers.py +123 -0
- codex/librarian/scribe/importer/create/folders.py +98 -0
- codex/librarian/scribe/importer/create/foreign_keys.py +253 -0
- codex/librarian/scribe/importer/create/link_fks.py +73 -0
- codex/librarian/scribe/importer/delete/__init__.py +28 -0
- codex/librarian/scribe/importer/delete/comics.py +68 -0
- codex/librarian/scribe/importer/delete/covers.py +37 -0
- codex/librarian/scribe/importer/delete/folders.py +33 -0
- codex/librarian/scribe/importer/failed/__init__.py +1 -0
- codex/librarian/scribe/importer/failed/create.py +97 -0
- codex/librarian/scribe/importer/failed/failed.py +54 -0
- codex/librarian/scribe/importer/failed/query.py +103 -0
- codex/librarian/scribe/importer/finish.py +70 -0
- codex/librarian/scribe/importer/importer.py +31 -0
- codex/librarian/scribe/importer/init.py +338 -0
- codex/librarian/scribe/importer/link/__init__.py +15 -0
- codex/librarian/scribe/importer/link/const.py +31 -0
- codex/librarian/scribe/importer/link/covers.py +70 -0
- codex/librarian/scribe/importer/link/delete.py +106 -0
- codex/librarian/scribe/importer/link/many_to_many.py +88 -0
- codex/librarian/scribe/importer/link/prepare.py +132 -0
- codex/librarian/scribe/importer/link/sum.py +19 -0
- codex/librarian/scribe/importer/moved/__init__.py +52 -0
- codex/librarian/scribe/importer/moved/comics.py +125 -0
- codex/librarian/scribe/importer/moved/covers.py +88 -0
- codex/librarian/scribe/importer/moved/folders.py +205 -0
- codex/librarian/scribe/importer/query/__init__.py +44 -0
- codex/librarian/scribe/importer/query/covers.py +55 -0
- codex/librarian/scribe/importer/query/filters.py +61 -0
- codex/librarian/scribe/importer/query/foreign_keys.py +203 -0
- codex/librarian/scribe/importer/query/links.py +29 -0
- codex/librarian/scribe/importer/query/links_fk.py +99 -0
- codex/librarian/scribe/importer/query/links_m2m.py +102 -0
- codex/librarian/scribe/importer/query/update_comics.py +59 -0
- codex/librarian/scribe/importer/query/update_fks.py +140 -0
- codex/librarian/scribe/importer/read/__init__.py +14 -0
- codex/librarian/scribe/importer/read/aggregate_path.py +110 -0
- codex/librarian/scribe/importer/read/const.py +144 -0
- codex/librarian/scribe/importer/read/extract.py +128 -0
- codex/librarian/scribe/importer/read/folders.py +37 -0
- codex/librarian/scribe/importer/read/foreign_keys.py +145 -0
- codex/librarian/scribe/importer/read/many_to_many.py +237 -0
- codex/librarian/scribe/importer/search/__init__.py +34 -0
- codex/librarian/scribe/importer/search/const.py +50 -0
- codex/librarian/scribe/importer/search/prepare.py +85 -0
- codex/librarian/scribe/importer/search/sync_m2m.py +86 -0
- codex/librarian/scribe/importer/search/update.py +273 -0
- codex/librarian/scribe/importer/statii/__init__.py +21 -0
- codex/librarian/scribe/importer/statii/create.py +67 -0
- codex/librarian/scribe/importer/statii/delete.py +39 -0
- codex/librarian/scribe/importer/statii/failed.py +50 -0
- codex/librarian/scribe/importer/statii/link.py +27 -0
- codex/librarian/scribe/importer/statii/moved.py +39 -0
- codex/librarian/scribe/importer/statii/query.py +46 -0
- codex/librarian/scribe/importer/statii/read.py +30 -0
- codex/librarian/scribe/importer/statii/search.py +28 -0
- codex/librarian/scribe/importer/status.py +9 -0
- codex/librarian/scribe/importer/tasks.py +49 -0
- codex/librarian/scribe/janitor/__init__.py +1 -0
- codex/librarian/scribe/janitor/adopt_folders.py +81 -0
- codex/librarian/scribe/janitor/cleanup.py +199 -0
- codex/librarian/scribe/janitor/failed_imports.py +27 -0
- codex/librarian/scribe/janitor/integrity.py +375 -0
- codex/librarian/scribe/janitor/janitor.py +133 -0
- codex/librarian/scribe/janitor/scheduled_time.py +13 -0
- codex/librarian/scribe/janitor/status.py +152 -0
- codex/librarian/scribe/janitor/tasks.py +71 -0
- codex/librarian/scribe/janitor/update.py +88 -0
- codex/librarian/scribe/janitor/vacuum.py +53 -0
- codex/librarian/scribe/lazy_importer.py +51 -0
- codex/librarian/scribe/priority.py +69 -0
- codex/librarian/scribe/scribed.py +130 -0
- codex/librarian/scribe/search/__init__.py +1 -0
- codex/librarian/scribe/search/handler.py +28 -0
- codex/librarian/scribe/search/optimize.py +30 -0
- codex/librarian/scribe/search/remove.py +44 -0
- codex/librarian/scribe/search/status.py +66 -0
- codex/librarian/scribe/search/sync.py +398 -0
- codex/librarian/scribe/search/tasks.py +28 -0
- codex/librarian/scribe/status.py +21 -0
- codex/librarian/scribe/tasks.py +32 -0
- codex/librarian/scribe/timestamp_update.py +135 -0
- codex/librarian/status.py +76 -0
- codex/librarian/status_controller.py +196 -0
- codex/librarian/tasks.py +0 -10
- codex/librarian/telemeter/scheduled_time.py +11 -4
- codex/librarian/telemeter/stats.py +0 -2
- codex/librarian/telemeter/tasks.py +3 -1
- codex/librarian/telemeter/telemeter.py +17 -11
- codex/librarian/threads.py +148 -0
- codex/librarian/watchdog/const.py +139 -0
- codex/librarian/watchdog/db_snapshot.py +16 -10
- codex/librarian/watchdog/dir_snapshot_diff.py +19 -1
- codex/librarian/watchdog/emitter.py +140 -124
- codex/librarian/watchdog/event_batcherd.py +134 -88
- codex/librarian/watchdog/events.py +22 -211
- codex/librarian/watchdog/handlers.py +203 -0
- codex/librarian/watchdog/memory.py +56 -0
- codex/librarian/watchdog/observers.py +89 -55
- codex/librarian/watchdog/status.py +18 -5
- codex/librarian/watchdog/tasks.py +2 -1
- codex/librarian/worker.py +32 -0
- codex/middleware.py +6 -8
- codex/migrations/0011_library_groups_and_metadata_changes.py +2 -1
- codex/migrations/0013_int_issue_count_longer_charfields.py +2 -1
- codex/migrations/0023_rename_credit_creator_and_more.py +2 -1
- codex/migrations/0026_comicbox_1.py +9 -9
- codex/migrations/0034_comicbox2.py +792 -0
- codex/models/__init__.py +1 -0
- codex/models/admin.py +14 -22
- codex/models/base.py +21 -2
- codex/models/comic.py +80 -43
- codex/models/fields.py +81 -0
- codex/models/functions.py +8 -2
- codex/models/groups.py +99 -34
- codex/models/identifier.py +79 -0
- codex/models/library.py +17 -3
- codex/models/named.py +52 -55
- codex/models/paths.py +16 -12
- codex/models/query.py +7 -5
- codex/run.py +12 -18
- codex/serializers/admin/groups.py +3 -0
- codex/serializers/admin/libraries.py +13 -1
- codex/serializers/admin/stats.py +5 -4
- codex/serializers/admin/tasks.py +3 -5
- codex/serializers/admin/users.py +9 -3
- codex/serializers/auth.py +13 -6
- codex/serializers/browser/choices.py +35 -18
- codex/serializers/browser/filters.py +7 -5
- codex/serializers/browser/metadata.py +12 -10
- codex/serializers/browser/mixins.py +6 -8
- codex/serializers/browser/mtime.py +6 -2
- codex/serializers/browser/page.py +8 -3
- codex/serializers/browser/settings.py +35 -5
- codex/serializers/fields/__init__.py +2 -2
- codex/serializers/fields/auth.py +4 -5
- codex/serializers/fields/base.py +16 -0
- codex/serializers/fields/browser.py +15 -31
- codex/serializers/fields/group.py +11 -8
- codex/serializers/fields/reader.py +14 -10
- codex/serializers/fields/sanitized.py +2 -0
- codex/serializers/fields/session.py +3 -8
- codex/serializers/fields/stats.py +3 -5
- codex/serializers/fields/vuetify.py +21 -10
- codex/serializers/mixins.py +42 -0
- codex/serializers/models/base.py +1 -1
- codex/serializers/models/comic.py +6 -2
- codex/serializers/models/named.py +62 -37
- codex/serializers/models/pycountry.py +0 -3
- codex/serializers/opds/v1.py +6 -6
- codex/serializers/opds/v2/feed.py +2 -4
- codex/serializers/opds/v2/publication.py +14 -14
- codex/serializers/opds/v2/unused.py +2 -0
- codex/serializers/reader.py +52 -31
- codex/serializers/route.py +6 -4
- codex/serializers/settings.py +6 -6
- codex/settings/__init__.py +423 -1
- codex/signals/django_signals.py +2 -35
- codex/signals/os_signals.py +4 -5
- codex/startup/__init__.py +180 -0
- codex/startup/db.py +130 -0
- codex/startup/logger_init.py +45 -0
- codex/startup/registration.py +13 -0
- codex/static_root/assets/VCheckbox-BD4eUg4g.3d575d473135.js +1 -0
- codex/static_root/assets/VCheckbox-BD4eUg4g.3d575d473135.js.br +0 -0
- codex/static_root/assets/VCheckbox-BD4eUg4g.3d575d473135.js.gz +0 -0
- codex/static_root/assets/VCheckbox-BD4eUg4g.js +1 -0
- codex/static_root/assets/VCheckbox-BD4eUg4g.js.br +0 -0
- codex/static_root/assets/VCheckbox-BD4eUg4g.js.gz +0 -0
- codex/static_root/assets/VCheckboxBtn-BwlWS4y9.b40b085f1d67.js +1 -0
- codex/static_root/assets/VCheckboxBtn-BwlWS4y9.b40b085f1d67.js.br +0 -0
- codex/static_root/assets/VCheckboxBtn-BwlWS4y9.b40b085f1d67.js.gz +0 -0
- codex/static_root/assets/VCheckboxBtn-BwlWS4y9.js +1 -0
- codex/static_root/assets/VCheckboxBtn-BwlWS4y9.js.br +0 -0
- codex/static_root/assets/VCheckboxBtn-BwlWS4y9.js.gz +0 -0
- codex/static_root/assets/VCombobox-DyLCrBiS.3e13940cf92c.js +1 -0
- codex/static_root/assets/VCombobox-DyLCrBiS.3e13940cf92c.js.br +0 -0
- codex/static_root/assets/VCombobox-DyLCrBiS.3e13940cf92c.js.gz +0 -0
- codex/static_root/assets/VCombobox-DyLCrBiS.js +1 -0
- codex/static_root/assets/VCombobox-DyLCrBiS.js.br +0 -0
- codex/static_root/assets/VCombobox-DyLCrBiS.js.gz +0 -0
- codex/static_root/assets/VDialog-CpWjrJ0R.610ffc6302d4.css +1 -0
- codex/static_root/assets/VDialog-CpWjrJ0R.610ffc6302d4.css.br +0 -0
- codex/static_root/assets/VDialog-CpWjrJ0R.610ffc6302d4.css.gz +0 -0
- codex/static_root/assets/VDialog-CpWjrJ0R.css +1 -0
- codex/static_root/assets/VDialog-CpWjrJ0R.css.br +0 -0
- codex/static_root/assets/VDialog-CpWjrJ0R.css.gz +0 -0
- codex/static_root/assets/VDialog-N7erUTvb.ea9a9b29fb16.js +1 -0
- codex/static_root/assets/VDialog-N7erUTvb.ea9a9b29fb16.js.br +0 -0
- codex/static_root/assets/VDialog-N7erUTvb.ea9a9b29fb16.js.gz +0 -0
- codex/static_root/assets/VDialog-N7erUTvb.js +1 -0
- codex/static_root/assets/VDialog-N7erUTvb.js.br +0 -0
- codex/static_root/assets/VDialog-N7erUTvb.js.gz +0 -0
- codex/static_root/assets/VDivider-DFsQRi0x.d079d29e9764.js +1 -0
- codex/static_root/assets/VDivider-DFsQRi0x.d079d29e9764.js.br +0 -0
- codex/static_root/assets/VDivider-DFsQRi0x.d079d29e9764.js.gz +0 -0
- codex/static_root/assets/VDivider-DFsQRi0x.js +1 -0
- codex/static_root/assets/VDivider-DFsQRi0x.js.br +0 -0
- codex/static_root/assets/VDivider-DFsQRi0x.js.gz +0 -0
- codex/static_root/assets/VExpansionPanels-D_1ryJs5.c67ae2359ced.js +1 -0
- codex/static_root/assets/VExpansionPanels-D_1ryJs5.c67ae2359ced.js.br +0 -0
- codex/static_root/assets/VExpansionPanels-D_1ryJs5.c67ae2359ced.js.gz +0 -0
- codex/static_root/assets/VExpansionPanels-D_1ryJs5.js +1 -0
- codex/static_root/assets/VExpansionPanels-D_1ryJs5.js.br +0 -0
- codex/static_root/assets/VExpansionPanels-D_1ryJs5.js.gz +0 -0
- codex/static_root/assets/VForm-Bhq1UjFg.c9c80e741c2a.js +1 -0
- codex/static_root/assets/VForm-Bhq1UjFg.c9c80e741c2a.js.br +0 -0
- codex/static_root/assets/VForm-Bhq1UjFg.c9c80e741c2a.js.gz +0 -0
- codex/static_root/assets/VForm-Bhq1UjFg.js +1 -0
- codex/static_root/assets/VForm-Bhq1UjFg.js.br +0 -0
- codex/static_root/assets/VForm-Bhq1UjFg.js.gz +0 -0
- codex/static_root/assets/VRadioGroup-IJTnZQT5.731c3f06cee5.js +1 -0
- codex/static_root/assets/VRadioGroup-IJTnZQT5.731c3f06cee5.js.br +0 -0
- codex/static_root/assets/VRadioGroup-IJTnZQT5.731c3f06cee5.js.gz +0 -0
- codex/static_root/assets/VRadioGroup-IJTnZQT5.js +1 -0
- codex/static_root/assets/VRadioGroup-IJTnZQT5.js.br +0 -0
- codex/static_root/assets/VRadioGroup-IJTnZQT5.js.gz +0 -0
- codex/static_root/assets/VSelect-C857NCMc.567124f78bac.js +1 -0
- codex/static_root/assets/VSelect-C857NCMc.567124f78bac.js.br +0 -0
- codex/static_root/assets/VSelect-C857NCMc.567124f78bac.js.gz +0 -0
- codex/static_root/assets/VSelect-C857NCMc.js +1 -0
- codex/static_root/assets/VSelect-C857NCMc.js.br +0 -0
- codex/static_root/assets/VSelect-C857NCMc.js.gz +0 -0
- codex/static_root/assets/VSelectionControl-BUBBamEF.2e9636e900d8.js +1 -0
- codex/static_root/assets/VSelectionControl-BUBBamEF.2e9636e900d8.js.br +0 -0
- codex/static_root/assets/VSelectionControl-BUBBamEF.2e9636e900d8.js.gz +0 -0
- codex/static_root/assets/VSelectionControl-BUBBamEF.js +1 -0
- codex/static_root/assets/VSelectionControl-BUBBamEF.js.br +0 -0
- codex/static_root/assets/VSelectionControl-BUBBamEF.js.gz +0 -0
- codex/static_root/assets/VTable-CQyv0wyO.1740239d481b.css +1 -0
- codex/static_root/assets/VTable-CQyv0wyO.1740239d481b.css.br +0 -0
- codex/static_root/assets/VTable-CQyv0wyO.1740239d481b.css.gz +0 -0
- codex/static_root/assets/VTable-CQyv0wyO.css +1 -0
- codex/static_root/assets/VTable-CQyv0wyO.css.br +0 -0
- codex/static_root/assets/VTable-CQyv0wyO.css.gz +0 -0
- codex/static_root/assets/VTable-CwYzcGki.ddd22f371cdb.js +1 -0
- codex/static_root/assets/VTable-CwYzcGki.ddd22f371cdb.js.br +0 -0
- codex/static_root/assets/VTable-CwYzcGki.ddd22f371cdb.js.gz +0 -0
- codex/static_root/assets/VTable-CwYzcGki.js +1 -0
- codex/static_root/assets/VTable-CwYzcGki.js.br +0 -0
- codex/static_root/assets/VTable-CwYzcGki.js.gz +0 -0
- codex/static_root/assets/VWindowItem-ChYLiXSE.a9c679a2977e.css +1 -0
- codex/static_root/assets/VWindowItem-ChYLiXSE.a9c679a2977e.css.br +0 -0
- codex/static_root/assets/VWindowItem-ChYLiXSE.a9c679a2977e.css.gz +0 -0
- codex/static_root/assets/VWindowItem-ChYLiXSE.css +1 -0
- codex/static_root/assets/VWindowItem-ChYLiXSE.css.br +0 -0
- codex/static_root/assets/VWindowItem-ChYLiXSE.css.gz +0 -0
- codex/static_root/assets/VWindowItem-WsjNvbu_.0c1a85eba03e.js +1 -0
- codex/static_root/assets/VWindowItem-WsjNvbu_.0c1a85eba03e.js.br +0 -0
- codex/static_root/assets/VWindowItem-WsjNvbu_.0c1a85eba03e.js.gz +0 -0
- codex/static_root/assets/VWindowItem-WsjNvbu_.js +1 -0
- codex/static_root/assets/VWindowItem-WsjNvbu_.js.br +0 -0
- codex/static_root/assets/VWindowItem-WsjNvbu_.js.gz +0 -0
- codex/static_root/assets/admin-ByuViOU9.9a1ee0a29ae2.js +1 -0
- codex/static_root/assets/admin-ByuViOU9.9a1ee0a29ae2.js.br +0 -0
- codex/static_root/assets/admin-ByuViOU9.9a1ee0a29ae2.js.gz +0 -0
- codex/static_root/assets/admin-ByuViOU9.js +1 -0
- codex/static_root/assets/admin-ByuViOU9.js.br +0 -0
- codex/static_root/assets/admin-ByuViOU9.js.gz +0 -0
- codex/static_root/assets/admin-CJauEn2X.b0c66e357083.js +1 -0
- codex/static_root/assets/admin-CJauEn2X.b0c66e357083.js.br +0 -0
- codex/static_root/assets/admin-CJauEn2X.b0c66e357083.js.gz +0 -0
- codex/static_root/assets/admin-CJauEn2X.js +1 -0
- codex/static_root/assets/admin-CJauEn2X.js.br +0 -0
- codex/static_root/assets/admin-CJauEn2X.js.gz +0 -0
- codex/static_root/assets/admin-DJCVf2PA.7ba26fd73264.css +1 -0
- codex/static_root/assets/admin-DJCVf2PA.7ba26fd73264.css.br +0 -0
- codex/static_root/assets/admin-DJCVf2PA.7ba26fd73264.css.gz +0 -0
- codex/static_root/assets/admin-DJCVf2PA.css +1 -0
- codex/static_root/assets/admin-DJCVf2PA.css.br +0 -0
- codex/static_root/assets/admin-DJCVf2PA.css.gz +0 -0
- codex/static_root/assets/admin-menu-BRVAx54U.2c7d6cfd8a50.js +1 -0
- codex/static_root/assets/admin-menu-BRVAx54U.2c7d6cfd8a50.js.br +0 -0
- codex/static_root/assets/admin-menu-BRVAx54U.2c7d6cfd8a50.js.gz +0 -0
- codex/static_root/assets/admin-menu-BRVAx54U.js +1 -0
- codex/static_root/assets/admin-menu-BRVAx54U.js.br +0 -0
- codex/static_root/assets/admin-menu-BRVAx54U.js.gz +0 -0
- codex/static_root/assets/admin-menu-hpyUS8ku.18284a11084d.css +1 -0
- codex/static_root/assets/admin-menu-hpyUS8ku.18284a11084d.css.br +0 -0
- codex/static_root/assets/admin-menu-hpyUS8ku.18284a11084d.css.gz +0 -0
- codex/static_root/assets/admin-menu-hpyUS8ku.css +1 -0
- codex/static_root/assets/admin-menu-hpyUS8ku.css.br +0 -0
- codex/static_root/assets/admin-menu-hpyUS8ku.css.gz +0 -0
- codex/static_root/assets/admin-settings-button-progress-Cks9_KN-.a592809d4008.css +1 -0
- codex/static_root/assets/admin-settings-button-progress-Cks9_KN-.css +1 -0
- codex/static_root/assets/admin-settings-button-progress-Do1FKRa_.4fe043a87c09.js +1 -0
- codex/static_root/assets/admin-settings-button-progress-Do1FKRa_.4fe043a87c09.js.br +0 -0
- codex/static_root/assets/admin-settings-button-progress-Do1FKRa_.4fe043a87c09.js.gz +0 -0
- codex/static_root/assets/admin-settings-button-progress-Do1FKRa_.js +1 -0
- codex/static_root/assets/admin-settings-button-progress-Do1FKRa_.js.br +0 -0
- codex/static_root/assets/admin-settings-button-progress-Do1FKRa_.js.gz +0 -0
- codex/static_root/assets/browser-Cdi7U5ku.bab9fccf0326.css +1 -0
- codex/static_root/assets/browser-Cdi7U5ku.bab9fccf0326.css.br +0 -0
- codex/static_root/assets/browser-Cdi7U5ku.bab9fccf0326.css.gz +0 -0
- codex/static_root/assets/browser-Cdi7U5ku.css +1 -0
- codex/static_root/assets/browser-Cdi7U5ku.css.br +0 -0
- codex/static_root/assets/browser-Cdi7U5ku.css.gz +0 -0
- codex/static_root/assets/browser-OtRiWIux.be28cec0e65a.js +1 -0
- codex/static_root/assets/browser-OtRiWIux.be28cec0e65a.js.br +0 -0
- codex/static_root/assets/browser-OtRiWIux.be28cec0e65a.js.gz +0 -0
- codex/static_root/assets/browser-OtRiWIux.js +1 -0
- codex/static_root/assets/browser-OtRiWIux.js.br +0 -0
- codex/static_root/assets/browser-OtRiWIux.js.gz +0 -0
- codex/static_root/assets/change-password-dialog-DE8R9FId.f3180b3946dd.js +1 -0
- codex/static_root/assets/change-password-dialog-DE8R9FId.f3180b3946dd.js.br +0 -0
- codex/static_root/assets/change-password-dialog-DE8R9FId.f3180b3946dd.js.gz +0 -0
- codex/static_root/assets/change-password-dialog-DE8R9FId.js +1 -0
- codex/static_root/assets/change-password-dialog-DE8R9FId.js.br +0 -0
- codex/static_root/assets/change-password-dialog-DE8R9FId.js.gz +0 -0
- codex/static_root/assets/confirm-dialog-Dy-4G4rU.c2de2d0acce1.js +1 -0
- codex/static_root/assets/confirm-dialog-Dy-4G4rU.c2de2d0acce1.js.br +0 -0
- codex/static_root/assets/confirm-dialog-Dy-4G4rU.c2de2d0acce1.js.gz +0 -0
- codex/static_root/assets/confirm-dialog-Dy-4G4rU.js +1 -0
- codex/static_root/assets/confirm-dialog-Dy-4G4rU.js.br +0 -0
- codex/static_root/assets/confirm-dialog-Dy-4G4rU.js.gz +0 -0
- codex/static_root/assets/confirm-dialog-YfC8mRQA.be37e8f67e0f.css +1 -0
- codex/static_root/assets/confirm-dialog-YfC8mRQA.css +1 -0
- codex/static_root/assets/datetime-column-Bt7J1qEf.css +1 -0
- codex/static_root/assets/datetime-column-Bt7J1qEf.css.br +0 -0
- codex/static_root/assets/datetime-column-Bt7J1qEf.d83164b4d4cb.css +1 -0
- codex/static_root/assets/datetime-column-Bt7J1qEf.d83164b4d4cb.css.br +0 -0
- codex/static_root/assets/datetime-column-C86OiFxS.32dca850b5fb.js +1 -0
- codex/static_root/assets/datetime-column-C86OiFxS.32dca850b5fb.js.br +0 -0
- codex/static_root/assets/datetime-column-C86OiFxS.32dca850b5fb.js.gz +0 -0
- codex/static_root/assets/datetime-column-C86OiFxS.js +1 -0
- codex/static_root/assets/datetime-column-C86OiFxS.js.br +0 -0
- codex/static_root/assets/datetime-column-C86OiFxS.js.gz +0 -0
- codex/static_root/assets/filter-OaiDOf0D.41d89efe9cd5.js +1 -0
- codex/static_root/assets/filter-OaiDOf0D.41d89efe9cd5.js.br +0 -0
- codex/static_root/assets/filter-OaiDOf0D.41d89efe9cd5.js.gz +0 -0
- codex/static_root/assets/filter-OaiDOf0D.js +1 -0
- codex/static_root/assets/filter-OaiDOf0D.js.br +0 -0
- codex/static_root/assets/filter-OaiDOf0D.js.gz +0 -0
- codex/static_root/assets/flag-tab-ChsErni6.0fca30995a0e.js +1 -0
- codex/static_root/assets/flag-tab-ChsErni6.0fca30995a0e.js.br +0 -0
- codex/static_root/assets/flag-tab-ChsErni6.0fca30995a0e.js.gz +0 -0
- codex/static_root/assets/flag-tab-ChsErni6.js +1 -0
- codex/static_root/assets/flag-tab-ChsErni6.js.br +0 -0
- codex/static_root/assets/flag-tab-ChsErni6.js.gz +0 -0
- codex/static_root/assets/forwardRefs-B_sUWZn6.5114f206ca9c.css +1 -0
- codex/static_root/assets/forwardRefs-B_sUWZn6.5114f206ca9c.css.br +0 -0
- codex/static_root/assets/forwardRefs-B_sUWZn6.5114f206ca9c.css.gz +0 -0
- codex/static_root/assets/forwardRefs-B_sUWZn6.css +1 -0
- codex/static_root/assets/forwardRefs-B_sUWZn6.css.br +0 -0
- codex/static_root/assets/forwardRefs-B_sUWZn6.css.gz +0 -0
- codex/static_root/assets/forwardRefs-BjkhALLr.1bfbdea189d7.js +1 -0
- codex/static_root/assets/forwardRefs-BjkhALLr.1bfbdea189d7.js.br +0 -0
- codex/static_root/assets/forwardRefs-BjkhALLr.1bfbdea189d7.js.gz +0 -0
- codex/static_root/assets/forwardRefs-BjkhALLr.js +1 -0
- codex/static_root/assets/forwardRefs-BjkhALLr.js.br +0 -0
- codex/static_root/assets/forwardRefs-BjkhALLr.js.gz +0 -0
- codex/static_root/assets/group-tab-CQ_Qw6h8.078d0a9225ba.css +1 -0
- codex/static_root/assets/group-tab-CQ_Qw6h8.078d0a9225ba.css.br +0 -0
- codex/static_root/assets/group-tab-CQ_Qw6h8.078d0a9225ba.css.gz +0 -0
- codex/static_root/assets/group-tab-CQ_Qw6h8.css +1 -0
- codex/static_root/assets/group-tab-CQ_Qw6h8.css.br +0 -0
- codex/static_root/assets/group-tab-CQ_Qw6h8.css.gz +0 -0
- codex/static_root/assets/group-tab-DB4vz9MA.42dd130d0118.js +1 -0
- codex/static_root/assets/group-tab-DB4vz9MA.42dd130d0118.js.br +0 -0
- codex/static_root/assets/group-tab-DB4vz9MA.42dd130d0118.js.gz +0 -0
- codex/static_root/assets/group-tab-DB4vz9MA.js +1 -0
- codex/static_root/assets/group-tab-DB4vz9MA.js.br +0 -0
- codex/static_root/assets/group-tab-DB4vz9MA.js.gz +0 -0
- codex/static_root/assets/http-error-7Kkr0CW4.c16118f162ac.js +1 -0
- codex/static_root/assets/http-error-7Kkr0CW4.c16118f162ac.js.br +0 -0
- codex/static_root/assets/http-error-7Kkr0CW4.c16118f162ac.js.gz +0 -0
- codex/static_root/assets/http-error-7Kkr0CW4.js +1 -0
- codex/static_root/assets/http-error-7Kkr0CW4.js.br +0 -0
- codex/static_root/assets/http-error-7Kkr0CW4.js.gz +0 -0
- codex/static_root/assets/http-error-CB3k5P-n.82d886ac81c7.css +1 -0
- codex/static_root/assets/http-error-CB3k5P-n.82d886ac81c7.css.br +0 -0
- codex/static_root/assets/http-error-CB3k5P-n.82d886ac81c7.css.gz +0 -0
- codex/static_root/assets/http-error-CB3k5P-n.css +1 -0
- codex/static_root/assets/http-error-CB3k5P-n.css.br +0 -0
- codex/static_root/assets/http-error-CB3k5P-n.css.gz +0 -0
- codex/static_root/assets/index-yvfyzOV3.c886587fcfb6.js +1 -0
- codex/static_root/assets/index-yvfyzOV3.c886587fcfb6.js.br +0 -0
- codex/static_root/assets/index-yvfyzOV3.c886587fcfb6.js.gz +0 -0
- codex/static_root/assets/index-yvfyzOV3.js +1 -0
- codex/static_root/assets/index-yvfyzOV3.js.br +0 -0
- codex/static_root/assets/index-yvfyzOV3.js.gz +0 -0
- codex/static_root/assets/library-tab-5StL67ei.0fad8998a237.css +1 -0
- codex/static_root/assets/library-tab-5StL67ei.0fad8998a237.css.br +0 -0
- codex/static_root/assets/library-tab-5StL67ei.0fad8998a237.css.gz +0 -0
- codex/static_root/assets/library-tab-5StL67ei.css +1 -0
- codex/static_root/assets/library-tab-5StL67ei.css.br +0 -0
- codex/static_root/assets/library-tab-5StL67ei.css.gz +0 -0
- codex/static_root/assets/library-tab-BJM2q4YE.0eb19632c084.js +1 -0
- codex/static_root/assets/library-tab-BJM2q4YE.0eb19632c084.js.br +0 -0
- codex/static_root/assets/library-tab-BJM2q4YE.0eb19632c084.js.gz +0 -0
- codex/static_root/assets/library-tab-BJM2q4YE.js +1 -0
- codex/static_root/assets/library-tab-BJM2q4YE.js.br +0 -0
- codex/static_root/assets/library-tab-BJM2q4YE.js.gz +0 -0
- codex/static_root/assets/main-0gkU-bgy.475633238e98.js +39 -0
- codex/static_root/assets/main-0gkU-bgy.475633238e98.js.br +0 -0
- codex/static_root/assets/main-0gkU-bgy.475633238e98.js.gz +0 -0
- codex/static_root/assets/main-0gkU-bgy.js +39 -0
- codex/static_root/assets/main-0gkU-bgy.js.br +0 -0
- codex/static_root/assets/main-0gkU-bgy.js.gz +0 -0
- codex/static_root/assets/main-B8_0rUnw.a9be0875ae25.css +5 -0
- codex/static_root/assets/main-B8_0rUnw.a9be0875ae25.css.br +0 -0
- codex/static_root/assets/main-B8_0rUnw.a9be0875ae25.css.gz +0 -0
- codex/static_root/assets/main-B8_0rUnw.css +5 -0
- codex/static_root/assets/main-B8_0rUnw.css.br +0 -0
- codex/static_root/assets/main-B8_0rUnw.css.gz +0 -0
- codex/static_root/assets/pager-full-pdf-dMflY9TZ.14b64093d057.js +1 -0
- codex/static_root/assets/pager-full-pdf-dMflY9TZ.14b64093d057.js.br +0 -0
- codex/static_root/assets/pager-full-pdf-dMflY9TZ.14b64093d057.js.gz +0 -0
- codex/static_root/assets/pager-full-pdf-dMflY9TZ.js +1 -0
- codex/static_root/assets/pager-full-pdf-dMflY9TZ.js.br +0 -0
- codex/static_root/assets/pager-full-pdf-dMflY9TZ.js.gz +0 -0
- codex/static_root/assets/pagination-toolbar-741OafNw.4f9155469274.css +1 -0
- codex/static_root/assets/pagination-toolbar-741OafNw.4f9155469274.css.br +0 -0
- codex/static_root/assets/pagination-toolbar-741OafNw.4f9155469274.css.gz +0 -0
- codex/static_root/assets/pagination-toolbar-741OafNw.css +1 -0
- codex/static_root/assets/pagination-toolbar-741OafNw.css.br +0 -0
- codex/static_root/assets/pagination-toolbar-741OafNw.css.gz +0 -0
- codex/static_root/assets/pagination-toolbar-BzWY1XTi.b1fbe47f722d.js +1 -0
- codex/static_root/assets/pagination-toolbar-BzWY1XTi.b1fbe47f722d.js.br +0 -0
- codex/static_root/assets/pagination-toolbar-BzWY1XTi.b1fbe47f722d.js.gz +0 -0
- codex/static_root/assets/pagination-toolbar-BzWY1XTi.js +1 -0
- codex/static_root/assets/pagination-toolbar-BzWY1XTi.js.br +0 -0
- codex/static_root/assets/pagination-toolbar-BzWY1XTi.js.gz +0 -0
- codex/static_root/assets/pdf-doc-remlTMFH.4063b6ec0033.js +372 -0
- codex/static_root/assets/pdf-doc-remlTMFH.4063b6ec0033.js.br +0 -0
- codex/static_root/assets/pdf-doc-remlTMFH.4063b6ec0033.js.gz +0 -0
- codex/static_root/assets/pdf-doc-remlTMFH.js +372 -0
- codex/static_root/assets/pdf-doc-remlTMFH.js.br +0 -0
- codex/static_root/assets/pdf-doc-remlTMFH.js.gz +0 -0
- codex/static_root/assets/reader-CmiUt5h2.65e3cb07aac9.js +2 -0
- codex/static_root/assets/reader-CmiUt5h2.65e3cb07aac9.js.br +0 -0
- codex/static_root/assets/reader-CmiUt5h2.65e3cb07aac9.js.gz +0 -0
- codex/static_root/assets/reader-CmiUt5h2.js +2 -0
- codex/static_root/assets/reader-CmiUt5h2.js.br +0 -0
- codex/static_root/assets/reader-CmiUt5h2.js.gz +0 -0
- codex/static_root/assets/reader-HE07eoaG.8626eeb7c718.css +1 -0
- codex/static_root/assets/reader-HE07eoaG.8626eeb7c718.css.br +0 -0
- codex/static_root/assets/reader-HE07eoaG.8626eeb7c718.css.gz +0 -0
- codex/static_root/assets/reader-HE07eoaG.css +1 -0
- codex/static_root/assets/reader-HE07eoaG.css.br +0 -0
- codex/static_root/assets/reader-HE07eoaG.css.gz +0 -0
- codex/static_root/assets/relation-chips-CcFgPQOM.0b468249b62e.css +1 -0
- codex/static_root/assets/relation-chips-CcFgPQOM.0b468249b62e.css.br +0 -0
- codex/static_root/assets/relation-chips-CcFgPQOM.0b468249b62e.css.gz +0 -0
- codex/static_root/assets/relation-chips-CcFgPQOM.css +1 -0
- codex/static_root/assets/relation-chips-CcFgPQOM.css.br +0 -0
- codex/static_root/assets/relation-chips-CcFgPQOM.css.gz +0 -0
- codex/static_root/assets/relation-chips-Dl0i3EP7.1f365f5c1e41.js +1 -0
- codex/static_root/assets/relation-chips-Dl0i3EP7.1f365f5c1e41.js.br +0 -0
- codex/static_root/assets/relation-chips-Dl0i3EP7.1f365f5c1e41.js.gz +0 -0
- codex/static_root/assets/relation-chips-Dl0i3EP7.js +1 -0
- codex/static_root/assets/relation-chips-Dl0i3EP7.js.br +0 -0
- codex/static_root/assets/relation-chips-Dl0i3EP7.js.gz +0 -0
- codex/static_root/assets/settings-drawer-CpKXWPSA.82625de924bb.js +2 -0
- codex/static_root/assets/settings-drawer-CpKXWPSA.82625de924bb.js.br +0 -0
- codex/static_root/assets/settings-drawer-CpKXWPSA.82625de924bb.js.gz +0 -0
- codex/static_root/assets/settings-drawer-CpKXWPSA.js +2 -0
- codex/static_root/assets/settings-drawer-CpKXWPSA.js.br +0 -0
- codex/static_root/assets/settings-drawer-CpKXWPSA.js.gz +0 -0
- codex/static_root/assets/settings-drawer-CpS_aX4Z.9d4d9533d033.css +1 -0
- codex/static_root/assets/settings-drawer-CpS_aX4Z.9d4d9533d033.css.br +0 -0
- codex/static_root/assets/settings-drawer-CpS_aX4Z.9d4d9533d033.css.gz +0 -0
- codex/static_root/assets/settings-drawer-CpS_aX4Z.css +1 -0
- codex/static_root/assets/settings-drawer-CpS_aX4Z.css.br +0 -0
- codex/static_root/assets/settings-drawer-CpS_aX4Z.css.gz +0 -0
- codex/static_root/assets/ssrBoot-D4fyL90J.0eef13056f93.js +1 -0
- codex/static_root/assets/ssrBoot-D4fyL90J.0eef13056f93.js.br +0 -0
- codex/static_root/assets/ssrBoot-D4fyL90J.0eef13056f93.js.gz +0 -0
- codex/static_root/assets/ssrBoot-D4fyL90J.js +1 -0
- codex/static_root/assets/ssrBoot-D4fyL90J.js.br +0 -0
- codex/static_root/assets/ssrBoot-D4fyL90J.js.gz +0 -0
- codex/static_root/assets/stats-tab-Cu7saNBy.8ad3f7a0995a.js +1 -0
- codex/static_root/assets/stats-tab-Cu7saNBy.8ad3f7a0995a.js.br +0 -0
- codex/static_root/assets/stats-tab-Cu7saNBy.8ad3f7a0995a.js.gz +0 -0
- codex/static_root/assets/stats-tab-Cu7saNBy.js +1 -0
- codex/static_root/assets/stats-tab-Cu7saNBy.js.br +0 -0
- codex/static_root/assets/stats-tab-Cu7saNBy.js.gz +0 -0
- codex/static_root/assets/stats-tab-Dpqh5pF9.8dba36f90032.css +1 -0
- codex/static_root/assets/stats-tab-Dpqh5pF9.8dba36f90032.css.br +0 -0
- codex/static_root/assets/stats-tab-Dpqh5pF9.8dba36f90032.css.gz +0 -0
- codex/static_root/assets/stats-tab-Dpqh5pF9.css +1 -0
- codex/static_root/assets/stats-tab-Dpqh5pF9.css.br +0 -0
- codex/static_root/assets/stats-tab-Dpqh5pF9.css.gz +0 -0
- codex/static_root/assets/task-tab-B66NRaoH.fdb8c98f0652.js +1 -0
- codex/static_root/assets/task-tab-B66NRaoH.fdb8c98f0652.js.br +0 -0
- codex/static_root/assets/task-tab-B66NRaoH.fdb8c98f0652.js.gz +0 -0
- codex/static_root/assets/task-tab-B66NRaoH.js +1 -0
- codex/static_root/assets/task-tab-B66NRaoH.js.br +0 -0
- codex/static_root/assets/task-tab-B66NRaoH.js.gz +0 -0
- codex/static_root/assets/unauthorized-BBwsmi0O.19d4882b821d.css +1 -0
- codex/static_root/assets/unauthorized-BBwsmi0O.19d4882b821d.css.br +0 -0
- codex/static_root/assets/unauthorized-BBwsmi0O.19d4882b821d.css.gz +0 -0
- codex/static_root/assets/unauthorized-BBwsmi0O.css +1 -0
- codex/static_root/assets/unauthorized-BBwsmi0O.css.br +0 -0
- codex/static_root/assets/unauthorized-BBwsmi0O.css.gz +0 -0
- codex/static_root/assets/unauthorized-CLNP5Zx1.9f072de5e06c.js +1 -0
- codex/static_root/assets/unauthorized-CLNP5Zx1.9f072de5e06c.js.br +0 -0
- codex/static_root/assets/unauthorized-CLNP5Zx1.9f072de5e06c.js.gz +0 -0
- codex/static_root/assets/unauthorized-CLNP5Zx1.js +1 -0
- codex/static_root/assets/unauthorized-CLNP5Zx1.js.br +0 -0
- codex/static_root/assets/unauthorized-CLNP5Zx1.js.gz +0 -0
- codex/static_root/assets/user-tab-BqhQ3sls.cacf99be60fb.js +1 -0
- codex/static_root/assets/user-tab-BqhQ3sls.cacf99be60fb.js.br +0 -0
- codex/static_root/assets/user-tab-BqhQ3sls.cacf99be60fb.js.gz +0 -0
- codex/static_root/assets/user-tab-BqhQ3sls.js +1 -0
- codex/static_root/assets/user-tab-BqhQ3sls.js.br +0 -0
- codex/static_root/assets/user-tab-BqhQ3sls.js.gz +0 -0
- codex/static_root/img/folder.83168d8d3119.svg +1 -0
- codex/static_root/img/folder.83168d8d3119.svg.br +1 -0
- codex/static_root/img/folder.83168d8d3119.svg.gz +0 -0
- codex/static_root/img/folder.svg +1 -1
- codex/static_root/img/folder.svg.br +0 -0
- codex/static_root/img/folder.svg.gz +0 -0
- codex/static_root/img/imprint.3ca7a779b949.svg +1 -0
- codex/static_root/img/imprint.3ca7a779b949.svg.br +0 -0
- codex/static_root/img/imprint.3ca7a779b949.svg.gz +0 -0
- codex/static_root/img/imprint.svg +1 -1
- codex/static_root/img/imprint.svg.br +0 -0
- codex/static_root/img/imprint.svg.gz +0 -0
- codex/static_root/img/logo-maskable.aeef5c2fffc8.svg +1 -0
- codex/static_root/img/logo-maskable.aeef5c2fffc8.svg.br +0 -0
- codex/static_root/img/logo-maskable.aeef5c2fffc8.svg.gz +0 -0
- codex/static_root/img/logo-maskable.svg +1 -1
- codex/static_root/img/logo-maskable.svg.br +0 -0
- codex/static_root/img/logo-maskable.svg.gz +0 -0
- codex/static_root/img/logo.00c902973831.svg +1 -0
- codex/static_root/img/logo.00c902973831.svg.br +0 -0
- codex/static_root/img/logo.00c902973831.svg.gz +0 -0
- codex/static_root/img/logo.svg +1 -1
- codex/static_root/img/logo.svg.br +0 -0
- codex/static_root/img/logo.svg.gz +0 -0
- codex/static_root/img/missing-cover-165.f4bb7740084c.webp +0 -0
- codex/static_root/img/missing-cover-165.webp +0 -0
- codex/static_root/img/missing-cover.7329518c5972.svg +1 -0
- codex/static_root/img/missing-cover.7329518c5972.svg.br +0 -0
- codex/static_root/img/missing-cover.7329518c5972.svg.gz +0 -0
- codex/static_root/img/missing-cover.svg +1 -1
- codex/static_root/img/missing-cover.svg.br +0 -0
- codex/static_root/img/missing-cover.svg.gz +0 -0
- codex/static_root/img/series.b092bbac0c2a.svg +1 -0
- codex/static_root/img/series.b092bbac0c2a.svg.br +0 -0
- codex/static_root/img/series.b092bbac0c2a.svg.gz +0 -0
- codex/static_root/img/series.svg +1 -1
- codex/static_root/img/series.svg.br +0 -0
- codex/static_root/img/series.svg.gz +0 -0
- codex/static_root/img/story-arc.884f7b1d95bd.svg +1 -0
- codex/static_root/img/story-arc.884f7b1d95bd.svg.br +0 -0
- codex/static_root/img/story-arc.884f7b1d95bd.svg.gz +0 -0
- codex/static_root/img/story-arc.svg +1 -1
- codex/static_root/img/story-arc.svg.br +0 -0
- codex/static_root/img/story-arc.svg.gz +0 -0
- codex/static_root/img/volume.516ec0c3018d.svg +1 -0
- codex/static_root/img/volume.516ec0c3018d.svg.br +0 -0
- codex/static_root/img/volume.516ec0c3018d.svg.gz +0 -0
- codex/static_root/img/volume.svg +1 -1
- codex/static_root/img/volume.svg.br +0 -0
- codex/static_root/img/volume.svg.gz +0 -0
- codex/static_root/manifest.474fa7aff739.json +760 -0
- codex/static_root/manifest.474fa7aff739.json.br +0 -0
- codex/static_root/manifest.474fa7aff739.json.gz +0 -0
- codex/static_root/manifest.json +341 -338
- codex/static_root/manifest.json.br +0 -0
- codex/static_root/manifest.json.gz +0 -0
- codex/static_root/staticfiles.json +1 -1
- codex/templates/headers-script-globals.html +1 -0
- codex/urls/api/browser.py +10 -1
- codex/urls/converters.py +2 -5
- codex/urls/root.py +1 -1
- codex/util.py +14 -8
- codex/views/admin/api_key.py +1 -1
- codex/views/admin/flag.py +10 -9
- codex/views/admin/group.py +5 -3
- codex/views/admin/library.py +15 -9
- codex/views/admin/permissions.py +21 -0
- codex/views/admin/stats.py +6 -8
- codex/views/admin/tasks.py +48 -48
- codex/views/admin/user.py +5 -3
- codex/views/auth.py +29 -11
- codex/views/bookmark.py +25 -14
- codex/views/browser/annotate/bookmark.py +0 -3
- codex/views/browser/annotate/card.py +20 -5
- codex/views/browser/annotate/order.py +3 -7
- codex/views/browser/bookmark.py +10 -7
- codex/views/browser/breadcrumbs.py +8 -7
- codex/views/browser/browser.py +16 -16
- codex/views/browser/choices.py +81 -65
- codex/views/browser/cover.py +21 -19
- codex/views/browser/download.py +5 -5
- codex/views/browser/filters/bookmark.py +5 -0
- codex/views/browser/filters/field.py +3 -3
- codex/views/browser/filters/filter.py +3 -5
- codex/views/browser/filters/group.py +5 -5
- codex/views/browser/filters/search/field/column.py +13 -9
- codex/views/browser/filters/search/field/expression.py +1 -3
- codex/views/browser/filters/search/field/filter.py +2 -4
- codex/views/browser/filters/search/field/optimize.py +1 -1
- codex/views/browser/filters/search/field/parse.py +28 -7
- codex/views/browser/filters/search/fts.py +3 -4
- codex/views/browser/filters/search/parse.py +26 -26
- codex/views/browser/group_mtime.py +13 -10
- codex/views/browser/metadata/__init__.py +90 -1
- codex/views/browser/metadata/annotate.py +13 -27
- codex/views/browser/metadata/const.py +83 -0
- codex/views/browser/metadata/copy_intersections.py +14 -9
- codex/views/browser/metadata/query_intersections.py +67 -48
- codex/views/browser/mtime.py +4 -7
- codex/views/browser/order_by.py +4 -1
- codex/views/browser/page_in_bounds.py +6 -7
- codex/views/browser/paginate.py +3 -5
- codex/views/browser/params.py +23 -36
- codex/views/browser/settings.py +18 -4
- codex/views/browser/title.py +9 -5
- codex/views/browser/validate.py +6 -8
- codex/views/const.py +11 -9
- codex/views/download.py +2 -2
- codex/views/error.py +1 -1
- codex/views/exceptions.py +82 -0
- codex/views/frontend.py +8 -18
- codex/views/lazy_import.py +24 -0
- codex/views/mixins.py +34 -12
- codex/views/opds/auth.py +2 -2
- codex/views/opds/authentication_v1.py +2 -1
- codex/views/opds/const.py +1 -1
- codex/views/opds/urls.py +2 -1
- codex/views/opds/util.py +14 -41
- codex/views/opds/v1/entry/entry.py +12 -15
- codex/views/opds/v1/entry/links.py +15 -19
- codex/views/opds/v1/facets.py +8 -5
- codex/views/opds/v1/feed.py +23 -22
- codex/views/opds/v1/links.py +3 -7
- codex/views/opds/v1/opensearch_v1.py +7 -4
- codex/views/opds/v2/feed.py +14 -15
- codex/views/opds/v2/href.py +17 -12
- codex/views/opds/v2/links.py +3 -1
- codex/views/opds/v2/progression.py +31 -15
- codex/views/opds/v2/publications.py +18 -17
- codex/views/opds/v2/top_links.py +7 -2
- codex/views/public.py +12 -15
- codex/views/reader/arcs.py +153 -74
- codex/views/reader/books.py +72 -97
- codex/views/reader/page.py +13 -9
- codex/views/reader/params.py +33 -96
- codex/views/reader/reader.py +18 -73
- codex/views/reader/settings.py +4 -2
- codex/views/session.py +13 -19
- codex/views/settings.py +4 -9
- codex/views/template.py +8 -4
- codex/views/timezone.py +4 -5
- codex/views/util.py +3 -24
- codex/views/version.py +5 -3
- codex/websockets/consumers.py +7 -7
- codex/websockets/listener.py +4 -5
- codex-1.8.0.dist-info/METADATA +592 -0
- codex-1.8.0.dist-info/RECORD +1101 -0
- codex-1.8.0.dist-info/WHEEL +4 -0
- codex-1.8.0.dist-info/entry_points.txt +2 -0
- codex/db.py +0 -134
- codex/exceptions.py +0 -88
- codex/librarian/README.md +0 -4
- codex/librarian/delayed_taskd.py +0 -21
- codex/librarian/importer/__init__.py +0 -1
- codex/librarian/importer/aggregate.py +0 -256
- codex/librarian/importer/cache.py +0 -90
- codex/librarian/importer/const.py +0 -244
- codex/librarian/importer/create_comics.py +0 -139
- codex/librarian/importer/create_covers.py +0 -96
- codex/librarian/importer/create_fks.py +0 -346
- codex/librarian/importer/deleted.py +0 -138
- codex/librarian/importer/extract.py +0 -284
- codex/librarian/importer/failed_imports.py +0 -165
- codex/librarian/importer/importer.py +0 -101
- codex/librarian/importer/importerd.py +0 -122
- codex/librarian/importer/init.py +0 -264
- codex/librarian/importer/link_comics.py +0 -270
- codex/librarian/importer/link_covers.py +0 -73
- codex/librarian/importer/moved.py +0 -368
- codex/librarian/importer/query_covers.py +0 -53
- codex/librarian/importer/query_fks.py +0 -653
- codex/librarian/importer/status.py +0 -29
- codex/librarian/importer/tasks.py +0 -55
- codex/librarian/janitor/__init__.py +0 -1
- codex/librarian/janitor/cleanup.py +0 -167
- codex/librarian/janitor/failed_imports.py +0 -27
- codex/librarian/janitor/integrity.py +0 -378
- codex/librarian/janitor/janitor.py +0 -161
- codex/librarian/janitor/latest_version.py +0 -55
- codex/librarian/janitor/scheduled_time.py +0 -12
- codex/librarian/janitor/status.py +0 -22
- codex/librarian/janitor/tasks.py +0 -109
- codex/librarian/janitor/update.py +0 -109
- codex/librarian/janitor/vacuum.py +0 -51
- codex/librarian/search/__init__.py +0 -1
- codex/librarian/search/optimize.py +0 -43
- codex/librarian/search/remove.py +0 -53
- codex/librarian/search/searchd.py +0 -28
- codex/librarian/search/status.py +0 -13
- codex/librarian/search/tasks.py +0 -37
- codex/librarian/search/update.py +0 -305
- codex/librarian/watchdog/README.md +0 -11
- codex/logger/__init__.py +0 -1
- codex/logger/formatter.py +0 -36
- codex/logger/logger.py +0 -46
- codex/logger/loggerd.py +0 -102
- codex/logger/mp_queue.py +0 -5
- codex/logger_base.py +0 -12
- codex/memory.py +0 -56
- codex/permissions.py +0 -19
- codex/registration.py +0 -16
- codex/serializers/README.md +0 -4
- codex/settings/README.md +0 -4
- codex/settings/settings.py +0 -389
- codex/startup.py +0 -182
- codex/static_root/assets/VCheckbox-DraWPvy6.30c95a5ce5e6.js +0 -1
- codex/static_root/assets/VCheckbox-DraWPvy6.30c95a5ce5e6.js.br +0 -0
- codex/static_root/assets/VCheckbox-DraWPvy6.30c95a5ce5e6.js.gz +0 -0
- codex/static_root/assets/VCheckbox-DraWPvy6.js +0 -1
- codex/static_root/assets/VCheckbox-DraWPvy6.js.br +0 -0
- codex/static_root/assets/VCheckbox-DraWPvy6.js.gz +0 -0
- codex/static_root/assets/VCheckboxBtn-Bxf1MS02.f38524c2448d.js +0 -1
- codex/static_root/assets/VCheckboxBtn-Bxf1MS02.f38524c2448d.js.br +0 -0
- codex/static_root/assets/VCheckboxBtn-Bxf1MS02.f38524c2448d.js.gz +0 -0
- codex/static_root/assets/VCheckboxBtn-Bxf1MS02.js +0 -1
- codex/static_root/assets/VCheckboxBtn-Bxf1MS02.js.br +0 -0
- codex/static_root/assets/VCheckboxBtn-Bxf1MS02.js.gz +0 -0
- codex/static_root/assets/VCombobox-DKyNgHNV.b4e08dd5606d.js +0 -1
- codex/static_root/assets/VCombobox-DKyNgHNV.b4e08dd5606d.js.br +0 -0
- codex/static_root/assets/VCombobox-DKyNgHNV.b4e08dd5606d.js.gz +0 -0
- codex/static_root/assets/VCombobox-DKyNgHNV.js +0 -1
- codex/static_root/assets/VCombobox-DKyNgHNV.js.br +0 -0
- codex/static_root/assets/VCombobox-DKyNgHNV.js.gz +0 -0
- codex/static_root/assets/VDialog-C_zlnjF1.6c58e08b5374.css +0 -1
- codex/static_root/assets/VDialog-C_zlnjF1.6c58e08b5374.css.br +0 -0
- codex/static_root/assets/VDialog-C_zlnjF1.6c58e08b5374.css.gz +0 -0
- codex/static_root/assets/VDialog-C_zlnjF1.css +0 -1
- codex/static_root/assets/VDialog-C_zlnjF1.css.br +0 -0
- codex/static_root/assets/VDialog-C_zlnjF1.css.gz +0 -0
- codex/static_root/assets/VDialog-tf0N3lvG.eecb009783ed.js +0 -1
- codex/static_root/assets/VDialog-tf0N3lvG.eecb009783ed.js.br +0 -0
- codex/static_root/assets/VDialog-tf0N3lvG.eecb009783ed.js.gz +0 -0
- codex/static_root/assets/VDialog-tf0N3lvG.js +0 -1
- codex/static_root/assets/VDialog-tf0N3lvG.js.br +0 -0
- codex/static_root/assets/VDialog-tf0N3lvG.js.gz +0 -0
- codex/static_root/assets/VDivider-CTvTvFr_.3d0b477ddae0.js +0 -1
- codex/static_root/assets/VDivider-CTvTvFr_.3d0b477ddae0.js.br +0 -0
- codex/static_root/assets/VDivider-CTvTvFr_.3d0b477ddae0.js.gz +0 -0
- codex/static_root/assets/VDivider-CTvTvFr_.js +0 -1
- codex/static_root/assets/VDivider-CTvTvFr_.js.br +0 -0
- codex/static_root/assets/VDivider-CTvTvFr_.js.gz +0 -0
- codex/static_root/assets/VExpansionPanels-BjwwzLx6.203715bfa684.js +0 -1
- codex/static_root/assets/VExpansionPanels-BjwwzLx6.203715bfa684.js.br +0 -0
- codex/static_root/assets/VExpansionPanels-BjwwzLx6.203715bfa684.js.gz +0 -0
- codex/static_root/assets/VExpansionPanels-BjwwzLx6.js +0 -1
- codex/static_root/assets/VExpansionPanels-BjwwzLx6.js.br +0 -0
- codex/static_root/assets/VExpansionPanels-BjwwzLx6.js.gz +0 -0
- codex/static_root/assets/VForm-Dw7aCtM5.9266634dfe00.js +0 -1
- codex/static_root/assets/VForm-Dw7aCtM5.9266634dfe00.js.br +0 -0
- codex/static_root/assets/VForm-Dw7aCtM5.9266634dfe00.js.gz +0 -0
- codex/static_root/assets/VForm-Dw7aCtM5.js +0 -1
- codex/static_root/assets/VForm-Dw7aCtM5.js.br +0 -0
- codex/static_root/assets/VForm-Dw7aCtM5.js.gz +0 -0
- codex/static_root/assets/VRadioGroup-DJBFM2Br.79fa65084b8d.js +0 -1
- codex/static_root/assets/VRadioGroup-DJBFM2Br.79fa65084b8d.js.br +0 -0
- codex/static_root/assets/VRadioGroup-DJBFM2Br.79fa65084b8d.js.gz +0 -0
- codex/static_root/assets/VRadioGroup-DJBFM2Br.js +0 -1
- codex/static_root/assets/VRadioGroup-DJBFM2Br.js.br +0 -0
- codex/static_root/assets/VRadioGroup-DJBFM2Br.js.gz +0 -0
- codex/static_root/assets/VSelect-Cv8OuNtL.a5e2fe245f1a.js +0 -1
- codex/static_root/assets/VSelect-Cv8OuNtL.a5e2fe245f1a.js.br +0 -0
- codex/static_root/assets/VSelect-Cv8OuNtL.a5e2fe245f1a.js.gz +0 -0
- codex/static_root/assets/VSelect-Cv8OuNtL.js +0 -1
- codex/static_root/assets/VSelect-Cv8OuNtL.js.br +0 -0
- codex/static_root/assets/VSelect-Cv8OuNtL.js.gz +0 -0
- codex/static_root/assets/VSelectionControl-DoFzRlEh.a927b53c246b.js +0 -1
- codex/static_root/assets/VSelectionControl-DoFzRlEh.a927b53c246b.js.br +0 -0
- codex/static_root/assets/VSelectionControl-DoFzRlEh.a927b53c246b.js.gz +0 -0
- codex/static_root/assets/VSelectionControl-DoFzRlEh.js +0 -1
- codex/static_root/assets/VSelectionControl-DoFzRlEh.js.br +0 -0
- codex/static_root/assets/VSelectionControl-DoFzRlEh.js.gz +0 -0
- codex/static_root/assets/VTable-C-cNChDa.b2aabb112acf.js +0 -1
- codex/static_root/assets/VTable-C-cNChDa.b2aabb112acf.js.br +0 -0
- codex/static_root/assets/VTable-C-cNChDa.b2aabb112acf.js.gz +0 -0
- codex/static_root/assets/VTable-C-cNChDa.js +0 -1
- codex/static_root/assets/VTable-C-cNChDa.js.br +0 -0
- codex/static_root/assets/VTable-C-cNChDa.js.gz +0 -0
- codex/static_root/assets/VTable-CHRVGI94.0a75643f6486.css +0 -1
- codex/static_root/assets/VTable-CHRVGI94.0a75643f6486.css.br +0 -0
- codex/static_root/assets/VTable-CHRVGI94.0a75643f6486.css.gz +0 -0
- codex/static_root/assets/VTable-CHRVGI94.css +0 -1
- codex/static_root/assets/VTable-CHRVGI94.css.br +0 -0
- codex/static_root/assets/VTable-CHRVGI94.css.gz +0 -0
- codex/static_root/assets/VWindowItem-CWBhiE_Y.css +0 -1
- codex/static_root/assets/VWindowItem-CWBhiE_Y.css.br +0 -0
- codex/static_root/assets/VWindowItem-CWBhiE_Y.css.gz +0 -0
- codex/static_root/assets/VWindowItem-CWBhiE_Y.f7fb19752bf3.css +0 -1
- codex/static_root/assets/VWindowItem-CWBhiE_Y.f7fb19752bf3.css.br +0 -0
- codex/static_root/assets/VWindowItem-CWBhiE_Y.f7fb19752bf3.css.gz +0 -0
- codex/static_root/assets/VWindowItem-DL6bN3h7.45f85724527c.js +0 -1
- codex/static_root/assets/VWindowItem-DL6bN3h7.45f85724527c.js.br +0 -0
- codex/static_root/assets/VWindowItem-DL6bN3h7.45f85724527c.js.gz +0 -0
- codex/static_root/assets/VWindowItem-DL6bN3h7.js +0 -1
- codex/static_root/assets/VWindowItem-DL6bN3h7.js.br +0 -0
- codex/static_root/assets/VWindowItem-DL6bN3h7.js.gz +0 -0
- codex/static_root/assets/admin-BQ68PA7O.8bf1f757ca31.js +0 -1
- codex/static_root/assets/admin-BQ68PA7O.8bf1f757ca31.js.br +0 -0
- codex/static_root/assets/admin-BQ68PA7O.8bf1f757ca31.js.gz +0 -0
- codex/static_root/assets/admin-BQ68PA7O.js +0 -1
- codex/static_root/assets/admin-BQ68PA7O.js.br +0 -0
- codex/static_root/assets/admin-BQ68PA7O.js.gz +0 -0
- codex/static_root/assets/admin-Cg7RkTjo.191b04128f17.js +0 -1
- codex/static_root/assets/admin-Cg7RkTjo.191b04128f17.js.br +0 -0
- codex/static_root/assets/admin-Cg7RkTjo.191b04128f17.js.gz +0 -0
- codex/static_root/assets/admin-Cg7RkTjo.js +0 -1
- codex/static_root/assets/admin-Cg7RkTjo.js.br +0 -0
- codex/static_root/assets/admin-Cg7RkTjo.js.gz +0 -0
- codex/static_root/assets/admin-klMr_GZK.3784e4f1d624.css +0 -1
- codex/static_root/assets/admin-klMr_GZK.3784e4f1d624.css.br +0 -0
- codex/static_root/assets/admin-klMr_GZK.3784e4f1d624.css.gz +0 -0
- codex/static_root/assets/admin-klMr_GZK.css +0 -1
- codex/static_root/assets/admin-klMr_GZK.css.br +0 -0
- codex/static_root/assets/admin-klMr_GZK.css.gz +0 -0
- codex/static_root/assets/admin-menu-CKlcsy9S.41b2cf82b873.css +0 -1
- codex/static_root/assets/admin-menu-CKlcsy9S.41b2cf82b873.css.br +0 -0
- codex/static_root/assets/admin-menu-CKlcsy9S.41b2cf82b873.css.gz +0 -0
- codex/static_root/assets/admin-menu-CKlcsy9S.css +0 -1
- codex/static_root/assets/admin-menu-CKlcsy9S.css.br +0 -0
- codex/static_root/assets/admin-menu-CKlcsy9S.css.gz +0 -0
- codex/static_root/assets/admin-menu-Chx211s6.c63738168d93.js +0 -1
- codex/static_root/assets/admin-menu-Chx211s6.c63738168d93.js.br +0 -0
- codex/static_root/assets/admin-menu-Chx211s6.c63738168d93.js.gz +0 -0
- codex/static_root/assets/admin-menu-Chx211s6.js +0 -1
- codex/static_root/assets/admin-menu-Chx211s6.js.br +0 -0
- codex/static_root/assets/admin-menu-Chx211s6.js.gz +0 -0
- codex/static_root/assets/admin-settings-button-progress-DPuwgSVv.7689648ee782.js +0 -1
- codex/static_root/assets/admin-settings-button-progress-DPuwgSVv.7689648ee782.js.br +0 -0
- codex/static_root/assets/admin-settings-button-progress-DPuwgSVv.7689648ee782.js.gz +0 -0
- codex/static_root/assets/admin-settings-button-progress-DPuwgSVv.js +0 -1
- codex/static_root/assets/admin-settings-button-progress-DPuwgSVv.js.br +0 -0
- codex/static_root/assets/admin-settings-button-progress-DPuwgSVv.js.gz +0 -0
- codex/static_root/assets/admin-settings-button-progress-XVi7SeHr.435dc945daf1.css +0 -1
- codex/static_root/assets/admin-settings-button-progress-XVi7SeHr.css +0 -1
- codex/static_root/assets/browser-BKDmwxmv.6f4eca6489a1.js +0 -1
- codex/static_root/assets/browser-BKDmwxmv.6f4eca6489a1.js.br +0 -0
- codex/static_root/assets/browser-BKDmwxmv.6f4eca6489a1.js.gz +0 -0
- codex/static_root/assets/browser-BKDmwxmv.js +0 -1
- codex/static_root/assets/browser-BKDmwxmv.js.br +0 -0
- codex/static_root/assets/browser-BKDmwxmv.js.gz +0 -0
- codex/static_root/assets/browser-sNm790x9.305a6a4f38fd.css +0 -1
- codex/static_root/assets/browser-sNm790x9.305a6a4f38fd.css.br +0 -0
- codex/static_root/assets/browser-sNm790x9.305a6a4f38fd.css.gz +0 -0
- codex/static_root/assets/browser-sNm790x9.css +0 -1
- codex/static_root/assets/browser-sNm790x9.css.br +0 -0
- codex/static_root/assets/browser-sNm790x9.css.gz +0 -0
- codex/static_root/assets/change-password-dialog-DqupgUbt.e35dc497629b.js +0 -1
- codex/static_root/assets/change-password-dialog-DqupgUbt.e35dc497629b.js.br +0 -0
- codex/static_root/assets/change-password-dialog-DqupgUbt.e35dc497629b.js.gz +0 -0
- codex/static_root/assets/change-password-dialog-DqupgUbt.js +0 -1
- codex/static_root/assets/change-password-dialog-DqupgUbt.js.br +0 -0
- codex/static_root/assets/change-password-dialog-DqupgUbt.js.gz +0 -0
- codex/static_root/assets/confirm-dialog-AMnfyuMm.278235fdacbf.js +0 -1
- codex/static_root/assets/confirm-dialog-AMnfyuMm.278235fdacbf.js.br +0 -0
- codex/static_root/assets/confirm-dialog-AMnfyuMm.278235fdacbf.js.gz +0 -0
- codex/static_root/assets/confirm-dialog-AMnfyuMm.js +0 -1
- codex/static_root/assets/confirm-dialog-AMnfyuMm.js.br +0 -0
- codex/static_root/assets/confirm-dialog-AMnfyuMm.js.gz +0 -0
- codex/static_root/assets/confirm-dialog-BI5kQLy_.1b5309ad95ec.css +0 -1
- codex/static_root/assets/confirm-dialog-BI5kQLy_.1b5309ad95ec.css.br +0 -0
- codex/static_root/assets/confirm-dialog-BI5kQLy_.css +0 -1
- codex/static_root/assets/confirm-dialog-BI5kQLy_.css.br +0 -0
- codex/static_root/assets/datetime-column-BavtvLnf.1f3bf499e063.css +0 -1
- codex/static_root/assets/datetime-column-BavtvLnf.css +0 -1
- codex/static_root/assets/datetime-column-m-oshrDM.7e17980c4b7a.js +0 -1
- codex/static_root/assets/datetime-column-m-oshrDM.7e17980c4b7a.js.br +0 -0
- codex/static_root/assets/datetime-column-m-oshrDM.7e17980c4b7a.js.gz +0 -0
- codex/static_root/assets/datetime-column-m-oshrDM.js +0 -1
- codex/static_root/assets/datetime-column-m-oshrDM.js.br +0 -0
- codex/static_root/assets/datetime-column-m-oshrDM.js.gz +0 -0
- codex/static_root/assets/filter-BucmWboA.c5589372c258.js +0 -1
- codex/static_root/assets/filter-BucmWboA.c5589372c258.js.br +0 -0
- codex/static_root/assets/filter-BucmWboA.c5589372c258.js.gz +0 -0
- codex/static_root/assets/filter-BucmWboA.js +0 -1
- codex/static_root/assets/filter-BucmWboA.js.br +0 -0
- codex/static_root/assets/filter-BucmWboA.js.gz +0 -0
- codex/static_root/assets/flag-tab-C434E1_2.49632d2b141d.js +0 -1
- codex/static_root/assets/flag-tab-C434E1_2.49632d2b141d.js.br +0 -0
- codex/static_root/assets/flag-tab-C434E1_2.49632d2b141d.js.gz +0 -0
- codex/static_root/assets/flag-tab-C434E1_2.js +0 -1
- codex/static_root/assets/flag-tab-C434E1_2.js.br +0 -0
- codex/static_root/assets/flag-tab-C434E1_2.js.gz +0 -0
- codex/static_root/assets/forwardRefs-C8KYLdfc.css +0 -1
- codex/static_root/assets/forwardRefs-C8KYLdfc.css.br +0 -0
- codex/static_root/assets/forwardRefs-C8KYLdfc.css.gz +0 -0
- codex/static_root/assets/forwardRefs-C8KYLdfc.f5843191eb9e.css +0 -1
- codex/static_root/assets/forwardRefs-C8KYLdfc.f5843191eb9e.css.br +0 -0
- codex/static_root/assets/forwardRefs-C8KYLdfc.f5843191eb9e.css.gz +0 -0
- codex/static_root/assets/forwardRefs-CGpIPavG.d61e8212d1dc.js +0 -1
- codex/static_root/assets/forwardRefs-CGpIPavG.d61e8212d1dc.js.br +0 -0
- codex/static_root/assets/forwardRefs-CGpIPavG.d61e8212d1dc.js.gz +0 -0
- codex/static_root/assets/forwardRefs-CGpIPavG.js +0 -1
- codex/static_root/assets/forwardRefs-CGpIPavG.js.br +0 -0
- codex/static_root/assets/forwardRefs-CGpIPavG.js.gz +0 -0
- codex/static_root/assets/group-tab-Bi681uR0.3246ac0f7cec.css +0 -1
- codex/static_root/assets/group-tab-Bi681uR0.3246ac0f7cec.css.br +0 -0
- codex/static_root/assets/group-tab-Bi681uR0.3246ac0f7cec.css.gz +0 -0
- codex/static_root/assets/group-tab-Bi681uR0.css +0 -1
- codex/static_root/assets/group-tab-Bi681uR0.css.br +0 -0
- codex/static_root/assets/group-tab-Bi681uR0.css.gz +0 -0
- codex/static_root/assets/group-tab-MrhEvTPy.9233e2e5e80e.js +0 -1
- codex/static_root/assets/group-tab-MrhEvTPy.9233e2e5e80e.js.br +0 -0
- codex/static_root/assets/group-tab-MrhEvTPy.9233e2e5e80e.js.gz +0 -0
- codex/static_root/assets/group-tab-MrhEvTPy.js +0 -1
- codex/static_root/assets/group-tab-MrhEvTPy.js.br +0 -0
- codex/static_root/assets/group-tab-MrhEvTPy.js.gz +0 -0
- codex/static_root/assets/http-error-CODU7jcH.8c13689ae574.css +0 -1
- codex/static_root/assets/http-error-CODU7jcH.8c13689ae574.css.br +0 -0
- codex/static_root/assets/http-error-CODU7jcH.8c13689ae574.css.gz +0 -0
- codex/static_root/assets/http-error-CODU7jcH.css +0 -1
- codex/static_root/assets/http-error-CODU7jcH.css.br +0 -0
- codex/static_root/assets/http-error-CODU7jcH.css.gz +0 -0
- codex/static_root/assets/http-error-gBWEusWz.be314a60dc2e.js +0 -1
- codex/static_root/assets/http-error-gBWEusWz.be314a60dc2e.js.br +0 -0
- codex/static_root/assets/http-error-gBWEusWz.be314a60dc2e.js.gz +0 -0
- codex/static_root/assets/http-error-gBWEusWz.js +0 -1
- codex/static_root/assets/http-error-gBWEusWz.js.br +0 -0
- codex/static_root/assets/http-error-gBWEusWz.js.gz +0 -0
- codex/static_root/assets/index-Cu_QC2K8.de1f7935ff98.js +0 -1
- codex/static_root/assets/index-Cu_QC2K8.de1f7935ff98.js.br +0 -0
- codex/static_root/assets/index-Cu_QC2K8.de1f7935ff98.js.gz +0 -0
- codex/static_root/assets/index-Cu_QC2K8.js +0 -1
- codex/static_root/assets/index-Cu_QC2K8.js.br +0 -0
- codex/static_root/assets/index-Cu_QC2K8.js.gz +0 -0
- codex/static_root/assets/library-tab-Ce1d8Ypk.c87088afd4e1.js +0 -1
- codex/static_root/assets/library-tab-Ce1d8Ypk.c87088afd4e1.js.br +0 -0
- codex/static_root/assets/library-tab-Ce1d8Ypk.c87088afd4e1.js.gz +0 -0
- codex/static_root/assets/library-tab-Ce1d8Ypk.js +0 -1
- codex/static_root/assets/library-tab-Ce1d8Ypk.js.br +0 -0
- codex/static_root/assets/library-tab-Ce1d8Ypk.js.gz +0 -0
- codex/static_root/assets/library-tab-DLpvMqPW.2989f610950b.css +0 -1
- codex/static_root/assets/library-tab-DLpvMqPW.2989f610950b.css.br +0 -0
- codex/static_root/assets/library-tab-DLpvMqPW.2989f610950b.css.gz +0 -0
- codex/static_root/assets/library-tab-DLpvMqPW.css +0 -1
- codex/static_root/assets/library-tab-DLpvMqPW.css.br +0 -0
- codex/static_root/assets/library-tab-DLpvMqPW.css.gz +0 -0
- codex/static_root/assets/main-CpP-5rLh.ce09dfd7874f.js +0 -39
- codex/static_root/assets/main-CpP-5rLh.ce09dfd7874f.js.br +0 -0
- codex/static_root/assets/main-CpP-5rLh.ce09dfd7874f.js.gz +0 -0
- codex/static_root/assets/main-CpP-5rLh.js +0 -39
- codex/static_root/assets/main-CpP-5rLh.js.br +0 -0
- codex/static_root/assets/main-CpP-5rLh.js.gz +0 -0
- codex/static_root/assets/main-Of3aYkZ7.91c75c4fbaa6.css +0 -5
- codex/static_root/assets/main-Of3aYkZ7.91c75c4fbaa6.css.br +0 -0
- codex/static_root/assets/main-Of3aYkZ7.91c75c4fbaa6.css.gz +0 -0
- codex/static_root/assets/main-Of3aYkZ7.css +0 -5
- codex/static_root/assets/main-Of3aYkZ7.css.br +0 -0
- codex/static_root/assets/main-Of3aYkZ7.css.gz +0 -0
- codex/static_root/assets/pager-full-pdf-D8B8_31l.f1659a2dac96.js +0 -1
- codex/static_root/assets/pager-full-pdf-D8B8_31l.f1659a2dac96.js.br +0 -0
- codex/static_root/assets/pager-full-pdf-D8B8_31l.f1659a2dac96.js.gz +0 -0
- codex/static_root/assets/pager-full-pdf-D8B8_31l.js +0 -1
- codex/static_root/assets/pager-full-pdf-D8B8_31l.js.br +0 -0
- codex/static_root/assets/pager-full-pdf-D8B8_31l.js.gz +0 -0
- codex/static_root/assets/pagination-toolbar-OKWewkNI.a2773ff43624.js +0 -1
- codex/static_root/assets/pagination-toolbar-OKWewkNI.a2773ff43624.js.br +0 -0
- codex/static_root/assets/pagination-toolbar-OKWewkNI.a2773ff43624.js.gz +0 -0
- codex/static_root/assets/pagination-toolbar-OKWewkNI.js +0 -1
- codex/static_root/assets/pagination-toolbar-OKWewkNI.js.br +0 -0
- codex/static_root/assets/pagination-toolbar-OKWewkNI.js.gz +0 -0
- codex/static_root/assets/pagination-toolbar-aHRrdz48.2cbd38f9256c.css +0 -1
- codex/static_root/assets/pagination-toolbar-aHRrdz48.2cbd38f9256c.css.br +0 -0
- codex/static_root/assets/pagination-toolbar-aHRrdz48.2cbd38f9256c.css.gz +0 -0
- codex/static_root/assets/pagination-toolbar-aHRrdz48.css +0 -1
- codex/static_root/assets/pagination-toolbar-aHRrdz48.css.br +0 -0
- codex/static_root/assets/pagination-toolbar-aHRrdz48.css.gz +0 -0
- codex/static_root/assets/pdf-doc-DpmuaK3i.2dca76dcae13.js +0 -372
- codex/static_root/assets/pdf-doc-DpmuaK3i.2dca76dcae13.js.br +0 -0
- codex/static_root/assets/pdf-doc-DpmuaK3i.2dca76dcae13.js.gz +0 -0
- codex/static_root/assets/pdf-doc-DpmuaK3i.js +0 -372
- codex/static_root/assets/pdf-doc-DpmuaK3i.js.br +0 -0
- codex/static_root/assets/pdf-doc-DpmuaK3i.js.gz +0 -0
- codex/static_root/assets/reader-BwgJtbgj.c8b86f482c17.css +0 -1
- codex/static_root/assets/reader-BwgJtbgj.c8b86f482c17.css.br +0 -0
- codex/static_root/assets/reader-BwgJtbgj.c8b86f482c17.css.gz +0 -0
- codex/static_root/assets/reader-BwgJtbgj.css +0 -1
- codex/static_root/assets/reader-BwgJtbgj.css.br +0 -0
- codex/static_root/assets/reader-BwgJtbgj.css.gz +0 -0
- codex/static_root/assets/reader-CyitMKSa.d70f4fc1c014.js +0 -2
- codex/static_root/assets/reader-CyitMKSa.d70f4fc1c014.js.br +0 -0
- codex/static_root/assets/reader-CyitMKSa.d70f4fc1c014.js.gz +0 -0
- codex/static_root/assets/reader-CyitMKSa.js +0 -2
- codex/static_root/assets/reader-CyitMKSa.js.br +0 -0
- codex/static_root/assets/reader-CyitMKSa.js.gz +0 -0
- codex/static_root/assets/relation-chips-BuShhy1e.822bb69b0cfe.css +0 -1
- codex/static_root/assets/relation-chips-BuShhy1e.822bb69b0cfe.css.br +0 -0
- codex/static_root/assets/relation-chips-BuShhy1e.822bb69b0cfe.css.gz +0 -0
- codex/static_root/assets/relation-chips-BuShhy1e.css +0 -1
- codex/static_root/assets/relation-chips-BuShhy1e.css.br +0 -0
- codex/static_root/assets/relation-chips-BuShhy1e.css.gz +0 -0
- codex/static_root/assets/relation-chips-QzwrdJWs.99957808773d.js +0 -1
- codex/static_root/assets/relation-chips-QzwrdJWs.99957808773d.js.br +0 -0
- codex/static_root/assets/relation-chips-QzwrdJWs.99957808773d.js.gz +0 -0
- codex/static_root/assets/relation-chips-QzwrdJWs.js +0 -1
- codex/static_root/assets/relation-chips-QzwrdJWs.js.br +0 -0
- codex/static_root/assets/relation-chips-QzwrdJWs.js.gz +0 -0
- codex/static_root/assets/settings-drawer-DYzm391t.67fd6c1c26cd.js +0 -2
- codex/static_root/assets/settings-drawer-DYzm391t.67fd6c1c26cd.js.br +0 -0
- codex/static_root/assets/settings-drawer-DYzm391t.67fd6c1c26cd.js.gz +0 -0
- codex/static_root/assets/settings-drawer-DYzm391t.js +0 -2
- codex/static_root/assets/settings-drawer-DYzm391t.js.br +0 -0
- codex/static_root/assets/settings-drawer-DYzm391t.js.gz +0 -0
- codex/static_root/assets/settings-drawer-WyG6HLH-.css +0 -1
- codex/static_root/assets/settings-drawer-WyG6HLH-.css.br +0 -0
- codex/static_root/assets/settings-drawer-WyG6HLH-.css.gz +0 -0
- codex/static_root/assets/settings-drawer-WyG6HLH-.fe251f6d0a75.css +0 -1
- codex/static_root/assets/settings-drawer-WyG6HLH-.fe251f6d0a75.css.br +0 -0
- codex/static_root/assets/settings-drawer-WyG6HLH-.fe251f6d0a75.css.gz +0 -0
- codex/static_root/assets/ssrBoot-D216TWr1.0b11737afb21.js +0 -1
- codex/static_root/assets/ssrBoot-D216TWr1.0b11737afb21.js.br +0 -0
- codex/static_root/assets/ssrBoot-D216TWr1.0b11737afb21.js.gz +0 -0
- codex/static_root/assets/ssrBoot-D216TWr1.js +0 -1
- codex/static_root/assets/ssrBoot-D216TWr1.js.br +0 -0
- codex/static_root/assets/ssrBoot-D216TWr1.js.gz +0 -0
- codex/static_root/assets/stats-tab-CGY8r-es.b06c55bdaeaa.css +0 -1
- codex/static_root/assets/stats-tab-CGY8r-es.b06c55bdaeaa.css.br +0 -0
- codex/static_root/assets/stats-tab-CGY8r-es.b06c55bdaeaa.css.gz +0 -0
- codex/static_root/assets/stats-tab-CGY8r-es.css +0 -1
- codex/static_root/assets/stats-tab-CGY8r-es.css.br +0 -0
- codex/static_root/assets/stats-tab-CGY8r-es.css.gz +0 -0
- codex/static_root/assets/stats-tab-CXkOoD0h.1e2709686bf6.js +0 -1
- codex/static_root/assets/stats-tab-CXkOoD0h.1e2709686bf6.js.br +0 -0
- codex/static_root/assets/stats-tab-CXkOoD0h.1e2709686bf6.js.gz +0 -0
- codex/static_root/assets/stats-tab-CXkOoD0h.js +0 -1
- codex/static_root/assets/stats-tab-CXkOoD0h.js.br +0 -0
- codex/static_root/assets/stats-tab-CXkOoD0h.js.gz +0 -0
- codex/static_root/assets/task-tab-BlzgZqUZ.9448f1240271.js +0 -1
- codex/static_root/assets/task-tab-BlzgZqUZ.9448f1240271.js.br +0 -0
- codex/static_root/assets/task-tab-BlzgZqUZ.9448f1240271.js.gz +0 -0
- codex/static_root/assets/task-tab-BlzgZqUZ.js +0 -1
- codex/static_root/assets/task-tab-BlzgZqUZ.js.br +0 -0
- codex/static_root/assets/task-tab-BlzgZqUZ.js.gz +0 -0
- codex/static_root/assets/unauthorized-DE63n2Pi.b0357009b13d.css +0 -1
- codex/static_root/assets/unauthorized-DE63n2Pi.b0357009b13d.css.br +0 -0
- codex/static_root/assets/unauthorized-DE63n2Pi.b0357009b13d.css.gz +0 -0
- codex/static_root/assets/unauthorized-DE63n2Pi.css +0 -1
- codex/static_root/assets/unauthorized-DE63n2Pi.css.br +0 -0
- codex/static_root/assets/unauthorized-DE63n2Pi.css.gz +0 -0
- codex/static_root/assets/unauthorized-_61uqek6.56ab5c978077.js +0 -1
- codex/static_root/assets/unauthorized-_61uqek6.56ab5c978077.js.br +0 -0
- codex/static_root/assets/unauthorized-_61uqek6.56ab5c978077.js.gz +0 -0
- codex/static_root/assets/unauthorized-_61uqek6.js +0 -1
- codex/static_root/assets/unauthorized-_61uqek6.js.br +0 -0
- codex/static_root/assets/unauthorized-_61uqek6.js.gz +0 -0
- codex/static_root/assets/user-tab-CNxfPmZf.aed110a6c62b.js +0 -1
- codex/static_root/assets/user-tab-CNxfPmZf.aed110a6c62b.js.br +0 -0
- codex/static_root/assets/user-tab-CNxfPmZf.aed110a6c62b.js.gz +0 -0
- codex/static_root/assets/user-tab-CNxfPmZf.js +0 -1
- codex/static_root/assets/user-tab-CNxfPmZf.js.br +0 -0
- codex/static_root/assets/user-tab-CNxfPmZf.js.gz +0 -0
- codex/static_root/img/folder.f28936a3701d.svg +0 -1
- codex/static_root/img/folder.f28936a3701d.svg.br +0 -0
- codex/static_root/img/folder.f28936a3701d.svg.gz +0 -0
- codex/static_root/img/imprint.7c2adebb76d6.svg +0 -1
- codex/static_root/img/imprint.7c2adebb76d6.svg.br +0 -0
- codex/static_root/img/imprint.7c2adebb76d6.svg.gz +0 -0
- codex/static_root/img/logo-maskable.8f7de7f1c6a8.svg +0 -1
- codex/static_root/img/logo-maskable.8f7de7f1c6a8.svg.br +0 -0
- codex/static_root/img/logo-maskable.8f7de7f1c6a8.svg.gz +0 -0
- codex/static_root/img/logo.0f5344a028ca.svg +0 -1
- codex/static_root/img/logo.0f5344a028ca.svg.br +0 -0
- codex/static_root/img/logo.0f5344a028ca.svg.gz +0 -0
- codex/static_root/img/missing-cover-165.0743171f2148.webp +0 -0
- codex/static_root/img/missing-cover.ddb038cc2c56.svg +0 -1
- codex/static_root/img/missing-cover.ddb038cc2c56.svg.br +0 -0
- codex/static_root/img/missing-cover.ddb038cc2c56.svg.gz +0 -0
- codex/static_root/img/series.ec8a889b8f95.svg +0 -1
- codex/static_root/img/series.ec8a889b8f95.svg.br +0 -0
- codex/static_root/img/series.ec8a889b8f95.svg.gz +0 -0
- codex/static_root/img/story-arc.ca10014355ef.svg +0 -1
- codex/static_root/img/story-arc.ca10014355ef.svg.br +0 -1
- codex/static_root/img/story-arc.ca10014355ef.svg.gz +0 -0
- codex/static_root/img/volume.814e4c79461a.svg +0 -1
- codex/static_root/img/volume.814e4c79461a.svg.br +0 -0
- codex/static_root/img/volume.814e4c79461a.svg.gz +0 -0
- codex/static_root/manifest.95906ea9e563.json +0 -757
- codex/static_root/manifest.95906ea9e563.json.br +0 -0
- codex/static_root/manifest.95906ea9e563.json.gz +0 -0
- codex/status.py +0 -35
- codex/status_controller.py +0 -153
- codex/templates/README.md +0 -3
- codex/threads.py +0 -130
- codex/views/README.md +0 -4
- codex/views/browser/filters/search/aliases.py +0 -81
- codex/views/browser/metadata/metadata.py +0 -83
- codex/websockets/README.md +0 -4
- codex/worker_base.py +0 -14
- codex-1.7.15.dist-info/METADATA +0 -599
- codex-1.7.15.dist-info/RECORD +0 -1052
- codex-1.7.15.dist-info/WHEEL +0 -4
- codex-1.7.15.dist-info/entry_points.txt +0 -3
- {codex-1.7.15.dist-info โ codex-1.8.0.dist-info/licenses}/LICENSE +0 -0
|
@@ -0,0 +1,592 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: codex
|
|
3
|
+
Version: 1.8.0
|
|
4
|
+
Summary: A comic archive web server.
|
|
5
|
+
Project-URL: News, https://github.com/ajslater/codex/blob/main/NEWS.md
|
|
6
|
+
Project-URL: Docker Image, https://hub.docker.com/r/ajslater/codex
|
|
7
|
+
Project-URL: Report Issues, https://github.com/ajslater/codex/issues
|
|
8
|
+
Project-URL: repository, https://github.com/ajslater/codex
|
|
9
|
+
Project-URL: documentation, https://github.com/ajslater/codex
|
|
10
|
+
Project-URL: homepage, https://github.com/ajslater/codex
|
|
11
|
+
Author-email: AJ Slater <aj@slater.net>
|
|
12
|
+
License: GPL-3.0-only
|
|
13
|
+
License-File: LICENSE
|
|
14
|
+
Keywords: cb7,cbr,cbt,cbz,comic,pdf
|
|
15
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
16
|
+
Classifier: Environment :: Web Environment
|
|
17
|
+
Classifier: Framework :: Django :: 5.1
|
|
18
|
+
Classifier: Intended Audience :: End Users/Desktop
|
|
19
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
20
|
+
Classifier: Natural Language :: English
|
|
21
|
+
Classifier: Operating System :: OS Independent
|
|
22
|
+
Classifier: Programming Language :: JavaScript
|
|
23
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
24
|
+
Classifier: Topic :: Internet :: WWW/HTTP
|
|
25
|
+
Classifier: Topic :: Multimedia :: Graphics :: Viewers
|
|
26
|
+
Requires-Python: <4.0,>=3.10
|
|
27
|
+
Requires-Dist: aioprocessing~=2.0
|
|
28
|
+
Requires-Dist: ansicolors~=1.1
|
|
29
|
+
Requires-Dist: bidict~=0.23
|
|
30
|
+
Requires-Dist: channels~=4.2
|
|
31
|
+
Requires-Dist: comicbox[pdf]~=2.0.1
|
|
32
|
+
Requires-Dist: dateparser~=1.2
|
|
33
|
+
Requires-Dist: django-cachalot~=2.7.dev0
|
|
34
|
+
Requires-Dist: django-cors-headers~=4.0
|
|
35
|
+
Requires-Dist: django-rest-registration~=0.9.0
|
|
36
|
+
Requires-Dist: django-vite~=3.1.0
|
|
37
|
+
Requires-Dist: djangorestframework-camel-case~=1.4.2
|
|
38
|
+
Requires-Dist: djangorestframework~=3.16.0
|
|
39
|
+
Requires-Dist: django~=5.2.4
|
|
40
|
+
Requires-Dist: drf-spectacular~=0.28
|
|
41
|
+
Requires-Dist: fnvhash~=0.1
|
|
42
|
+
Requires-Dist: humanfriendly~=10.0
|
|
43
|
+
Requires-Dist: humanize~=4.12
|
|
44
|
+
Requires-Dist: hypercorn[h3]~=0.17
|
|
45
|
+
Requires-Dist: loguru~=0.7.3
|
|
46
|
+
Requires-Dist: nh3~=0.2
|
|
47
|
+
Requires-Dist: pillow~=11.3
|
|
48
|
+
Requires-Dist: psutil~=7.0.0
|
|
49
|
+
Requires-Dist: pyparsing~=3.2
|
|
50
|
+
Requires-Dist: requests~=2.24
|
|
51
|
+
Requires-Dist: typing-extensions~=4.14
|
|
52
|
+
Requires-Dist: tzlocal~=5.0
|
|
53
|
+
Requires-Dist: versio~=0.5
|
|
54
|
+
Requires-Dist: watchdog~=6.0.0
|
|
55
|
+
Requires-Dist: websocket-client~=1.2
|
|
56
|
+
Requires-Dist: whitenoise[brotli]~=6.0
|
|
57
|
+
Requires-Dist: zipstream-ng~=1.8.0
|
|
58
|
+
Description-Content-Type: text/markdown
|
|
59
|
+
|
|
60
|
+
# Codex
|
|
61
|
+
|
|
62
|
+
A comic archive browser and reader.
|
|
63
|
+
|
|
64
|
+
<img src="codex/img/logo.svg" style="
|
|
65
|
+
height: 128px;
|
|
66
|
+
width: 128px;
|
|
67
|
+
border-radius: 128px;
|
|
68
|
+
" />
|
|
69
|
+
|
|
70
|
+
## โจ Features
|
|
71
|
+
|
|
72
|
+
- Codex is a web server.
|
|
73
|
+
- Full text search of metadata and bookmarks.
|
|
74
|
+
- GPLv3 Licenced.
|
|
75
|
+
- Filter and sort on all comic metadata and unread status per user.
|
|
76
|
+
- Browse a tree of Publishers, Imprints, Series, Volumes, or your own folder
|
|
77
|
+
hierarchy, or by tagged Story Arc.
|
|
78
|
+
- Read comics in a variety of aspect ratios and directions that fit your screen.
|
|
79
|
+
- Watches the filesystem and automatically imports new or changed comics.
|
|
80
|
+
- Anonymous browsing and reading or reigistered users only, to your preference.
|
|
81
|
+
- Per user bookmarking & settings, even before you make an account.
|
|
82
|
+
- Private Libraries accessible only to certain groups of users.
|
|
83
|
+
- Reads CBZ, CBR, CBT, and PDF formatted comics.
|
|
84
|
+
- Syndication with OPDS 1 & 2, streaming, search and authentication.
|
|
85
|
+
- Add custom covers to Folders, Publishers, Imprints, Series, and Story Arcs.
|
|
86
|
+
- Runs in 1GB of RAM, faster with more.
|
|
87
|
+
|
|
88
|
+
#### Examples
|
|
89
|
+
|
|
90
|
+
- _Filter by_ Story Arc and Unread, _Order by_ Publish Date to create an event
|
|
91
|
+
reading list.
|
|
92
|
+
- _Filter by_ Unread and _Order by_ Added Time to see your latest unread comics.
|
|
93
|
+
- _Search by_ your favorite character to find their appearances across different
|
|
94
|
+
comics.
|
|
95
|
+
|
|
96
|
+
## ๐ Demonstration
|
|
97
|
+
|
|
98
|
+
You may browse a [live demo server](https://demo.codex-reader.app/) to get a
|
|
99
|
+
feel for Codex.
|
|
100
|
+
|
|
101
|
+
## ๐ News
|
|
102
|
+
|
|
103
|
+
Codex has a [NEWS file](NEWS.md) to summarize changes that affect users.
|
|
104
|
+
|
|
105
|
+
## ๐ธ๏ธ HTML Docs
|
|
106
|
+
|
|
107
|
+
[HTML formatted docs are available here](https://codex-reader.app)
|
|
108
|
+
|
|
109
|
+
## ๐ฆ Installation
|
|
110
|
+
|
|
111
|
+
### Install & Run with Docker
|
|
112
|
+
|
|
113
|
+
Run the official [Docker Image](https://hub.docker.com/r/ajslater/codex).
|
|
114
|
+
Instructions for running the docker image are on the Docker Hub README. This is
|
|
115
|
+
the recommended way to run Codex.
|
|
116
|
+
|
|
117
|
+
You'll then want to read the [Administration](#administration) section of this
|
|
118
|
+
document.
|
|
119
|
+
|
|
120
|
+
### Install & Run on HomeAssistant server
|
|
121
|
+
|
|
122
|
+
If you have a [HomeAssistant](https://www.home-assistant.io/) server, Codex can
|
|
123
|
+
be installed with the following steps :
|
|
124
|
+
|
|
125
|
+
- Add the `https://github.com/alexbelgium/hassio-addons` repository by
|
|
126
|
+
[clicking here](https://my.home-assistant.io/redirect/supervisor_add_addon_repository/?repository_url=https%3A%2F%2Fgithub.com%2Falexbelgium%2Fhassio-addons)
|
|
127
|
+
- Install the addon :
|
|
128
|
+
[click here to automatically open the addon store, then install the addon](https://my.home-assistant.io/redirect/supervisor)
|
|
129
|
+
- Customize addon options, then then start the add-on.
|
|
130
|
+
|
|
131
|
+
### Install & Run as a Native Application
|
|
132
|
+
|
|
133
|
+
You can also run Codex as a natively installed python application with pip.
|
|
134
|
+
|
|
135
|
+
#### Binary Dependencies
|
|
136
|
+
|
|
137
|
+
You'll need to install the appropriate system dependencies for your platform
|
|
138
|
+
before installing Codex.
|
|
139
|
+
|
|
140
|
+
##### Linux Dependencies
|
|
141
|
+
|
|
142
|
+
###### Debian Dependencies
|
|
143
|
+
|
|
144
|
+
...and Ubuntu, Mint, MX, Window Subsystem for Linux, and others.
|
|
145
|
+
|
|
146
|
+
```sh
|
|
147
|
+
apt install build-essential libimagequant0 libjpeg-turbo8 libopenjp2-7 libssl libyaml-0-2 libtiff6 libwebp7 python3-dev python3-pip sqlite3 unrar zlib1g
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
Versions of packages like libjpeg, libssl, libtiff may differ between flavors
|
|
151
|
+
and versions of your distribution. If the package versions listed in the example
|
|
152
|
+
above are not available, try searching for ones that are with `apt-cache` or
|
|
153
|
+
`aptitude`.
|
|
154
|
+
|
|
155
|
+
```sh
|
|
156
|
+
apt-cache search libjpeg-turbo
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
###### Alpine Dependencies
|
|
160
|
+
|
|
161
|
+
```sh
|
|
162
|
+
apk add bsd-compat-headers build-base jpeg-dev libffi-dev libwebp openssl-dev sqlite yaml-dev zlib-dev
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
##### Install unrar Runtime Dependency on non-debian Linux
|
|
166
|
+
|
|
167
|
+
Codex requires unrar to read CBR formatted comic archives. Unrar is often not
|
|
168
|
+
packaged for Linux, but here are some instructions:
|
|
169
|
+
[How to install unrar in Linux](https://www.unixtutorial.org/how-to-install-unrar-in-linux/)
|
|
170
|
+
|
|
171
|
+
Unrar as packaged for Alpine Linux v3.14 seems to work on Alpine v3.15+
|
|
172
|
+
|
|
173
|
+
##### macOS Dependencies
|
|
174
|
+
|
|
175
|
+
Using [Homebrew](https://brew.sh/):
|
|
176
|
+
|
|
177
|
+
```sh
|
|
178
|
+
brew install jpeg libffi libyaml libzip openssl python sqlite unrar webp
|
|
179
|
+
```
|
|
180
|
+
|
|
181
|
+
#### Installing Codex on Linux on ARM (AARCH64) with Python 3.13
|
|
182
|
+
|
|
183
|
+
Pymupdf has no pre-built wheels for AARCH64 so pip must build it and the build
|
|
184
|
+
fails on Python 3.13 without this environment variable set:
|
|
185
|
+
|
|
186
|
+
```sh
|
|
187
|
+
PYMUPDF_SETUP_PY_LIMITED_API=0 pip install codex
|
|
188
|
+
```
|
|
189
|
+
|
|
190
|
+
You will also have to have the `build-essential` and `python3-dev` or equivalent
|
|
191
|
+
packages installed on on your Linux.
|
|
192
|
+
|
|
193
|
+
#### Windows Installation
|
|
194
|
+
|
|
195
|
+
Windows users are encouraged to use Docker to run Codex, but it will also run
|
|
196
|
+
natively on the Windows Subsystem for Linux.
|
|
197
|
+
|
|
198
|
+
Installation instructions are in the
|
|
199
|
+
[Native Windows Dependencies Installation Document](WINDOWS.md).
|
|
200
|
+
|
|
201
|
+
#### Run Codex Natively
|
|
202
|
+
|
|
203
|
+
Once you have installed codex, the codex binary should be on your path. To start
|
|
204
|
+
codex, run:
|
|
205
|
+
|
|
206
|
+
```sh
|
|
207
|
+
codex
|
|
208
|
+
```
|
|
209
|
+
|
|
210
|
+
### Use Codex
|
|
211
|
+
|
|
212
|
+
Once installed and running you may navigate to <http://localhost:9810/>
|
|
213
|
+
|
|
214
|
+
## ๐ Administration
|
|
215
|
+
|
|
216
|
+
### Navigate to the Admin Panel
|
|
217
|
+
|
|
218
|
+
- Click the hamburger menu โฐ to open the browser settings drawer.
|
|
219
|
+
- Log in as the 'admin' user. The default administrator password is also
|
|
220
|
+
'admin'.
|
|
221
|
+
- Navigate to the Admin Panel by clicking on its link in the browser settings
|
|
222
|
+
drawer after you have logged in.
|
|
223
|
+
|
|
224
|
+
### Change the Admin password
|
|
225
|
+
|
|
226
|
+
The first thing you should do is log in as the admin user and change the admin
|
|
227
|
+
password.
|
|
228
|
+
|
|
229
|
+
- Navigate to the Admin Panel as described above.
|
|
230
|
+
- Select the Users tab.
|
|
231
|
+
- Change the admin user's password using the small lock button.
|
|
232
|
+
- You may also change the admin user's name with the edit button.
|
|
233
|
+
- You may create other users and grant them admin privileges by making them
|
|
234
|
+
staff.
|
|
235
|
+
|
|
236
|
+
### Add Comic Libraries
|
|
237
|
+
|
|
238
|
+
The second thing you will want to do is log in as an Administrator and add one
|
|
239
|
+
or more comic libraries.
|
|
240
|
+
|
|
241
|
+
- Navigate to the Admin Panel as described above.
|
|
242
|
+
- Select the Libraries tab in the Admin Panel
|
|
243
|
+
- Add a Library with the "+ LIBRARY" button in the upper left.
|
|
244
|
+
|
|
245
|
+
### Reset the admin password
|
|
246
|
+
|
|
247
|
+
If you forget all your superuser passwords, you may restore the original default
|
|
248
|
+
admin account by running codex with the `CODEX_RESET_ADMIN` environment variable
|
|
249
|
+
set.
|
|
250
|
+
|
|
251
|
+
```sh
|
|
252
|
+
CODEX_RESET_ADMIN=1 codex
|
|
253
|
+
```
|
|
254
|
+
|
|
255
|
+
or, if using Docker:
|
|
256
|
+
|
|
257
|
+
```sh
|
|
258
|
+
docker run -e CODEX_RESET_ADMIN=1 -v host-parent-dir/config:/config ajslater/codex
|
|
259
|
+
```
|
|
260
|
+
|
|
261
|
+
### Private Libraries
|
|
262
|
+
|
|
263
|
+
In the Admin Panel you may configure private libraries that are only accessible
|
|
264
|
+
to specific groups.
|
|
265
|
+
|
|
266
|
+
A library with _no_ groups is accessible to every user including anonymous
|
|
267
|
+
users.
|
|
268
|
+
|
|
269
|
+
A library with _any_ groups is accessible only to users who are in those groups.
|
|
270
|
+
|
|
271
|
+
Use the Groups admin panel to create groups and the Users admin panel to add and
|
|
272
|
+
remove users to groups.
|
|
273
|
+
|
|
274
|
+
#### Include and Exclude Groups
|
|
275
|
+
|
|
276
|
+
Codex can make groups for libraries that exclude groups of users or exclude
|
|
277
|
+
everyone and include only certain groups of users.
|
|
278
|
+
|
|
279
|
+
### PDF Metadata
|
|
280
|
+
|
|
281
|
+
Codex reads PDF metadata from the filename, PDF metadata fields and also many
|
|
282
|
+
formats of common complex comic metadata if they are embedded in the PDF
|
|
283
|
+
`keywords` field.
|
|
284
|
+
|
|
285
|
+
If you decide to include PDFs in your comic library, I recommend taking time to
|
|
286
|
+
rename your files so Codex can find some metadata. Codex recognizes several file
|
|
287
|
+
naming schemes. This one has good results:
|
|
288
|
+
|
|
289
|
+
`{series} v{volume} #{issue} {title} ({year}) {ignored}.pdf`
|
|
290
|
+
|
|
291
|
+
Complex comic metadata, such as ComicInfo.xml, can be also be embedded in the
|
|
292
|
+
keywords field by using the [comicbox](https://github.com/ajslater/comicbox)
|
|
293
|
+
command line tool. Codex will read this data because it relies on comicbox
|
|
294
|
+
internally. Not many people use comicbox or embedded metadata in PDFs in this
|
|
295
|
+
fashion, so you likely won't find it unless you've added it yourself.
|
|
296
|
+
|
|
297
|
+
### ๐๏ธ API with Key Access
|
|
298
|
+
|
|
299
|
+
Codex has a limited number of API endpoints available with API Key Access. The
|
|
300
|
+
API Key is available on the admin/stats tab.
|
|
301
|
+
|
|
302
|
+
## ๐๏ธ Configuration
|
|
303
|
+
|
|
304
|
+
### Config Dir
|
|
305
|
+
|
|
306
|
+
The default config directory is `config/` directly under the working directory
|
|
307
|
+
you run codex from. You may specify an alternate config directory with the
|
|
308
|
+
environment variable `CODEX_CONFIG_DIR`.
|
|
309
|
+
|
|
310
|
+
The config directory contains a file named `hypercorn.toml` where you can
|
|
311
|
+
specify ports and bind addresses. If no `hypercorn.toml` is present Codex copies
|
|
312
|
+
a default one to that directory on startup.
|
|
313
|
+
|
|
314
|
+
The default values for the config options are:
|
|
315
|
+
|
|
316
|
+
```toml
|
|
317
|
+
bind = ["0.0.0.0:9810"]
|
|
318
|
+
quick_bind = ["0.0.0.0:9810"]
|
|
319
|
+
root_path = "/codex"
|
|
320
|
+
```
|
|
321
|
+
|
|
322
|
+
The config directory also holds the main sqlite database, the Whoosh search
|
|
323
|
+
index, a Django cache and comic book cover thumbnails.
|
|
324
|
+
|
|
325
|
+
### Environment Variables
|
|
326
|
+
|
|
327
|
+
#### General
|
|
328
|
+
|
|
329
|
+
- `TIMEZONE` or `TZ` will explicitly set the timezone in long format (e.g.
|
|
330
|
+
`"America/Los Angeles"`). This is useful inside Docker because codex cannot
|
|
331
|
+
automatically detect the host machine's timezone.
|
|
332
|
+
- `CODEX_CONFIG_DIR` will set the path to codex config directory. Defaults to
|
|
333
|
+
`$CWD/config`
|
|
334
|
+
- `CODEX_RESET_ADMIN=1` will reset the admin user and its password to defaults
|
|
335
|
+
when codex starts.
|
|
336
|
+
- `CODEX_FIX_FOREIGN_KEYS=1` will check for and try to repair illegal foreign
|
|
337
|
+
keys on startup.
|
|
338
|
+
- `CODEX_INTEGRITY_CHECK=1` will perform database integrity check on startup.
|
|
339
|
+
- `CODEX_FTS_INTEGRITY_CHECK=1` will perform an integrity check on the full text
|
|
340
|
+
search index.
|
|
341
|
+
- `CODEX_FTS_REBUILD=1` will rebuild the full text search index.
|
|
342
|
+
- `DEBUG_TRANSFORM` will show verbose information about how the comicbox library
|
|
343
|
+
reads all archive metadata sources and transforms it into a the comicbox
|
|
344
|
+
schema.
|
|
345
|
+
|
|
346
|
+
#### Logging
|
|
347
|
+
|
|
348
|
+
- `LOGLEVEL` will change how verbose codex's logging is. Valid values are
|
|
349
|
+
`ERROR`, `WARNING`, `INFO`, `DEBUG`. The default is `INFO`.
|
|
350
|
+
- `CODEX_LOG_DIR` sets a custom directory for saving logfiles. Defaults to
|
|
351
|
+
`$CODEX_CONFIG_DIR/logs`
|
|
352
|
+
- `CODEX_LOG_TO_FILE=0` will not log to files.
|
|
353
|
+
- `CODEX_LOG_TO_CONSOLE=0` will not log to the console.
|
|
354
|
+
|
|
355
|
+
#### Throttling
|
|
356
|
+
|
|
357
|
+
Codex contains some experimental throttling controls. The value supplied to
|
|
358
|
+
these variables will be interpreted as the maximum number of allowed requests
|
|
359
|
+
per minute. For example, the following settings would limit each described group
|
|
360
|
+
to 2 queries per second.
|
|
361
|
+
|
|
362
|
+
- `CODEX_THROTTLE_ANON=30` Anonymous users
|
|
363
|
+
- `CODEX_THROTTLE_USER=30` Authenticated users
|
|
364
|
+
- `CODEX_THROTTLE_OPDS=30` The OPDS v1 & v2 APIs (Panels uses this for search)
|
|
365
|
+
- `CODEX_THROTTLE_OPENSEARCH=30` The OPDS v1 Opensearch API
|
|
366
|
+
|
|
367
|
+
### Reverse Proxy
|
|
368
|
+
|
|
369
|
+
[nginx](https://nginx.org/) is often used as a TLS terminator and subpath proxy.
|
|
370
|
+
|
|
371
|
+
Here's an example nginx config with a subpath named '/codex'.
|
|
372
|
+
|
|
373
|
+
```nginx
|
|
374
|
+
# HTTP
|
|
375
|
+
proxy_set_header Host $http_host;
|
|
376
|
+
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
377
|
+
proxy_set_header X-Forwarded-Host $server_name;
|
|
378
|
+
proxy_set_header X-Forwarded-Port $server_port;
|
|
379
|
+
proxy_set_header X-Forwarded-Proto $scheme;
|
|
380
|
+
proxy_set_header X-Real-IP $remote_addr;
|
|
381
|
+
proxy_set_header X-Scheme $scheme;
|
|
382
|
+
# Websockets
|
|
383
|
+
proxy_http_version 1.1;
|
|
384
|
+
proxy_set_header Upgrade $http_upgrade;
|
|
385
|
+
|
|
386
|
+
proxy_set_header Connection "Upgrade" location /codex {
|
|
387
|
+
proxy_pass http://codex:9810;
|
|
388
|
+
# Codex reads http basic authentication.
|
|
389
|
+
# If the nginx credentials are different than codex credentials use this line to
|
|
390
|
+
# not forward the authorization.
|
|
391
|
+
proxy_set_header Authorization "";
|
|
392
|
+
}
|
|
393
|
+
```
|
|
394
|
+
|
|
395
|
+
Specify a reverse proxy sub path (if you have one) in `config/hypercorn.toml`
|
|
396
|
+
|
|
397
|
+
```toml
|
|
398
|
+
root_path = "/codex"
|
|
399
|
+
```
|
|
400
|
+
|
|
401
|
+
#### Nginx Reverse Proxy 502 when container refreshes
|
|
402
|
+
|
|
403
|
+
Nginx requires a special trick to refresh dns when linked Docker containers
|
|
404
|
+
recreate. See this
|
|
405
|
+
[nginx with dynamix upstreams](https://tenzer.dk/nginx-with-dynamic-upstreams/)
|
|
406
|
+
article.
|
|
407
|
+
|
|
408
|
+
### Restricted Memory Environments
|
|
409
|
+
|
|
410
|
+
Codex can run with as little as 1GB available RAM. Large batch jobs โlike
|
|
411
|
+
importing and indexing tens of thousands of comics at onceโ will run faster the
|
|
412
|
+
more memory is available to Codex. The biggest gains in speed happen when you
|
|
413
|
+
increase memory up to about 6GB. Codex batch jobs do get faster the more memory
|
|
414
|
+
it has above 6GB, but with diminishing returns.
|
|
415
|
+
|
|
416
|
+
If you must run Codex in an admin restricted memory environment you might want
|
|
417
|
+
to temporarily give Codex a lot of memory to run a very large import job and
|
|
418
|
+
then restrict it for normal operation.
|
|
419
|
+
|
|
420
|
+
## ๐ Use
|
|
421
|
+
|
|
422
|
+
### ๐ค Sessions & Accounts
|
|
423
|
+
|
|
424
|
+
Once your administrator has added some comic libraries, you may browse and read
|
|
425
|
+
comics. Codex will remember your preferences, bookmarks and progress in the
|
|
426
|
+
browser session. Codex destroys anonymous sessions and bookmarks after 60 days.
|
|
427
|
+
To preserve these settings across browsers and after sessions expire, you may
|
|
428
|
+
register an account with a username and password. You will have to contact your
|
|
429
|
+
administrator to reset your password if you forget it.
|
|
430
|
+
|
|
431
|
+
### แฏค OPDS
|
|
432
|
+
|
|
433
|
+
Codex supports OPDS syndication and OPDS streaming. You may find the OPDS url in
|
|
434
|
+
the side drawer. It should take the form:
|
|
435
|
+
|
|
436
|
+
`http(s)://host.tld(:9810)(/root_path)/opds/v1.2/`
|
|
437
|
+
|
|
438
|
+
or
|
|
439
|
+
|
|
440
|
+
`http(s)://host.tld(:9810)(/root_path)/opds/v2.0/`
|
|
441
|
+
|
|
442
|
+
OPDS 2.0 support is experimental and not widely or well supported by clients.
|
|
443
|
+
OPDS 2.0 book readers exist, but I am not yet aware of an OPDS 2.0 comic reader.
|
|
444
|
+
|
|
445
|
+
#### Clients
|
|
446
|
+
|
|
447
|
+
- iOS has [Panels](https://panels.app/), [PocketBooks](https://pocketbook.ch/),
|
|
448
|
+
[KYBook 3](http://kybook-reader.com/), and
|
|
449
|
+
[Chunky Comic Reader](https://apps.apple.com/us/app/chunky-comic-reader/id663567628)
|
|
450
|
+
- Android has
|
|
451
|
+
[Moon+](https://play.google.com/store/apps/details?id=com.flyersoft.moonreader)
|
|
452
|
+
and
|
|
453
|
+
[Librera](https://play.google.com/store/apps/details?id=com.foobnix.pdf.reader)
|
|
454
|
+
|
|
455
|
+
Kybook 3 does not seem to support http basic authentication, so Cbbodex users
|
|
456
|
+
are not supported.
|
|
457
|
+
|
|
458
|
+
#### HTTP Basic Authentication
|
|
459
|
+
|
|
460
|
+
If you wish to access OPDS as your Codex User. You will have to add your
|
|
461
|
+
username and password to the URL. Some OPDS clients do not asssist you with
|
|
462
|
+
authentication. In that case the OPDS url will look like:
|
|
463
|
+
|
|
464
|
+
`http(s)://username:password@host.tld(:9810)(/root_path)/opds/v1.2/`
|
|
465
|
+
|
|
466
|
+
#### Supported OPDS Specifications
|
|
467
|
+
|
|
468
|
+
##### OPDS v1
|
|
469
|
+
|
|
470
|
+
- [OPDS 1.2](https://specs.opds.io/opds-1.2.html)
|
|
471
|
+
- [OPDS-PSE 1.2](https://github.com/anansi-project/opds-pse/blob/master/v1.2.md)
|
|
472
|
+
- [OPDS Authentication 1.0](https://drafts.opds.io/authentication-for-opds-1.0.html)
|
|
473
|
+
- [OpenSearch 1.1](https://github.com/dewitt/opensearch)
|
|
474
|
+
|
|
475
|
+
##### OPDS v2
|
|
476
|
+
|
|
477
|
+
- [OPDS 2.0 (draft)](https://drafts.opds.io/opds-2.0.html)
|
|
478
|
+
- [OPDS 2.0 Progression (proposal)](https://github.com/opds-community/drafts/discussions/67)
|
|
479
|
+
|
|
480
|
+
## [๐ฉบ Troubleshooting](#troubleshooting)
|
|
481
|
+
|
|
482
|
+
### ๐ Logs
|
|
483
|
+
|
|
484
|
+
Codex collects its logs in the `config/logs` directory. Take a look to see what
|
|
485
|
+
th e server is doing.
|
|
486
|
+
|
|
487
|
+
You can change how much codex logs by setting the `LOGLEVEL` environment
|
|
488
|
+
variable. By default this level is `INFO`. To see more verbose messages, run
|
|
489
|
+
codex like:
|
|
490
|
+
|
|
491
|
+
```sh
|
|
492
|
+
LOGLEVEL=DEBUG codex
|
|
493
|
+
```
|
|
494
|
+
|
|
495
|
+
### Watching Filesystem Events with Docker
|
|
496
|
+
|
|
497
|
+
Codex tries to watch for filesystem events to instantly update your comic
|
|
498
|
+
libraries when they change on disk. But these native filesystem events are not
|
|
499
|
+
translated between macOS & Windows Docker hosts and the Docker Linux container.
|
|
500
|
+
If you find that your installation is not updating to filesystem changes
|
|
501
|
+
instantly, you might try enabling polling for the affected libraries and
|
|
502
|
+
decreasing the `poll_every` value in the Admin console to a frequency that suits
|
|
503
|
+
you.
|
|
504
|
+
|
|
505
|
+
### Emergency Database Repair
|
|
506
|
+
|
|
507
|
+
If the database becomes corrupt, Codex includes a facility to rebuild the
|
|
508
|
+
database. Place a file named `rebuild_db` in your Codex config directory like
|
|
509
|
+
so:
|
|
510
|
+
|
|
511
|
+
```sh
|
|
512
|
+
touch config/rebuild_db
|
|
513
|
+
```
|
|
514
|
+
|
|
515
|
+
Shut down and restart Codex.
|
|
516
|
+
|
|
517
|
+
The next time Codex starts it will back up the existing database and try to
|
|
518
|
+
rebuild it. The database lives in the config directory as the file
|
|
519
|
+
`config/db.sqlite3`. If this procedure goes kablooey, you may recover the
|
|
520
|
+
original database at `config/backups/codex.sqlite3.before-rebuild`. Codex will
|
|
521
|
+
remove the `rebuild_db` file.
|
|
522
|
+
|
|
523
|
+
### Warnings to Ignore
|
|
524
|
+
|
|
525
|
+
#### StreamingHttpResponse Iterator Warning
|
|
526
|
+
|
|
527
|
+
```pycon
|
|
528
|
+
packages/django/http/response.py:517: Warning: StreamingHttpResponse must consume synchronous iterators in order to serve them asynchronously. Use an asynchronous iterator instead.
|
|
529
|
+
```
|
|
530
|
+
|
|
531
|
+
This is a known warning and does not represent anything bad happening. It's an
|
|
532
|
+
artifact of the Django framework slowly supporting asynchronous server endpoints
|
|
533
|
+
and unfortunately isn't practical to remove yet.
|
|
534
|
+
|
|
535
|
+
## ๐Alternatives to Codex
|
|
536
|
+
|
|
537
|
+
- [Kavita](https://www.kavitareader.com/) has light metadata filtering/editing,
|
|
538
|
+
supports comics, eBooks, and features for manga.
|
|
539
|
+
- [Komga](https://komga.org/) has light metadata editing.
|
|
540
|
+
- [Ubooquity](https://vaemendis.net/ubooquity/) reads both comics and eBooks.
|
|
541
|
+
- [Mylar](https://github.com/mylar3/mylar3) is the best comic book manager which
|
|
542
|
+
also has a built in reader.
|
|
543
|
+
- [Comictagger](https://github.com/comictagger/comictagger) is a comic metadata
|
|
544
|
+
editor. It comes with a powerful command line and desktop GUI.
|
|
545
|
+
|
|
546
|
+
## ๐ค Contributing
|
|
547
|
+
|
|
548
|
+
### ๐ Bug Reports
|
|
549
|
+
|
|
550
|
+
Issues and feature requests are best filed on the
|
|
551
|
+
[Github issue tracker](https://github.com/ajslater/codex/issues).
|
|
552
|
+
|
|
553
|
+
### ๐ Develop
|
|
554
|
+
|
|
555
|
+
Codex's git repo is mirrored on [Github](https://github.com/ajslater/codex/)
|
|
556
|
+
|
|
557
|
+
Codex is a Django Python webserver with a VueJS front end.
|
|
558
|
+
|
|
559
|
+
`/codex/codex/` is the main django app which provides the webserver and
|
|
560
|
+
database.
|
|
561
|
+
|
|
562
|
+
`/codex/frontend/` is where the vuejs frontend lives.
|
|
563
|
+
|
|
564
|
+
Most of Codex development is now controlled through the Makefile. Type `make`
|
|
565
|
+
for a list of commands.
|
|
566
|
+
|
|
567
|
+
## ๐ฌ Support
|
|
568
|
+
|
|
569
|
+
By the generosity of the good people of
|
|
570
|
+
[Mylar](https://github.com/mylar3/mylar3), I and other Codex users answer
|
|
571
|
+
questions on the [Mylar Discord](https://discord.gg/6UG94R7E8T). Please use the
|
|
572
|
+
`#codex-support` channel to ask for help with Codex.
|
|
573
|
+
|
|
574
|
+
## ๐ Links
|
|
575
|
+
|
|
576
|
+
- [Docker Image](https://hub.docker.com/r/ajslater/codex)
|
|
577
|
+
- [PyPi Package](https://pypi.org/project/codex/)
|
|
578
|
+
- [GitHub Project](https://github.com/ajslater/codex/)
|
|
579
|
+
|
|
580
|
+
## ๐๐ป Thanks
|
|
581
|
+
|
|
582
|
+
- Thanks to [Aurรฉlien Mazurie](https://pypi.org/user/ajmazurie/) for allowing me
|
|
583
|
+
to use the PyPi name 'codex'.
|
|
584
|
+
- To [ProfessionalTart](https://github.com/professionaltart) for providing
|
|
585
|
+
native Windows installation instructions.
|
|
586
|
+
- Thanks to the good people of
|
|
587
|
+
[#mylar](https://github.com/mylar3/mylar3#live-support--conversation) for
|
|
588
|
+
continuous feedback and comic ecosystem education.
|
|
589
|
+
|
|
590
|
+
## ๐ Enjoy
|
|
591
|
+
|
|
592
|
+

|