diff options
author | darodi <4682830+darodi@users.noreply.github.com> | 2021-11-27 23:57:45 +0100 |
---|---|---|
committer | darodi <4682830+darodi@users.noreply.github.com> | 2021-11-27 23:57:45 +0100 |
commit | aa4456bdb1c1d51733e4d89acee0b5b3ad29f097 (patch) | |
tree | 007fbbc55dd7a2abb64e48bb9be9c2c673579747 | |
parent | Add profile for Kindle PW5/Signature (diff) | |
download | kcc-aa4456bdb1c1d51733e4d89acee0b5b3ad29f097.tar.gz kcc-aa4456bdb1c1d51733e4d89acee0b5b3ad29f097.tar.bz2 kcc-aa4456bdb1c1d51733e4d89acee0b5b3ad29f097.zip |
Add profile for Kindle PW5/Signature
-rwxr-xr-x | kindlecomicconverter/comic2ebook.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kindlecomicconverter/comic2ebook.py b/kindlecomicconverter/comic2ebook.py index 42dc607..31ae076 100755 --- a/kindlecomicconverter/comic2ebook.py +++ b/kindlecomicconverter/comic2ebook.py @@ -974,13 +974,13 @@ def checkOptions(): options.bordersColor = None options.kfx = False if options.format == 'Auto': - if options.profile in ['K1', 'K2', 'K34', 'K578', 'KPW', 'KV', 'KO']: + if options.profile in ['K1', 'K2', 'K34', 'K578', 'KPW', 'KPW5', 'KV', 'KO']: options.format = 'MOBI' elif options.profile in ['OTHER', 'KoMT', 'KoG', 'KoGHD', 'KoA', 'KoAHD', 'KoAH2O', 'KoAO']: options.format = 'EPUB' elif options.profile in ['KDX']: options.format = 'CBZ' - if options.profile in ['K1', 'K2', 'K34', 'K578', 'KPW', 'KV', 'KO']: + if options.profile in ['K1', 'K2', 'K34', 'K578', 'KPW', 'KPW5', 'KV', 'KO']: options.iskindle = True if options.white_borders: options.bordersColor = 'white' |