1
0
mirror of https://github.com/ciromattia/kcc synced 2026-07-14 08:46:10 +00:00

Updated ComicRack metadata (markdown)

Paweł Jastrzębski
2015-09-29 22:21:51 +02:00
parent c09fa171b6
commit 6d64f6c4e6
+35 -4
@@ -1,13 +1,44 @@
**KCC** read XML file called ```ComicInfo.xml``` in the root of the CBZ/CBR/CB7 archive.
Currently following [ComicRack](http://comicrack.cyolito.com/) metadata fields are used: Currently following [ComicRack](http://comicrack.cyolito.com/) metadata fields are used:
* _Series_ field is used as book title. * _Series_ field is used as book title.
* _Volume_ number and chapter _Number_ is added to book title. * _Volume_ number and chapter _Number_ is added to book title.
* People defined in fields: _Writer_, _Penciller_, _Inker_ and _Colorist_ will be used as book authors. * Names declared in fields: _Writer_, _Penciller_, _Inker_ and _Colorist_ will be used as book authors.
* Bookmarks will be used as chapters if input archive have flat directory structure. * _Bookmarks_ will be used to create TOC if input archive have flat directory structure.
* _Summary_ field will be used as book description. * _Summary_ field will be used as book description.
KCC have build-in simple metadata editor. **KCC** have build-in simple metadata editor.
If [ComicRack](http://comicrack.cyolito.com/) is used **make sure that metadata are saved inside comic package!** If [ComicRack](http://comicrack.cyolito.com/) is used **make sure that metadata are saved inside comic package!**
Right click comic in library and choose _Update Book Files_ option to do that. Right click comic in library and choose _Update Book Files_ option to do that.
[ComicTagger](https://code.google.com/p/comictagger/) can also be used to write metadata inside CBZ/CBR file. Just make sure you writing them in [ComicRack](http://comicrack.cyolito.com/) format. [ComicTagger](https://code.google.com/p/comictagger/) can also be used to write metadata inside CBZ/CBR file. Just make sure you writing them in [ComicRack](http://comicrack.cyolito.com/) format.
***
Sample ```ComicInfo.xml``` file:
```
<?xml version="1.0" encoding="utf-8"?>
<ComicInfo xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Series>Dragon Ball</Series>
<Volume>1</Volume>
<Writer>Akira Toriyama</Writer>
<ScanInformation>MCD(3106)</ScanInformation>
<Pages>
<Page Image="0" Bookmark="Cover"/>
<Page Image="4" Bookmark="Table of Contents"/>
<Page Image="6" Bookmark="Tale 1: Bloomers and the Monkey king"/>
<Page Image="36" Bookmark="Tale 2: No Balls!"/>
<Page Image="50" Bookmark="Tale 3: Sea Monkeys"/>
<Page Image="64" Bookmark="Tale 4: They Call Him... the Turtle Hermit!"/>
<Page Image="78" Bookmark="Tale 5: Oo! Oo! Oolong!"/>
<Page Image="92" Bookmark="Tale 6: So Long, Oolong!"/>
<Page Image="106" Bookmark="Tale 7: Yamcha and Pu'ar"/>
<Page Image="120" Bookmark="Tale 8: One, Two, Yamcha-cha!"/>
<Page Image="134" Bookmark="Tale 9: Dragon Balls in Danger"/>
<Page Image="148" Bookmark="Tale 10: Onward to Fry-Pan"/>
<Page Image="162" Bookmark="Tale 11: ...And into the Fire!"/>
<Page Image="176" Bookmark="Title Page Gallery"/>
</Pages>
</ComicInfo>
```