From e491fca4457b4c90fcf0c6d47d247e687b3f5aa8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Jastrz=C4=99bski?= Date: Sat, 8 Mar 2014 08:29:51 +0100 Subject: [PATCH] Version bump + README update --- README.md | 4 ++++ kcc-c2e.py | 2 +- kcc-c2p.py | 2 +- kcc.iss | 2 +- kcc.py | 2 +- kcc/KCC_gui.py | 2 +- kcc/__init__.py | 2 +- kcc/comic2ebook.py | 2 +- kcc/comic2panel.py | 2 +- requirements.txt | 4 ++++ setup.py | 2 +- setup.sh | 2 +- 12 files changed, 18 insertions(+), 10 deletions(-) create mode 100644 requirements.txt diff --git a/README.md b/README.md index dc9c25d3..fc258b61 100644 --- a/README.md +++ b/README.md @@ -339,6 +339,10 @@ The app relies and includes the following scripts/binaries: * Improved performance of WebToon splitter * Tweaked margin color detection +####4.0.2: +* Fixed some Windows and OSX specific bugs +* Fixed problem with marigns when using HQ mode + ## KNOWN ISSUES Please check [wiki page](https://github.com/ciromattia/kcc/wiki/Known-issues). diff --git a/kcc-c2e.py b/kcc-c2e.py index 82fbdd52..e906c7b8 100755 --- a/kcc-c2e.py +++ b/kcc-c2e.py @@ -18,7 +18,7 @@ # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. -__version__ = '4.0.1' +__version__ = '4.0.2' __license__ = 'ISC' __copyright__ = '2012-2014, Ciro Mattia Gonano , Pawel Jastrzebski ' __docformat__ = 'restructuredtext en' diff --git a/kcc-c2p.py b/kcc-c2p.py index 040482e3..9a6d16d2 100755 --- a/kcc-c2p.py +++ b/kcc-c2p.py @@ -23,7 +23,7 @@ print('ERROR: This is Python 3 script!') exit(1) -__version__ = '4.0.1' +__version__ = '4.0.2' __license__ = 'ISC' __copyright__ = '2012-2014, Ciro Mattia Gonano , Pawel Jastrzebski ' __docformat__ = 'restructuredtext en' diff --git a/kcc.iss b/kcc.iss index f08c1f94..09531b33 100644 --- a/kcc.iss +++ b/kcc.iss @@ -1,5 +1,5 @@ #define MyAppName "Kindle Comic Converter" -#define MyAppVersion "4.0.1" +#define MyAppVersion "4.0.2" #define MyAppPublisher "Ciro Mattia Gonano, Paweł Jastrzębski" #define MyAppURL "http://kcc.vulturis.eu/" #define MyAppExeName "KCC.exe" diff --git a/kcc.py b/kcc.py index f83fa610..e3337144 100755 --- a/kcc.py +++ b/kcc.py @@ -18,7 +18,7 @@ # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. -__version__ = '4.0.1' +__version__ = '4.0.2' __license__ = 'ISC' __copyright__ = '2012-2014, Ciro Mattia Gonano , Pawel Jastrzebski ' __docformat__ = 'restructuredtext en' diff --git a/kcc/KCC_gui.py b/kcc/KCC_gui.py index a5cff967..f86b7f65 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__ = '4.0.1' +__version__ = '4.0.2' __license__ = 'ISC' __copyright__ = '2012-2014, Ciro Mattia Gonano , Pawel Jastrzebski ' __docformat__ = 'restructuredtext en' diff --git a/kcc/__init__.py b/kcc/__init__.py index ac89a5ef..c8147499 100644 --- a/kcc/__init__.py +++ b/kcc/__init__.py @@ -1,4 +1,4 @@ -__version__ = '4.0.1' +__version__ = '4.0.2' __license__ = 'ISC' __copyright__ = '2012-2014, Ciro Mattia Gonano , Pawel Jastrzebski ' __docformat__ = 'restructuredtext en' \ No newline at end of file diff --git a/kcc/comic2ebook.py b/kcc/comic2ebook.py index aed8163b..ac438d6f 100755 --- a/kcc/comic2ebook.py +++ b/kcc/comic2ebook.py @@ -18,7 +18,7 @@ # PERFORMANCE OF THIS SOFTWARE. # -__version__ = '4.0.1' +__version__ = '4.0.2' __license__ = 'ISC' __copyright__ = '2012-2014, Ciro Mattia Gonano , Pawel Jastrzebski ' __docformat__ = 'restructuredtext en' diff --git a/kcc/comic2panel.py b/kcc/comic2panel.py index ef34a588..9744a4e8 100644 --- a/kcc/comic2panel.py +++ b/kcc/comic2panel.py @@ -18,7 +18,7 @@ # PERFORMANCE OF THIS SOFTWARE. # -__version__ = '4.0.1' +__version__ = '4.0.2' __license__ = 'ISC' __copyright__ = '2012-2014, Ciro Mattia Gonano , Pawel Jastrzebski ' __docformat__ = 'restructuredtext en' diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 00000000..05d69fff --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +Pillow==2.3.0 +Unidecode==0.04.14 +psutil==1.2.1 +python-slugify==0.0.7 diff --git a/setup.py b/setup.py index 30d41ad1..fd3a528e 100755 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ exit(1) NAME = "KindleComicConverter" -VERSION = "4.0.1" +VERSION = "4.0.2" MAIN = "kcc.py" if platform == "darwin": diff --git a/setup.sh b/setup.sh index becbc2fb..aa3212b5 100755 --- a/setup.sh +++ b/setup.sh @@ -1,7 +1,7 @@ #!/bin/bash # Linux Python package build script -VERSION="4.0.1" +VERSION="4.0.2" cp kcc.py __main__.py zip kcc.zip __main__.py kcc/*.py