Add Local Manga Details (#116)

* Add Local Manga Details

* Clarify json

* Add line break
This commit is contained in:
happywillow0 2020-02-26 14:16:27 -05:00 committed by GitHub
parent 51eb55eb50
commit 19e18ae7cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -121,3 +121,23 @@ Archive files such as `ZIP`/`CBZ` are supported but the folder structure inside
</ul>
:::
## Advanced
### Local Manga Details
Starting with development version `r1628` and above, it is now possible to add details to local manga. Like manga from other catalogs, you add information about the manga such as the author, artist, description, and genre tags.
To import details along with your local manga, you have to create a file called `details.json` and place it within the manga folder. This file will contain the extended details about the manga in the `json` format. You can see the example below on how to build the file. Once the file is there, the app should load the data when you first open the manga or you can pull down to refresh the details.
You can copy the following example and edit the details as needed:
``` json
{
"title": "Example Title",
"author": "Example Author",
"artist": "Example Artist",
"description": "Example Description",
"genre": ["genre 1", "genre 2", "etc"],
"status": "0",
"_status values": ["0 = Unknown", "1 = Ongoing", "2 = Completed", "3 = Licensed"]
}
```