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 4206ae3e22
Linked Series (#1230)
* Implemented the ability to link different series together through Edit Series. CSS pending.

* Fixed up the css for related cards to show the relation

* Working on making all tabs in edit seris modal save in one go. Taking a break.

* Some fixes for Robbie to help with styling on

* Linked series pill, center library

* Centering library detail and related pill spacing

- Library detail cards are now centered if total number of items is > 6 or if mobile.
- Added ability to determine if mobile (viewport width <= 480px
- Fixed related card spacing
- Fixed related card pill spacing

* Updating relation form spacing

* Fixed a bug in card detail layout when there is no pagination, we create one in a way that all items render at once.

* Only auto-close side nav on phones, not tablets

* Fixed a bug where we had flipped state on sideNavCollapsed$

* Cleaned up some misleading comments

* Implemented RBS back in and now  if you have a relationship besides prequel/sequel, the target series will show a link back to it's parent.

* Added Parentto pipe

* Missed a relationship type

Co-authored-by: Robbie Davis <robbie@therobbiedavis.com>
2022-04-24 09:59:09 -07:00
.github Side nav (#1155) 2022-03-16 16:44:24 -07:00
.vscode The big one (#396) 2021-07-17 14:03:11 -05:00
API Linked Series (#1230) 2022-04-24 09:59:09 -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 Linked Series (#1230) 2022-04-24 09:59:09 -07:00
Kavita.Common Bump versions by dotnet-bump-version. 2022-04-23 19:47:16 +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 Linked Series (#1230) 2022-04-24 09:59:09 -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