diff options
author | Paweł Jastrzębski <pawelj@vulturis.eu> | 2013-08-12 15:59:32 +0200 |
---|---|---|
committer | Paweł Jastrzębski <pawelj@vulturis.eu> | 2013-08-12 15:59:32 +0200 |
commit | b7d7204d40cfab8ad9586af353a45f06116e17cd (patch) | |
tree | 2f10084d8c1f6272831b113ab25489583b24878f | |
parent | GUI: Added webstrip support (diff) | |
download | kcc-b7d7204d40cfab8ad9586af353a45f06116e17cd.tar.gz kcc-b7d7204d40cfab8ad9586af353a45f06116e17cd.tar.bz2 kcc-b7d7204d40cfab8ad9586af353a45f06116e17cd.zip |
Updated README and version bump
-rw-r--r-- | README.md | 24 | ||||
-rw-r--r-- | kcc.py | 4 | ||||
-rw-r--r-- | kcc/KCC_gui.py | 2 | ||||
-rw-r--r-- | kcc/__init__.py | 2 | ||||
-rwxr-xr-x | kcc/comic2ebook.py | 2 | ||||
-rw-r--r-- | kcc/comic2panel.py | 2 | ||||
-rw-r--r-- | setup.py | 2 |
7 files changed, 18 insertions, 20 deletions
diff --git a/README.md b/README.md index c8f0267..e06fa68 100644 --- a/README.md +++ b/README.md @@ -56,21 +56,9 @@ You can find the latest released binary at the following links: ### GUI -Should be pretty self-explanatory. +Should be pretty self-explanatory. All options have detailed informations in tooltips. After completed conversion you should find ready file alongside the original input file (same directory). -### Comic2Panel - -**Comic2Panel** is currently experimental piece of software and it is **NOT** part of binary release. - -It is special parser for webstrip manga like _Tower of God_ or _Noblesse_ - Files with a low width, high height and vertical panel flow. -Script will automatically detect panels and split them so that they fit target device screen. - -Directory prepared by **Comic2Panel** can be used by KCC but you have to remember about three things: -* _Horizontal mode_ option is **mandatory**. -* Color of borders will be set automatically. -* Setting _Gamma_ to 1.00 will increase quality of color images. Try lower values if image is still too dark. - ### Standalone `comic2ebook.py` usage: ``` @@ -84,6 +72,9 @@ Options: Quality of Panel View. 0 - Normal 1 - High 2 - Ultra [Default=0] -m, --manga-style Manga style (Right-to-left reading and splitting) + EXPERIMENTAL: + -w, --webstrip Webstrip processing mode + OUTPUT SETTINGS: -o OUTPUT, --output=OUTPUT Output generated file to specified directory or file @@ -124,6 +115,7 @@ Options: MANDATORY: -y HEIGHT, --height=HEIGHT Height of the target device screen + -i, --in-place Overwrite source directory OTHER: -d, --debug Create debug file for every splitted image @@ -255,6 +247,12 @@ The app relies and includes the following scripts/binaries: * Add file/directory dialogs now support multiselect * Many small fixes and tweaks +####3.2: +* Too big EPUB files are now splitted before conversion to MOBI +* Added experimental parser of manga webstrips +* Moved location of temporary files to increase conversion speed +* Improved error handling + ## KNOWN ISSUES * Removing SRCS headers sometimes fail in 32bit enviroments. Due to memory limitations. diff --git a/kcc.py b/kcc.py index 1e190e1..08cdc10 100644 --- a/kcc.py +++ b/kcc.py @@ -16,8 +16,8 @@ # OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. -# -__version__ = '3.1' + +__version__ = '3.2' __license__ = 'ISC' __copyright__ = '2012-2013, Ciro Mattia Gonano <ciromattia@gmail.com>, Pawel Jastrzebski <pawelj@vulturis.eu>' __docformat__ = 'restructuredtext en' diff --git a/kcc/KCC_gui.py b/kcc/KCC_gui.py index 636476d..5584a06 100644 --- a/kcc/KCC_gui.py +++ b/kcc/KCC_gui.py @@ -17,7 +17,7 @@ # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. -__version__ = '3.1' +__version__ = '3.2' __license__ = 'ISC' __copyright__ = '2012-2013, Ciro Mattia Gonano <ciromattia@gmail.com>, Pawel Jastrzebski <pawelj@vulturis.eu>' __docformat__ = 'restructuredtext en' diff --git a/kcc/__init__.py b/kcc/__init__.py index c40afea..8f25277 100644 --- a/kcc/__init__.py +++ b/kcc/__init__.py @@ -1,4 +1,4 @@ -__version__ = '3.1' +__version__ = '3.2' __license__ = 'ISC' __copyright__ = '2012-2013, Ciro Mattia Gonano <ciromattia@gmail.com>, Pawel Jastrzebski <pawelj@vulturis.eu>' __docformat__ = 'restructuredtext en' \ No newline at end of file diff --git a/kcc/comic2ebook.py b/kcc/comic2ebook.py index 34459f7..54f13bc 100755 --- a/kcc/comic2ebook.py +++ b/kcc/comic2ebook.py @@ -17,7 +17,7 @@ # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. # -__version__ = '3.1' +__version__ = '3.2' __license__ = 'ISC' __copyright__ = '2012-2013, Ciro Mattia Gonano <ciromattia@gmail.com>, Pawel Jastrzebski <pawelj@vulturis.eu>' __docformat__ = 'restructuredtext en' diff --git a/kcc/comic2panel.py b/kcc/comic2panel.py index 53e19ef..28c87d9 100644 --- a/kcc/comic2panel.py +++ b/kcc/comic2panel.py @@ -17,7 +17,7 @@ # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. # -__version__ = '3.1' +__version__ = '3.2' __license__ = 'ISC' __copyright__ = '2012-2013, Ciro Mattia Gonano <ciromattia@gmail.com>, Pawel Jastrzebski <pawelj@vulturis.eu>' __docformat__ = 'restructuredtext en' diff --git a/setup.py b/setup.py index b10e8a9..f71c115 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ Usage (Windows): from sys import platform NAME = "KindleComicConverter" -VERSION = "3.1" +VERSION = "3.2" MAIN = "kcc.py" if platform == "darwin": |