diff --git a/CHANGELOG.md b/CHANGELOG.md index c68a09f5..997e0430 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,10 @@ # CHANGELOG +#### 5.4.2: +* Added Kindle Oasis 2 profile +* Allowed metadata editor to edit directories +* Fixed image stretching when HQ Panel View option was enabled +* Fixed possible problem with directory sort order + #### 5.4.1: * Minor bug fixes and tweaks * Implemented new binary build pipeline diff --git a/README.md b/README.md index ce4977a0..fe49da19 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,7 @@ Options: MAIN: -p PROFILE, --profile=PROFILE Device profile (Available options: K1, K2, K34, K578, - KDX, KPW, KV, KoMT, KoG, KoGHD, KoA, KoAHD, KoAH2O, + KDX, KPW, KV, KO, KoMT, KoG, KoGHD, KoA, KoAHD, KoAH2O, KoAO) [Default=KV] -m, --manga-style Manga style (right-to-left reading and splitting) -q, --hq Try to increase the quality of magnification @@ -162,9 +162,10 @@ The app relies and includes the following scripts: - Icon is by **Nikolay Verin** ([http://ncrow.deviantart.com/](http://ncrow.deviantart.com/)) and released under [CC BY-NC-SA 3.0](http://creativecommons.org/licenses/by-nc-sa/3.0/) License. ## SAMPLE FILES CREATED BY KCC +* [Kindle Oasis 2](http://kcc.iosphe.re/Samples/Ubunchu!-KO.mobi) * [Kindle Paperwhite 3 / Voyage / Oasis](http://kcc.iosphe.re/Samples/Ubunchu!-KV.mobi) * [Kindle Paperwhite 1 / 2](http://kcc.iosphe.re/Samples/Ubunchu!-KPW.mobi) -* [Kindle](http://kcc.iosphe.re/Samples/Ubunchu!-K45.mobi) +* [Kindle](http://kcc.iosphe.re/Samples/Ubunchu!-K578.mobi) * [Kobo Aura](http://kcc.iosphe.re/Samples/Ubunchu-KoA.kepub.epub) * [Kobo Aura HD](http://kcc.iosphe.re/Samples/Ubunchu-KoAHD.kepub.epub) * [Kobo Aura H2O](http://kcc.iosphe.re/Samples/Ubunchu-KoAH2O.kepub.epub) diff --git a/kcc.iss b/kcc.iss index 526ce7ca..52254260 100644 --- a/kcc.iss +++ b/kcc.iss @@ -1,5 +1,5 @@ #define MyAppName "Kindle Comic Converter" -#define MyAppVersion "5.4.1" +#define MyAppVersion "5.4.2" #define MyAppPublisher "Ciro Mattia Gonano, Paweł Jastrzębski" #define MyAppURL "http://kcc.iosphe.re/" #define MyAppExeName "KCC.exe" diff --git a/kindlecomicconverter/__init__.py b/kindlecomicconverter/__init__.py index 45fe8a65..dad32ea0 100644 --- a/kindlecomicconverter/__init__.py +++ b/kindlecomicconverter/__init__.py @@ -1,4 +1,4 @@ -__version__ = '5.4.1' +__version__ = '5.4.2' __license__ = 'ISC' __copyright__ = '2012-2017, Ciro Mattia Gonano , Pawel Jastrzebski ' __docformat__ = 'restructuredtext en' diff --git a/other/osx/Info.plist b/other/osx/Info.plist index d8fad38d..158bd621 100644 --- a/other/osx/Info.plist +++ b/other/osx/Info.plist @@ -30,7 +30,7 @@ CFBundleExecutable MacOS/Kindle Comic Converter CFBundleGetInfoString - KindleComicConverter 5.4.1, written 2012-2017 by Ciro Mattia Gonano and Pawel Jastrzebski + KindleComicConverter 5.4.2, written 2012-2017 by Ciro Mattia Gonano and Pawel Jastrzebski CFBundleIconFile comic2ebook.icns CFBundleIdentifier @@ -42,11 +42,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 5.4.1 + 5.4.2 CFBundleSignature ???? CFBundleVersion - 5.4.1 + 5.4.2 LSEnvironment PATH diff --git a/setup.py b/setup.py index 89c41a00..c50dcaa0 100755 --- a/setup.py +++ b/setup.py @@ -71,6 +71,7 @@ def run(self): '--category "graphics" -d "unrar | unrar-free" -d "p7zip-full" -d "libc6" usr') exit(0) + setuptools.setup( cmdclass={ 'build_binary': BuildBinaryCommand,