diff options
| author | Paweł Jastrzębski <[email protected]> | 2015-07-05 12:15:35 +0200 |
|---|---|---|
| committer | Paweł Jastrzębski <[email protected]> | 2015-07-05 12:15:35 +0200 |
| commit | d621335e6c3bbbfb504c4fce19fba43974beddfd (patch) | |
| tree | 0bed0ae0feae207e1b9776eb4cfb7ffb8455ef75 | |
| parent | Added ComicRack Summary field parsing (close #146) (diff) | |
| download | kcc-d621335e6c3bbbfb504c4fce19fba43974beddfd.tar.gz kcc-d621335e6c3bbbfb504c4fce19fba43974beddfd.tar.bz2 kcc-d621335e6c3bbbfb504c4fce19fba43974beddfd.zip | |
Updated README + version bump
| -rw-r--r-- | README.md | 6 | ||||
| -rw-r--r-- | kcc.iss | 2 | ||||
| -rw-r--r-- | kcc/__init__.py | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/README.md b/README.md index 87b7151..971a9e0 100644 --- a/README.md +++ b/README.md @@ -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.1: +* Fixed KEPUB TOC generator +* Added warning about too small input files +* ComicRack Summary metadata field is now parsed +* Small tweaks of KEPUB output + ####4.6: * KEPUB is now default output for all Kobo profiles * EPUB output now produce fully valid EPUB 3.0.1 diff --git a/kcc.iss b/kcc.iss index e65dcce..10a26c8 100644 --- a/kcc.iss +++ b/kcc.iss @@ -1,5 +1,5 @@ #define MyAppName "Kindle Comic Converter" -#define MyAppVersion "4.6" +#define MyAppVersion "4.6.1" #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 cbfefda..6a54f0c 100644 --- a/kcc/__init__.py +++ b/kcc/__init__.py @@ -1,4 +1,4 @@ -__version__ = '4.6' +__version__ = '4.6.1' __license__ = 'ISC' __copyright__ = '2012-2015, Ciro Mattia Gonano <[email protected]>, Pawel Jastrzebski <[email protected]>' __docformat__ = 'restructuredtext en' |