diff --git a/CHANGELOG.md b/CHANGELOG.md index b5fce1a3..491f4298 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +#### 5.5.3b14: +* profiles: add Kindle11 and Kindle Scribe [darodi/kcc#16](https://github.com/darodi/kcc/issues/16), thanks [@darodi](https://github.com/darodi) +* Update with new Kobo models [darodi/kcc#15](https://github.com/darodi/kcc/issues/15), thanks [@lennie420](https://github.com/lennie420) + #### 5.5.3b13: * Keep epub file when selecting another type of output file [darodi/kcc#12](https://github.com/darodi/kcc/issues/12), thanks [@darodi](https://github.com/darodi) diff --git a/README.md b/README.md index c20e5632..5468d378 100644 --- a/README.md +++ b/README.md @@ -251,6 +251,37 @@ Please check [our wiki](https://github.com/ciromattia/kcc/wiki/) for more detail CLI version of **KCC** is intended for power users. It allows using options that might not be compatible and decrease the quality of output. +### Profiles: + +``` + 'K1': ("Kindle 1", (600, 670), Palette4, 1.8), + 'K11': ("Kindle 11", (1072, 1448), Palette16, 1.8), + 'K2': ("Kindle 2", (600, 670), Palette15, 1.8), + 'K34': ("Kindle Keyboard/Touch", (600, 800), Palette16, 1.8), + 'K578': ("Kindle", (600, 800), Palette16, 1.8), + 'KDX': ("Kindle DX/DXG", (824, 1000), Palette16, 1.8), + 'KPW': ("Kindle Paperwhite 1/2", (758, 1024), Palette16, 1.8), + 'KV': ("Kindle Paperwhite 3/4/Voyage/Oasis", (1072, 1448), Palette16, 1.8), + 'KPW5': ("Kindle Paperwhite 5/Signature Edition", (1236, 1648), Palette16, 1.8), + 'KO': ("Kindle Oasis 2/3", (1264, 1680), Palette16, 1.8), + 'KS': ("Kindle Scribe", (1860, 2480), Palette16, 1.8), + 'KoMT': ("Kobo Mini/Touch", (600, 800), Palette16, 1.8), + 'KoG': ("Kobo Glo", (768, 1024), Palette16, 1.8), + 'KoGHD': ("Kobo Glo HD", (1072, 1448), Palette16, 1.8), + 'KoA': ("Kobo Aura", (758, 1024), Palette16, 1.8), + 'KoAHD': ("Kobo Aura HD", (1080, 1440), Palette16, 1.8), + 'KoAH2O': ("Kobo Aura H2O", (1080, 1430), Palette16, 1.8), + 'KoAO': ("Kobo Aura ONE", (1404, 1872), Palette16, 1.8), + 'KoN': ("Kobo Nia", (758, 1024), Palette16, 1.8), + 'KoC': ("Kobo Clara HD/Kobo Clara 2E", (1072, 1448), Palette16, 1.8), + 'KoL': ("Kobo Libra H2O/Kobo Libra 2", (1264, 1680), Palette16, 1.8), + 'KoF': ("Kobo Forma", (1440, 1920), Palette16, 1.8), + 'KoS': ("Kobo Sage", (1440, 1920), Palette16, 1.8), + 'KoE': ("Kobo Elipsa", (1404, 1872), Palette16, 1.8), + 'OTHER': ("Other", (0, 0), Palette16, 1.8), +``` + + ### Standalone `kcc-c2e.py` usage: ``` @@ -260,8 +291,9 @@ Options: MAIN: -p PROFILE, --profile=PROFILE Device profile (Available options: K1, K2, K34, K578, - KDX, KPW, KPW5, KV, KO, KoMT, KoG, KoGHD, KoA, KoAHD, - KoAH2O, KoAO, KoC, KoL, KoF) [Default=KV] + KDX, KPW, KPW5, KV, KO, K11, KS, KoMT, KoG, KoGHD, + KoA, KoAHD, KoAH2O, KoAO, KoN, KoC, KoL, KoF, KoS, + KoE) [Default=KV] -m, --manga-style Manga style (right-to-left reading and splitting) -q, --hq Try to increase the quality of magnification -2, --two-panel Display two not four panels in Panel View mode @@ -323,7 +355,8 @@ Options: -y HEIGHT, --height=HEIGHT Height of the target device screen -i, --in-place Overwrite source directory - -m, --merge Combine every directory into a single image before splitting + -m, --merge Combine every directory into a single image before + splitting OTHER: -d, --debug Create debug file for every split image diff --git a/kindlecomicconverter/__init__.py b/kindlecomicconverter/__init__.py index ca2ca5dd..0131f13c 100644 --- a/kindlecomicconverter/__init__.py +++ b/kindlecomicconverter/__init__.py @@ -1,4 +1,4 @@ -__version__ = '5.5.3b13' +__version__ = '5.5.3b14' __license__ = 'ISC' __copyright__ = '2012-2022, Ciro Mattia Gonano , Pawel Jastrzebski , darodi' __docformat__ = 'restructuredtext en'