about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPaweł Jastrzębski <pawelj@iosphe.re>2015-09-11 09:38:28 +0200
committerPaweł Jastrzębski <pawelj@iosphe.re>2015-09-11 09:38:28 +0200
commit2128104db77e2051ead035f69b536783a9ed8bd3 (patch)
treea86b47a2093b67d89e54f4e1f9cc614b7e03d23a
parentTweaked CBZ detection (diff)
downloadkcc-2128104db77e2051ead035f69b536783a9ed8bd3.tar.gz
kcc-2128104db77e2051ead035f69b536783a9ed8bd3.tar.bz2
kcc-2128104db77e2051ead035f69b536783a9ed8bd3.zip
Updated README + version bump
-rw-r--r--README.md10
-rw-r--r--kcc.iss2
-rw-r--r--kcc/__init__.py2
3 files changed, 10 insertions, 4 deletions
diff --git a/README.md b/README.md
index 5b88121..0d22719 100644
--- a/README.md
+++ b/README.md
@@ -32,10 +32,10 @@ You can find the latest released binary at the following links:
 ## DEPENDENCIES
 Following software is required to run Linux version of **KCC** and/or bare sources:
 - Python 3.3+
-- [PyQt](http://www.riverbankcomputing.co.uk/software/pyqt/download5) 5.2.0+
+- [PyQt](http://www.riverbankcomputing.co.uk/software/pyqt/download5) 5.4.0+
 - [Pillow](http://pypi.python.org/pypi/Pillow/) 2.8.2+
 - [psutil](https://pypi.python.org/pypi/psutil) 3.0.0+
-- [python-slugify](http://pypi.python.org/pypi/python-slugify) 1.1.2+
+- [python-slugify](http://pypi.python.org/pypi/python-slugify) 1.1.3+
 - [scandir](https://pypi.python.org/pypi/scandir) 1.1.0+
 
 On Debian based distributions these two commands should install all needed dependencies:
@@ -156,6 +156,12 @@ The app relies and includes the following scripts:
 * [Kobo Aura H2O](http://kcc.iosphe.re/Samples/Ubunchu-KoAH2O.kepub.epub)
 
 ## CHANGELOG
+####4.6.4:
+* Fixed multiple Windows specific problems
+* Improved error handling
+* Improved color detection algorithm
+* New, slimmer OS X release
+
 ####4.6.3:
 * Implemented remote bug reporting
 * Minor bug fixes and GUI tweaks
diff --git a/kcc.iss b/kcc.iss
index d4e88fe..eb720e8 100644
--- a/kcc.iss
+++ b/kcc.iss
@@ -1,5 +1,5 @@
 #define MyAppName "Kindle Comic Converter"
-#define MyAppVersion "4.6.3"
+#define MyAppVersion "4.6.4"
 #define MyAppPublisher "Ciro Mattia Gonano, Paweł Jastrzębski"
 #define MyAppURL "http://kcc.iosphe.re/"
 #define MyAppExeName "KCC.exe"
diff --git a/kcc/__init__.py b/kcc/__init__.py
index 559ed65..6d9142d 100644
--- a/kcc/__init__.py
+++ b/kcc/__init__.py
@@ -1,4 +1,4 @@
-__version__ = '4.6.3'
+__version__ = '4.6.4'
 __license__ = 'ISC'
 __copyright__ = '2012-2015, Ciro Mattia Gonano <ciromattia@gmail.com>, Pawel Jastrzebski <pawelj@iosphe.re>'
 __docformat__ = 'restructuredtext en'