diff options
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | kcc.iss | 2 | ||||
-rw-r--r-- | kcc/__init__.py | 2 |
3 files changed, 6 insertions, 2 deletions
diff --git a/README.md b/README.md index 2f8d0ef..4cbb6b2 100644 --- a/README.md +++ b/README.md @@ -156,6 +156,10 @@ The app relies and includes the following scripts: * [Kobo Aura H2O](http://kcc.iosphe.re/Samples/Ubunchu-KoAH2O.kepub.epub) ## CHANGELOG +####4.6.5: +* Fixed multiple Windows and OS X issues +* Allowed Linux release to use older PyQT5 version + ####4.6.4: * Fixed multiple Windows specific problems * Improved error handling diff --git a/kcc.iss b/kcc.iss index eb720e8..1b3708d 100644 --- a/kcc.iss +++ b/kcc.iss @@ -1,5 +1,5 @@ #define MyAppName "Kindle Comic Converter" -#define MyAppVersion "4.6.4" +#define MyAppVersion "4.6.5" #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 6d9142d..0670e9c 100644 --- a/kcc/__init__.py +++ b/kcc/__init__.py @@ -1,4 +1,4 @@ -__version__ = '4.6.4' +__version__ = '4.6.5' __license__ = 'ISC' __copyright__ = '2012-2015, Ciro Mattia Gonano <ciromattia@gmail.com>, Pawel Jastrzebski <pawelj@iosphe.re>' __docformat__ = 'restructuredtext en' |