diff options
author | Paweł Jastrzębski <pawelj@iosphe.re> | 2019-08-04 08:40:48 +0200 |
---|---|---|
committer | Paweł Jastrzębski <pawelj@iosphe.re> | 2019-08-04 08:40:48 +0200 |
commit | 50dc7fbffede0b775f0e812fb1f29b1914ac11ec (patch) | |
tree | 11d7084f4a3c9cac7f78e7d742e227df17975610 /kindlecomicconverter | |
parent | Stabilise multiprocessing on OSX (diff) | |
download | kcc-50dc7fbffede0b775f0e812fb1f29b1914ac11ec.tar.gz kcc-50dc7fbffede0b775f0e812fb1f29b1914ac11ec.tar.bz2 kcc-50dc7fbffede0b775f0e812fb1f29b1914ac11ec.zip |
Added profile label for Oasis 3
New profile is unnecessary.
Diffstat (limited to 'kindlecomicconverter')
-rw-r--r-- | kindlecomicconverter/KCC_gui.py | 4 | ||||
-rwxr-xr-x | kindlecomicconverter/image.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/kindlecomicconverter/KCC_gui.py b/kindlecomicconverter/KCC_gui.py index 283c41c..68fc44f 100644 --- a/kindlecomicconverter/KCC_gui.py +++ b/kindlecomicconverter/KCC_gui.py @@ -910,8 +910,8 @@ class KCCGUI(KCC_ui.Ui_mainWindow): MW.resize(500, 500) self.profiles = { - "Kindle Oasis 2": {'PVOptions': True, 'ForceExpert': False, 'DefaultFormat': 0, - 'DefaultUpscale': True, 'Label': 'KO'}, + "Kindle Oasis 2/3": {'PVOptions': True, 'ForceExpert': False, 'DefaultFormat': 0, + 'DefaultUpscale': True, 'Label': 'KO'}, "Kindle Oasis": {'PVOptions': True, 'ForceExpert': False, 'DefaultFormat': 0, 'DefaultUpscale': True, 'Label': 'KV'}, "Kindle Voyage": {'PVOptions': True, 'ForceExpert': False, 'DefaultFormat': 0, diff --git a/kindlecomicconverter/image.py b/kindlecomicconverter/image.py index 118ef3c..bc96e0c 100755 --- a/kindlecomicconverter/image.py +++ b/kindlecomicconverter/image.py @@ -83,7 +83,7 @@ class ProfileData: 'KDX': ("Kindle DX/DXG", (824, 1000), Palette16, 1.8), 'KPW': ("Kindle Paperwhite 1/2", (758, 1024), Palette16, 1.8), 'KV': ("Kindle Paperwhite 3/4/Voyage/Oasis", (1072, 1448), Palette16, 1.8), - 'KO': ("Kindle Oasis 2", (1264, 1680), Palette16, 1.8), + 'KO': ("Kindle Oasis 2/3", (1264, 1680), Palette16, 1.8), 'KoMT': ("Kobo Mini/Touch", (600, 800), Palette16, 1.8), 'KoG': ("Kobo Glo", (768, 1024), Palette16, 1.8), 'KoGHD': ("Kobo Glo HD", (1072, 1448), Palette16, 1.8), |