about summary refs log tree commit diff
path: root/kindlecomicconverter
diff options
context:
space:
mode:
authorPaweł Jastrzębski <pawelj@iosphe.re>2019-10-21 13:50:53 +0200
committerPaweł Jastrzębski <pawelj@iosphe.re>2019-10-21 13:50:53 +0200
commit67e913ed9ee2043b6401ea624f33fc20f656c5fc (patch)
treef4f0112988bc46b16c9751c6c0d7c0c50455a8c8 /kindlecomicconverter
parentFixed KindleGen detection on macOS (diff)
downloadkcc-67e913ed9ee2043b6401ea624f33fc20f656c5fc.tar.gz
kcc-67e913ed9ee2043b6401ea624f33fc20f656c5fc.tar.bz2
kcc-67e913ed9ee2043b6401ea624f33fc20f656c5fc.zip
Version bump
Diffstat (limited to 'kindlecomicconverter')
-rw-r--r--kindlecomicconverter/KCC_gui.py2
-rw-r--r--kindlecomicconverter/__init__.py2
-rwxr-xr-xkindlecomicconverter/image.py2
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 <ciromattia@gmail.com>, Pawel Jastrzebski <pawelj@iosphe.re>'
 __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)