1
0
mirror of https://github.com/ciromattia/kcc synced 2025-12-15 10:46:40 +00:00

Updated README + version bump

This commit is contained in:
Paweł Jastrzębski
2015-10-29 17:12:18 +01:00
parent 72b5027021
commit 7305ccffc5
5 changed files with 57 additions and 51 deletions

View File

@@ -3,7 +3,7 @@
FROM acidweb/kcc-base FROM acidweb/kcc-base
MAINTAINER Paweł Jastrzębski <pawelj@iosphe.re> MAINTAINER Paweł Jastrzębski <pawelj@iosphe.re>
ENV KCCVER 4.6.5 ENV KCCVER 5.0
ADD . /app ADD . /app
RUN pip3 install pillow python-slugify psutil scandir pyinstaller RUN pip3 install pillow python-slugify psutil scandir pyinstaller

View File

@@ -25,9 +25,9 @@ If you find **KCC** valuable you can consider donating to the authors:
## BINARY RELEASES ## BINARY RELEASES
You can find the latest released binary at the following links: You can find the latest released binary at the following links:
- **Windows (Vista or newer):** [http://kcc.iosphe.re/Windows/](http://kcc.iosphe.re/Windows/) - **Windows (64-bit only):** [http://kcc.iosphe.re/Windows/](http://kcc.iosphe.re/Windows/)
- **Linux:** [http://kcc.iosphe.re/Linux/](http://kcc.iosphe.re/Linux/) - **Linux (Glibc 2.19+):** [http://kcc.iosphe.re/Linux/](http://kcc.iosphe.re/Linux/)
- **OS X (10.8+):** [http://kcc.iosphe.re/OSX/](http://kcc.iosphe.re/OSX/) - **OS X (10.9+):** [http://kcc.iosphe.re/OSX/](http://kcc.iosphe.re/OSX/)
## DEPENDENCIES ## DEPENDENCIES
Following software is required to run Linux version of **KCC** and/or bare sources: Following software is required to run Linux version of **KCC** and/or bare sources:
@@ -69,49 +69,48 @@ CLI version of **KCC** is intended for power users. It is not idiot-proof like G
### Standalone `kcc-c2e.py` usage: ### Standalone `kcc-c2e.py` usage:
``` ```
Usage: kcc-c2e [options] comic_file|comic_folder Usage: kcc-c2e [options] comic_file|comic_folder
Options: Options:
MAIN: MAIN:
-p PROFILE, --profile=PROFILE -p PROFILE, --profile=PROFILE
Device profile (Available options: K1, K2, K345, KDX, Device profile (Available options: K1, K2, K345, KDX,
KPW, KV, KoMT, KoG, KoGHD, KoA, KoAHD, KoAH2O) [Default=KV] KPW, KV, KoMT, KoG, KoGHD, KoA, KoAHD, KoAH2O) [Default=KV]
-q QUALITY, --quality=QUALITY -m, --manga-style Manga style (right-to-left reading and splitting)
Quality of Panel View. 0 - Normal 1 - High 2 - Ultra [Default=0] -w, --webtoon Webtoon processing mode
-m, --manga-style Manga style (Right-to-left reading and splitting)
-w, --webtoon Webtoon processing mode OUTPUT SETTINGS:
-o OUTPUT, --output=OUTPUT
OUTPUT SETTINGS: Output generated file to specified directory or file
-o OUTPUT, --output=OUTPUT -t TITLE, --title=TITLE
Output generated file to specified directory or file Comic title [Default=filename or directory name]
-t TITLE, --title=TITLE -f FORMAT, --format=FORMAT
Comic title [Default=filename or directory name] Output format (Available options: Auto, MOBI, EPUB,
-f FORMAT, --format=FORMAT CBZ) [Default=Auto]
Output format (Available options: Auto, MOBI, -b, --batchsplit Split output into multiple files
EPUB, CBZ) [Default=Auto]
--batchsplit Split output into multiple files PROCESSING:
-u, --upscale Resize images smaller than device's resolution
PROCESSING: -s, --stretch Stretch images to device's resolution
--blackborders Disable autodetection and force black borders -r SPLITTER, --splitter=SPLITTER
--whiteborders Disable autodetection and force white borders Double page parsing mode. 0: Split 1: Rotate 2: Both [Default=0]
--forcecolor Don't convert images to grayscale -g GAMMA, --gamma=GAMMA
--forcepng Create PNG files instead JPEG Apply gamma correction to linearize the image [Default=Auto]
--gamma=GAMMA Apply gamma correction to linearize the image [Default=Auto] --hq Enable high quality Panel View
--nocutpagenumbers Don't try to cut page numbering on images --blackborders Disable autodetection and force black borders
--noprocessing Don't apply image preprocessing --whiteborders Disable autodetection and force white borders
--nosplitrotate Disable splitting and rotation --forcecolor Don't convert images to grayscale
--rotate Rotate landscape pages instead of splitting them --forcepng Create PNG files instead JPEG
--stretch Stretch images to device's resolution --nocutpagenumbers Don't try to cut page numbers from images
--upscale Resize images smaller than device's resolution
CUSTOM PROFILE:
CUSTOM PROFILE: --customwidth=CUSTOMWIDTH
--customwidth=CUSTOMWIDTH Replace screen width provided by device profile
Replace screen width provided by device profile --customheight=CUSTOMHEIGHT
--customheight=CUSTOMHEIGHT Replace screen height provided by device profile
Replace screen height provided by device profile
OTHER:
OTHER: -h, --help Show this help message and exit
-h, --help Show this help message and exit
``` ```
### Standalone `kcc-c2p.py` usage: ### Standalone `kcc-c2p.py` usage:
@@ -156,6 +155,13 @@ The app relies and includes the following scripts:
* [Kobo Aura H2O](http://kcc.iosphe.re/Samples/Ubunchu-KoAH2O.kepub.epub) * [Kobo Aura H2O](http://kcc.iosphe.re/Samples/Ubunchu-KoAH2O.kepub.epub)
## CHANGELOG ## CHANGELOG
####5.0:
* Major overhaul of internal mechanisms and GUI
* Added cover upload feature
* Tweaked Webtoon parsing mode
* Fixed multiple smaller issues
* Migrated build enviroment to PyInstaller
####4.6.5: ####4.6.5:
* Fixed multiple Windows and OS X issues * Fixed multiple Windows and OS X issues
* Allowed Linux release to use older PyQT5 version * Allowed Linux release to use older PyQT5 version

View File

@@ -1,5 +1,5 @@
#define MyAppName "Kindle Comic Converter" #define MyAppName "Kindle Comic Converter"
#define MyAppVersion "4.6.5" #define MyAppVersion "5.0"
#define MyAppPublisher "Ciro Mattia Gonano, Paweł Jastrzębski" #define MyAppPublisher "Ciro Mattia Gonano, Paweł Jastrzębski"
#define MyAppURL "http://kcc.iosphe.re/" #define MyAppURL "http://kcc.iosphe.re/"
#define MyAppExeName "KCC.exe" #define MyAppExeName "KCC.exe"

View File

@@ -1,4 +1,4 @@
__version__ = '4.6.5' __version__ = '5.0'
__license__ = 'ISC' __license__ = 'ISC'
__copyright__ = '2012-2015, Ciro Mattia Gonano <ciromattia@gmail.com>, Pawel Jastrzebski <pawelj@iosphe.re>' __copyright__ = '2012-2015, Ciro Mattia Gonano <ciromattia@gmail.com>, Pawel Jastrzebski <pawelj@iosphe.re>'
__docformat__ = 'restructuredtext en' __docformat__ = 'restructuredtext en'

View File

@@ -9,7 +9,7 @@
<key>CFBundleExecutable</key> <key>CFBundleExecutable</key>
<string>MacOS/Kindle Comic Converter</string> <string>MacOS/Kindle Comic Converter</string>
<key>CFBundleGetInfoString</key> <key>CFBundleGetInfoString</key>
<string>KindleComicConverter 4.6.5, written 2012-2015 by Ciro Mattia Gonano and Pawel Jastrzebski</string> <string>KindleComicConverter 5.0, written 2012-2015 by Ciro Mattia Gonano and Pawel Jastrzebski</string>
<key>CFBundleIconFile</key> <key>CFBundleIconFile</key>
<string>comic2ebook.icns</string> <string>comic2ebook.icns</string>
<key>CFBundleIdentifier</key> <key>CFBundleIdentifier</key>
@@ -21,11 +21,11 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>APPL</string> <string>APPL</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>4.6.5</string> <string>5.0.0</string>
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>????</string> <string>????</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>4.6.5</string> <string>5.0.0</string>
<key>LSEnvironment</key> <key>LSEnvironment</key>
<dict> <dict>
<key>PATH</key> <key>PATH</key>