diff options
| author | Paweł Jastrzębski <[email protected]> | 2017-04-09 15:34:59 +0200 |
|---|---|---|
| committer | Paweł Jastrzębski <[email protected]> | 2017-04-09 15:34:59 +0200 |
| commit | 2d712e796db5e45ca97b1b1ad30ad29cd2df3043 (patch) | |
| tree | 306054863a915eeaa76f34fef3d8f70c57a3b522 | |
| parent | Fixed page splitter (diff) | |
| download | kcc-2d712e796db5e45ca97b1b1ad30ad29cd2df3043.tar.gz kcc-2d712e796db5e45ca97b1b1ad30ad29cd2df3043.tar.bz2 kcc-2d712e796db5e45ca97b1b1ad30ad29cd2df3043.zip | |
Updated README + version bump
| -rw-r--r-- | README.md | 10 | ||||
| -rw-r--r-- | kcc.iss | 2 | ||||
| -rw-r--r-- | kindlecomicconverter/__init__.py | 2 | ||||
| -rw-r--r-- | other/osx/Info.plist | 6 |
4 files changed, 13 insertions, 7 deletions
diff --git a/README.md b/README.md index a06ad77..cbdd012 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # KCC -[]() []() []() +[](https://github.com/ciromattia/kcc/releases) [](https://pypi.python.org/pypi/KindleComicConverter) [](https://aur.archlinux.org/packages/kcc/) **Kindle Comic Converter** is a Python app to convert comic/manga files or folders to EPUB, Panel View MOBI or E-Ink optimized CBZ. It was initially developed for Kindle but since version 4.6 it outputs valid EPUB 3.0 so _**despite its name, KCC is @@ -72,7 +72,7 @@ After completed conversion you should find ready file alongside the original inp Please check [our wiki](https://github.com/ciromattia/kcc/wiki/) for more details. -CLI version of **KCC** is intended for power users. It is not idiot-proof like GUI :-) +CLI version of **KCC** is intended for power users. It allow to use options that might not be compatible and decrease quality of output. ### Standalone `kcc-c2e.py` usage: @@ -86,6 +86,7 @@ Options: KDX, KPW, KV, KoMT, KoG, KoGHD, KoA, KoAHD, KoAH2O, KoAO) [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 -w, --webtoon Webtoon processing mode @@ -170,6 +171,11 @@ The app relies and includes the following scripts: * [Kobo Aura ONE](http://kcc.iosphe.re/Samples/Ubunchu-KoAO.kepub.epub) ## CHANGELOG +#### 5.4: +* Reimplemented high quality Panel View option +* Improved webtoon splitter +* Fixed page splitter + #### 5.3.1: * Small increase of output quality * Improved error reporting diff --git a/kcc.iss b/kcc.iss index 7dea76f..ba63491 100644 --- a/kcc.iss +++ b/kcc.iss @@ -1,5 +1,5 @@ #define MyAppName "Kindle Comic Converter" -#define MyAppVersion "5.3.1" +#define MyAppVersion "5.4" #define MyAppPublisher "Ciro Mattia Gonano, Paweł Jastrzębski" #define MyAppURL "http://kcc.iosphe.re/" #define MyAppExeName "KCC.exe" diff --git a/kindlecomicconverter/__init__.py b/kindlecomicconverter/__init__.py index 3622f15..a873448 100644 --- a/kindlecomicconverter/__init__.py +++ b/kindlecomicconverter/__init__.py @@ -1,4 +1,4 @@ -__version__ = '5.3.1' +__version__ = '5.4' __license__ = 'ISC' __copyright__ = '2012-2017, Ciro Mattia Gonano <[email protected]>, Pawel Jastrzebski <[email protected]>' __docformat__ = 'restructuredtext en' diff --git a/other/osx/Info.plist b/other/osx/Info.plist index dce11bb..0b4d894 100644 --- a/other/osx/Info.plist +++ b/other/osx/Info.plist @@ -30,7 +30,7 @@ <key>CFBundleExecutable</key> <string>MacOS/Kindle Comic Converter</string> <key>CFBundleGetInfoString</key> - <string>KindleComicConverter 5.3.1, written 2012-2017 by Ciro Mattia Gonano and Pawel Jastrzebski</string> + <string>KindleComicConverter 5.4.0, written 2012-2017 by Ciro Mattia Gonano and Pawel Jastrzebski</string> <key>CFBundleIconFile</key> <string>comic2ebook.icns</string> <key>CFBundleIdentifier</key> @@ -42,11 +42,11 @@ <key>CFBundlePackageType</key> <string>APPL</string> <key>CFBundleShortVersionString</key> - <string>5.3.1</string> + <string>5.4.0</string> <key>CFBundleSignature</key> <string>????</string> <key>CFBundleVersion</key> - <string>5.3.1</string> + <string>5.4.0</string> <key>LSEnvironment</key> <dict> <key>PATH</key> |