diff options
author | Paweł Jastrzębski <pawelj@iosphe.re> | 2015-03-08 18:07:47 +0100 |
---|---|---|
committer | Paweł Jastrzębski <pawelj@iosphe.re> | 2015-03-08 18:07:47 +0100 |
commit | 26bd2d3ed07db087cfe71888a934218607c9ee5b (patch) | |
tree | 25d6461ade10e79bbb6d1a19daa61878d0977e36 | |
parent | Fixed bookmark drift caused by image splits (diff) | |
download | kcc-26bd2d3ed07db087cfe71888a934218607c9ee5b.tar.gz kcc-26bd2d3ed07db087cfe71888a934218607c9ee5b.tar.bz2 kcc-26bd2d3ed07db087cfe71888a934218607c9ee5b.zip |
Version bump
-rw-r--r-- | README.md | 9 | ||||
-rw-r--r-- | kcc.iss | 2 | ||||
-rw-r--r-- | kcc/__init__.py | 2 | ||||
-rwxr-xr-x | setup.sh | 2 |
4 files changed, 12 insertions, 3 deletions
diff --git a/README.md b/README.md index fc9eb1e..698edfe 100644 --- a/README.md +++ b/README.md @@ -159,6 +159,15 @@ The app relies and includes the following scripts: * [Kobo Aura H2O](http://kcc.iosphe.re/Samples/Ubunchu!-KoAH2O.cbz) ## CHANGELOG +####4.5: +* Added simple ComicRack medadata editor +* Re-enabled Manga Cover Database support +* ComicRack bookmarks are now parsed +* Fixed glitches in Kindle Voyage profile +* Fixed problems with directory locks on Windows +* Fixed sorting anomalies +* Improved conversion speed + ####4.4.1: * Fixed problems with OSX GUI * Added one missing DLL to Windows installer diff --git a/kcc.iss b/kcc.iss index 695af5d..f1adaaf 100644 --- a/kcc.iss +++ b/kcc.iss @@ -1,5 +1,5 @@ #define MyAppName "Kindle Comic Converter" -#define MyAppVersion "4.4.1" +#define MyAppVersion "4.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 c878e0a..1a4fe8c 100644 --- a/kcc/__init__.py +++ b/kcc/__init__.py @@ -1,4 +1,4 @@ -__version__ = '4.4.1' +__version__ = '4.5' __license__ = 'ISC' __copyright__ = '2012-2015, Ciro Mattia Gonano <ciromattia@gmail.com>, Pawel Jastrzebski <pawelj@iosphe.re>' __docformat__ = 'restructuredtext en' \ No newline at end of file diff --git a/setup.sh b/setup.sh index ccabf2e..c26a53e 100755 --- a/setup.sh +++ b/setup.sh @@ -1,7 +1,7 @@ #!/bin/bash # Linux Python package build script -VERSION="4.4.1" +VERSION="4.5" cp kcc.py __main__.py zip kcc.zip __main__.py kcc/*.py |