about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPaweł Jastrzębski <pawelj@vulturis.eu>2014-03-08 08:29:51 +0100
committerPaweł Jastrzębski <pawelj@vulturis.eu>2014-03-13 21:26:26 +0100
commite491fca4457b4c90fcf0c6d47d247e687b3f5aa8 (patch)
tree7c1e8b56b50daf1af1538a0b46cd78c3f23156de
parentTweaked HQ mode (diff)
downloadkcc-e491fca4457b4c90fcf0c6d47d247e687b3f5aa8.tar.gz
kcc-e491fca4457b4c90fcf0c6d47d247e687b3f5aa8.tar.bz2
kcc-e491fca4457b4c90fcf0c6d47d247e687b3f5aa8.zip
Version bump + README update
-rw-r--r--README.md4
-rwxr-xr-xkcc-c2e.py2
-rwxr-xr-xkcc-c2p.py2
-rw-r--r--kcc.iss2
-rwxr-xr-xkcc.py2
-rw-r--r--kcc/KCC_gui.py2
-rw-r--r--kcc/__init__.py2
-rwxr-xr-xkcc/comic2ebook.py2
-rw-r--r--kcc/comic2panel.py2
-rw-r--r--requirements.txt4
-rwxr-xr-xsetup.py2
-rwxr-xr-xsetup.sh2
12 files changed, 18 insertions, 10 deletions
diff --git a/README.md b/README.md
index dc9c25d..fc258b6 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 82fbdd5..e906c7b 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 <ciromattia@gmail.com>, Pawel Jastrzebski <pawelj@vulturis.eu>'
 __docformat__ = 'restructuredtext en'
diff --git a/kcc-c2p.py b/kcc-c2p.py
index 040482e..9a6d16d 100755
--- a/kcc-c2p.py
+++ b/kcc-c2p.py
@@ -23,7 +23,7 @@ if sys.version_info[0] != 3:
     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 <ciromattia@gmail.com>, Pawel Jastrzebski <pawelj@vulturis.eu>'
 __docformat__ = 'restructuredtext en'
diff --git a/kcc.iss b/kcc.iss
index f08c1f9..09531b3 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 f83fa61..e333714 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 <ciromattia@gmail.com>, Pawel Jastrzebski <pawelj@vulturis.eu>'
 __docformat__ = 'restructuredtext en'
diff --git a/kcc/KCC_gui.py b/kcc/KCC_gui.py
index a5cff96..f86b7f6 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 <ciromattia@gmail.com>, Pawel Jastrzebski <pawelj@vulturis.eu>'
 __docformat__ = 'restructuredtext en'
diff --git a/kcc/__init__.py b/kcc/__init__.py
index ac89a5e..c814749 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 <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 aed8163..ac438d6 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 <ciromattia@gmail.com>, Pawel Jastrzebski <pawelj@vulturis.eu>'
 __docformat__ = 'restructuredtext en'
diff --git a/kcc/comic2panel.py b/kcc/comic2panel.py
index ef34a58..9744a4e 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 <ciromattia@gmail.com>, Pawel Jastrzebski <pawelj@vulturis.eu>'
 __docformat__ = 'restructuredtext en'
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 0000000..05d69ff
--- /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 30d41ad..fd3a528 100755
--- a/setup.py
+++ b/setup.py
@@ -14,7 +14,7 @@ if version_info[0] != 3:
     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 becbc2f..aa3212b 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