diff options
author | Paweł Jastrzębski <pawelj@iosphe.re> | 2017-08-17 10:11:24 +0200 |
---|---|---|
committer | Paweł Jastrzębski <pawelj@iosphe.re> | 2017-08-17 10:11:24 +0200 |
commit | 066d1401bd712263ddcbf6182f49f77e04fc71e6 (patch) | |
tree | 6b0309e18aa4df72b9b1a733fd0680c133a27ecc /kindlecomicconverter/KCC_gui.py | |
parent | Start using Travis CI as OS X binary builder (diff) | |
download | kcc-066d1401bd712263ddcbf6182f49f77e04fc71e6.tar.gz kcc-066d1401bd712263ddcbf6182f49f77e04fc71e6.tar.bz2 kcc-066d1401bd712263ddcbf6182f49f77e04fc71e6.zip |
Cleaned profile list
Diffstat (limited to 'kindlecomicconverter/KCC_gui.py')
-rw-r--r-- | kindlecomicconverter/KCC_gui.py | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/kindlecomicconverter/KCC_gui.py b/kindlecomicconverter/KCC_gui.py index bd47eb0..f1cdd5a 100644 --- a/kindlecomicconverter/KCC_gui.py +++ b/kindlecomicconverter/KCC_gui.py @@ -927,7 +927,7 @@ class KCCGUI(KCC_ui.Ui_mainWindow): "Kindle PW 1/2": {'PVOptions': True, 'ForceExpert': False, 'DefaultFormat': 0, 'DefaultUpscale': False, 'Label': 'KPW'}, "Kindle": {'PVOptions': True, 'ForceExpert': False, 'DefaultFormat': 0, - 'DefaultUpscale': False, 'Label': 'K45'}, + 'DefaultUpscale': False, 'Label': 'K578'}, "Kindle DX/DXG": {'PVOptions': False, 'ForceExpert': False, 'DefaultFormat': 2, 'DefaultUpscale': False, 'Label': 'KDX'}, "Kobo Mini/Touch": {'PVOptions': False, 'ForceExpert': False, 'DefaultFormat': 1, @@ -950,8 +950,10 @@ class KCCGUI(KCC_ui.Ui_mainWindow): 'DefaultUpscale': False, 'Label': 'K1'}, "Kindle 2": {'PVOptions': False, 'ForceExpert': False, 'DefaultFormat': 0, 'DefaultUpscale': False, 'Label': 'K2'}, - "Kindle 3": {'PVOptions': False, 'ForceExpert': False, 'DefaultFormat': 0, - 'DefaultUpscale': False, 'Label': 'K3'}, + "Kindle Keyboard": {'PVOptions': False, 'ForceExpert': False, 'DefaultFormat': 0, + 'DefaultUpscale': False, 'Label': 'K34'}, + "Kindle Touch": {'PVOptions': False, 'ForceExpert': False, 'DefaultFormat': 0, + 'DefaultUpscale': False, 'Label': 'K34'}, } profilesGUI = [ "Kindle Oasis", @@ -964,16 +966,18 @@ class KCCGUI(KCC_ui.Ui_mainWindow): "Kobo Aura H2O", "Kobo Aura HD", "Kobo Aura", - "Kobo Glo HD", - "Kobo Glo", - "Kobo Mini/Touch", "Separator", "Other", "Separator", + "Kindle Touch", + "Kindle Keyboard", "Kindle DX/DXG", - "Kindle 3", "Kindle 2", "Kindle 1", + "Separator", + "Kobo Glo HD", + "Kobo Glo", + "Kobo Mini/Touch", ] statusBarLabel = QtWidgets.QLabel('<b><a href="https://kcc.iosphe.re/">HOMEPAGE</a> - <a href="https://github.' |