Kavita is a fast, feature rich, cross platform reading server. Built with the goal of being a full solution for all your reading needs. Setup your own server and share your reading collection with your friends and family. http://www.kavitareader.com
Find a file
Joseph Milazzo e630e0b2c9
Filtering Bugfixes (#1220)
* Cleaned up random strings and unified them in one place.

* Implemented the ability to disable typeaheads

* Refactored disable state to disable controls on filter

* Fixed an overflow regression on title

* Updated ComicInfo DTO which had some bad properties on it

* Cleaned up some code around disabled typeaheads/filters

* Fixed typeaheads causing resets to state and mucking up filter presets

* Fixed state not refreshing between page loads

* Fixed a bad parsing for My Charms Are Wasted on Kuroiwa Medaka - Ch. 37.5 - Volume Extras

* Cleanup within the metadata filter to reuse logic and minimize extra loops.

* Fixed a timing issue with typeahead and first load for people

* Fixed a bug in Publication Status for a given library, which would fail due to not performing some of the query in memory. Removed a custom index on Series table that wasn't used and potentially caused constraint issues.

* Added a wiki link for stats collections

* Security bump

* Fixed the regex
2022-04-16 16:29:11 -07:00
.github v0.5.2 - UX Refresh, Custom Themes, Metadata Editing, and OPDS updates! (#1189) 2022-04-02 10:11:07 -07:00
.vscode The big one (#396) 2021-07-17 14:03:11 -05:00
API Filtering Bugfixes (#1220) 2022-04-16 16:29:11 -07:00
API.Benchmark v0.5.2 - UX Refresh, Custom Themes, Metadata Editing, and OPDS updates! (#1189) 2022-04-02 10:11:07 -07:00
API.Tests Filtering Bugfixes (#1220) 2022-04-16 16:29:11 -07:00
Kavita.Common Bump versions by dotnet-bump-version. 2022-04-14 22:07:40 +00:00
Kavita.Email Private Email Service Support (#1028) 2022-02-04 09:54:54 -08:00
Logo Misc Fixes (#1031) 2022-02-04 11:28:58 -08:00
UI/Web Filtering Bugfixes (#1220) 2022-04-16 16:29:11 -07:00
.browserslistrc The big one (#396) 2021-07-17 14:03:11 -05:00
.editorconfig PDF Support + MORE!!!! (#416) 2021-07-22 21:13:24 -05:00
.gitattributes v0.4.1 merge to stable (#272) 2021-06-06 15:25:50 -05:00
.gitignore On Deck + Misc Fixes and Changes (#1215) 2022-04-11 15:43:40 -07:00
action-build.sh.OLD The big one (#396) 2021-07-17 14:03:11 -05:00
build.sh Local Metadata Integration Part 1 (#817) 2021-12-02 09:02:34 -08:00
build_target.sh v0.4.1 merge to stable (#272) 2021-06-06 15:25:50 -05:00
CONTRIBUTING.md On Deck + Misc Fixes and Changes (#1215) 2022-04-11 15:43:40 -07:00
copy_runtime.sh Hotfix/docker file permissions (#350) 2021-06-30 16:46:05 -04:00
docker-build.sh Local Metadata Integration Part 1 (#817) 2021-12-02 09:02:34 -08:00
docker-compose.yml Docker Healthcheck (#994) 2022-01-26 10:51:03 -08:00
Dockerfile Fixed healthcheck command error (#995) 2022-01-26 12:10:30 -08:00
entrypoint.sh Breaking Changes: Docker Parity (#698) 2021-11-03 06:36:04 -07:00
favicon.ico v0.4.1 merge to stable (#272) 2021-06-06 15:25:50 -05:00
FUNDING.yml Create FUNDING.yml 2021-06-17 18:07:51 -05:00
global.json Misc Fixes (#839) 2021-12-08 11:27:54 -08:00
INSTALL.txt v0.5.2 - UX Refresh, Custom Themes, Metadata Editing, and OPDS updates! (#1189) 2022-04-02 10:11:07 -07:00
Kavita.sln OPDS Cleanup (#534) 2021-08-28 15:32:24 -07:00
Kavita.sln.DotSettings Breaking Changes: Docker Parity (#698) 2021-11-03 06:36:04 -07:00
LICENSE Initial commit 2020-12-12 17:03:06 -06:00
monorepo-build.sh Update monorepo-build.sh 2021-12-02 11:38:19 -06:00
pull_request_template.md Breaking Changes: Docker Parity (#698) 2021-11-03 06:36:04 -07:00
README.md On Deck + Misc Fixes and Changes (#1215) 2022-04-11 15:43:40 -07:00

Kavita

!high level view

Kavita is a fast, feature rich, cross platform reading server. Built with a focus for manga, and the goal of being a full solution for all your reading needs. Setup your own server and share your reading collection with your friends and family!

Release License Downloads Docker Pulls Maintainability Rating Security Rating Backers on Open Collective Sponsors on Open Collective

Goals

  • Serve up Manga/Webtoons/Comics (cbr, cbz, zip/rar, 7zip, raw images) and Books (epub, pdf)
  • First class responsive readers that work great on any device (phone, tablet, desktop)
  • Dark and Light themes (and customizable themes)
  • Provide hooks into metadata providers to fetch metadata for Comics, Manga, and Books
  • Metadata should allow for collections, want to read integration from 3rd party services, genres.
  • Ability to manage users, access, and ratings
  • Ability to sync ratings and reviews to external services
  • Fully Accessible with active accessibility audits
  • Dedicated webtoon reading mode
  • And so much more...

Support

Reddit Discord GitHub - Bugs and Feature Requests Only

Demo

If you want to try out Kavita, we have a demo up: https://demo.kavitareader.com/

Username: demouser
Password: Demouser64

Setup

Non-Docker

  • Unzip the archive for your target OS
  • Place in a directory that is writable. If on windows, do not place in Program Files
  • Linux users must ensure the directory & kavita.db is writable by Kavita (might require starting server once)
  • Run Kavita
  • If you are updating, copy everything over into install location. All Kavita data is stored in config/, so nothing will be overwritten.
  • Open localhost:5000 and setup your account and libraries in the UI.

Docker

Running your Kavita server in docker is super easy! Barely an inconvenience. You can run it with this command:

docker run --name kavita -p 5000:5000 \
-v /your/manga/directory:/manga \
-v /kavita/data/directory:/kavita/config \
--restart unless-stopped \
-d kizaing/kavita:latest

You can also run it via the docker-compose file:

version: '3'
services:
    kavita:
        image: kizaing/kavita:latest
        container_name: kavita
        volumes:
            - ./manga:/manga
            - ./config:/kavita/config
        ports:
            - "5000:5000"
        restart: unless-stopped

Note: Kavita is under heavy development and is being updated all the time, so the tag for current builds is :nightly. The :latest tag will be the latest stable release.

Feature Requests

Got a great idea? Throw it up on our Feature Request site or vote on another idea. Please check the Project Board first for a list of planned features.

Notice

Kavita is being actively developed and should be considered beta software until the 1.0 release. Kavita may be subject to changes in how the platform functions as it is being built out toward the vision. You may lose data and have to restart. The Kavita team strives to avoid any data loss.

Contributors

This project exists thanks to all the people who contribute. Contribute.

Donate

If you like Kavita, have gotten good use out of it or feel like you want to say thanks with a few bucks, feel free to donate. Money will go towards expenses related to Kavita. Back us through OpenCollective. You can also use Paypal, however your name will not show below.

Backers

Thank you to all our backers! 🙏 Become a backer

Sponsors

Support this project by becoming a sponsor. Your logo will show up here with a link to your website. Become a sponsor

Mega Sponsors

JetBrains

Thank you to JetBrains for providing us with free licenses to their great tools.

Palace-Designs

We would like to extend a big thank you to who hosts our infrastructure pro-bono.

License