diff options
author | Paweł Jastrzębski <pawelj@iosphe.re> | 2016-11-22 08:33:02 +0100 |
---|---|---|
committer | Paweł Jastrzębski <pawelj@iosphe.re> | 2016-11-22 08:33:02 +0100 |
commit | 64fb4a9eca6879cb19ffa15f231221cc1b0e62e0 (patch) | |
tree | 3f8c5205afc008887841dcd4dead321d29fc49ce | |
parent | Fixed some file lock anomalies (diff) | |
download | kcc-64fb4a9eca6879cb19ffa15f231221cc1b0e62e0.tar.gz kcc-64fb4a9eca6879cb19ffa15f231221cc1b0e62e0.tar.bz2 kcc-64fb4a9eca6879cb19ffa15f231221cc1b0e62e0.zip |
Updated README + version bump
-rw-r--r-- | README.md | 35 | ||||
-rw-r--r-- | kcc.iss | 2 | ||||
-rw-r--r-- | kcc/__init__.py | 2 | ||||
-rw-r--r-- | other/osx/Info.plist | 6 |
4 files changed, 26 insertions, 19 deletions
diff --git a/README.md b/README.md index f700680..cfaf214 100644 --- a/README.md +++ b/README.md @@ -75,9 +75,11 @@ Usage: kcc-c2e [options] comic_file|comic_folder Options: MAIN: -p PROFILE, --profile=PROFILE - Device profile (Available options: K1, K2, K3, K45, KDX, - KPW, KV, KoMT, KoG, KoGHD, KoA, KoAHD, KoAH2O, KoAO) [Default=KV] + Device profile (Available options: K1, K2, K3, K45, + KDX, KPW, KV, KoMT, KoG, KoGHD, KoA, KoAHD, KoAH2O, + KoAO) [Default=KV] -m, --manga-style Manga style (right-to-left reading and splitting) + -2, --two-panel Display two not four panels in Panel View mode -w, --webtoon Webtoon processing mode OUTPUT SETTINGS: @@ -86,29 +88,28 @@ Options: -t TITLE, --title=TITLE Comic title [Default=filename or directory name] -f FORMAT, --format=FORMAT - Output format (Available options: Auto, MOBI, EPUB, CBZ) - [Default=Auto] + Output format (Available options: Auto, MOBI, EPUB, + CBZ) [Default=Auto] -b, --batchsplit Split output into multiple files PROCESSING: -u, --upscale Resize images smaller than device's resolution -s, --stretch Stretch images to device's resolution -r SPLITTER, --splitter=SPLITTER - Double page parsing mode. 0: Split 1: Rotate 2: Both [Default=0] + Double page parsing mode. 0: Split 1: Rotate 2: Both + [Default=0] -g GAMMA, --gamma=GAMMA - Apply gamma correction to linearize the image [Default=Auto] - --hq Enable high quality Panel View + Apply gamma correction to linearize the image + [Default=Auto] + -c CROPPING, --cropping=CROPPING + Set cropping mode. 0: Disabled 1: Margins 2: Margins + + page numbers [Default=2] + --cp=CROPPINGP, --croppingpower=CROPPINGP + Set cropping power [Default=1.0] --blackborders Disable autodetection and force black borders --whiteborders Disable autodetection and force white borders --forcecolor Don't convert images to grayscale --forcepng Create PNG files instead JPEG - --cropping=CROPPING - Set cropping mode. 0: Disabled 1: Margins 2: Margins + - page numbers [Default=2] - --croppingpower=CROPPINGP - Set margin cropping threshold [Default=0.1] - --croppingpowerpage=CROPPINGPN - Set page number cropping threshold [Default=5.0] CUSTOM PROFILE: --customwidth=CUSTOMWIDTH @@ -159,6 +160,12 @@ The app relies and includes the following scripts: * [Kobo Aura ONE](http://kcc.iosphe.re/Samples/Ubunchu-KoAO.kepub.epub) ## CHANGELOG +####5.2: +* Added new Panel View options +* Implemented new margin detection algorithm +* Removed HQ Panel View mode +* Fixed multiple smaller issues + ####5.1.3: * Added Kobo Aura ONE profile * Fixed few small bugs diff --git a/kcc.iss b/kcc.iss index d536ab2..28a7317 100644 --- a/kcc.iss +++ b/kcc.iss @@ -1,5 +1,5 @@ #define MyAppName "Kindle Comic Converter" -#define MyAppVersion "5.1.3" +#define MyAppVersion "5.2" #define MyAppPublisher "Ciro Mattia Gonano, Paweł Jastrzębski" #define MyAppURL "http://kcc.iosphe.re/" #define MyAppExeName "KCC.exe" diff --git a/kcc/__init__.py b/kcc/__init__.py index 5382553..d4f4bd0 100644 --- a/kcc/__init__.py +++ b/kcc/__init__.py @@ -1,4 +1,4 @@ -__version__ = '5.1.3' +__version__ = '5.2' __license__ = 'ISC' __copyright__ = '2012-2016, Ciro Mattia Gonano <ciromattia@gmail.com>, Pawel Jastrzebski <pawelj@iosphe.re>' __docformat__ = 'restructuredtext en' diff --git a/other/osx/Info.plist b/other/osx/Info.plist index 0194378..d883b4d 100644 --- a/other/osx/Info.plist +++ b/other/osx/Info.plist @@ -9,7 +9,7 @@ <key>CFBundleExecutable</key> <string>MacOS/Kindle Comic Converter</string> <key>CFBundleGetInfoString</key> - <string>KindleComicConverter 5.1.3, written 2012-2016 by Ciro Mattia Gonano and Pawel Jastrzebski</string> + <string>KindleComicConverter 5.2, written 2012-2016 by Ciro Mattia Gonano and Pawel Jastrzebski</string> <key>CFBundleIconFile</key> <string>comic2ebook.icns</string> <key>CFBundleIdentifier</key> @@ -21,11 +21,11 @@ <key>CFBundlePackageType</key> <string>APPL</string> <key>CFBundleShortVersionString</key> - <string>5.1.3</string> + <string>5.2.0</string> <key>CFBundleSignature</key> <string>????</string> <key>CFBundleVersion</key> - <string>5.1.3</string> + <string>5.2.0</string> <key>LSEnvironment</key> <dict> <key>PATH</key> |