diff options
| author | Paweł Jastrzębski <[email protected]> | 2019-10-21 13:50:53 +0200 |
|---|---|---|
| committer | Paweł Jastrzębski <[email protected]> | 2019-10-21 13:50:53 +0200 |
| commit | 67e913ed9ee2043b6401ea624f33fc20f656c5fc (patch) | |
| tree | f4f0112988bc46b16c9751c6c0d7c0c50455a8c8 /kindlecomicconverter | |
| parent | Fixed KindleGen detection on macOS (diff) | |
| download | kcc-67e913ed9ee2043b6401ea624f33fc20f656c5fc.tar.gz kcc-67e913ed9ee2043b6401ea624f33fc20f656c5fc.tar.bz2 kcc-67e913ed9ee2043b6401ea624f33fc20f656c5fc.zip | |
Version bump
Diffstat (limited to 'kindlecomicconverter')
| -rw-r--r-- | kindlecomicconverter/KCC_gui.py | 2 | ||||
| -rw-r--r-- | kindlecomicconverter/__init__.py | 2 | ||||
| -rwxr-xr-x | kindlecomicconverter/image.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/kindlecomicconverter/KCC_gui.py b/kindlecomicconverter/KCC_gui.py index 6020c7d..ea36e1e 100644 --- a/kindlecomicconverter/KCC_gui.py +++ b/kindlecomicconverter/KCC_gui.py @@ -953,7 +953,7 @@ class KCCGUI(KCC_ui.Ui_mainWindow): 'DefaultUpscale': False, 'Label': 'K34'}, } profilesGUI = [ - "Kindle Oasis 2", + "Kindle Oasis 2/3", "Kindle Oasis", "Kindle Voyage", "Kindle PW 3/4", diff --git a/kindlecomicconverter/__init__.py b/kindlecomicconverter/__init__.py index c0f1b84..6ad0c10 100644 --- a/kindlecomicconverter/__init__.py +++ b/kindlecomicconverter/__init__.py @@ -1,4 +1,4 @@ -__version__ = '5.5.1' +__version__ = '5.5.2' __license__ = 'ISC' __copyright__ = '2012-2019, Ciro Mattia Gonano <[email protected]>, Pawel Jastrzebski <[email protected]>' __docformat__ = 'restructuredtext en' diff --git a/kindlecomicconverter/image.py b/kindlecomicconverter/image.py index bc96e0c..35fcfc8 100755 --- a/kindlecomicconverter/image.py +++ b/kindlecomicconverter/image.py @@ -358,7 +358,7 @@ class Cover: try: self.image.save(self.target, "JPEG", optimize=1, quality=85) except IOError: - raise RuntimeError('Failed to process downloaded cover.') + raise RuntimeError('Failed to save cover.') def saveToKindle(self, kindle, asin): self.image = self.image.resize((300, 470), Image.ANTIALIAS) |