diff --git a/README.md b/README.md index a8eeaaaf..795ebd21 100644 --- a/README.md +++ b/README.md @@ -138,7 +138,7 @@ The app relies and includes the following scripts/binaries: ## SAMPLE FILES CREATED BY KCC * [Kindle Paperwhite](http://kcc.vulturis.eu/Samples/Ubunchu!-KPW.mobi) * [Kindle](http://kcc.vulturis.eu/Samples/Ubunchu!-K345.mobi) -* [Kindle DX](http://kcc.vulturis.eu/Samples/Ubunchu!-KDX.mobi) +* [Kindle DX/DXG](http://kcc.vulturis.eu/Samples/Ubunchu!-KDX.mobi) * [Kindle Fire](http://kcc.vulturis.eu/Samples/Ubunchu!-KF.mobi) * [Kindle Fire HD](http://kcc.vulturis.eu/Samples/Ubunchu!-KFHD.mobi) * [Kindle Fire HD 8.9"](http://kcc.vulturis.eu/Samples/Ubunchu!-KFHD8.mobi) @@ -255,13 +255,15 @@ The app relies and includes the following scripts/binaries: * Hotfixed crash occurring on OS with Russian locale ####3.3: -* Created MOBI files are not longer marked as _Personal_ on newer Kindle models * Margins are now automatically omitted in Panel View mode -* Layout of panels in Panel View mode is now automatically adjusted to content -* Support for Virtual Panel View was removed * Margin color fill is now autodetected +* Created MOBI files are not longer marked as _Personal_ on newer Kindle models +* Layout of panels in Panel View mode is now automatically adjusted to content +* Fixed Kindle 2/DX/DXG profiles - no more blank pages +* All Kindle Fire profiles now support hiqh quality Panel View * Added support of 7z/CB7 files * Added Kindle Fire HDX profile +* Support for Virtual Panel View was removed * Profiles for Kindle Keyboard, Touch and Non-Touch are now merged * Windows release is now bundled with UnRAR and 7za * Small GUI tweaks diff --git a/kcc/image.py b/kcc/image.py index 0332b2d8..97c97b88 100755 --- a/kcc/image.py +++ b/kcc/image.py @@ -81,12 +81,12 @@ def __init__(self): ] Profiles = { - 'K1': ("Kindle 1", (600, 800), Palette4, 1.8, (900, 1200)), - 'K2': ("Kindle 2", (600, 800), Palette15, 1.8, (900, 1200)), + 'K1': ("Kindle 1", (600, 670), Palette4, 1.8, (900, 1005)), + 'K2': ("Kindle 2", (600, 670), Palette15, 1.8, (900, 1005)), 'K345': ("Kindle", (600, 800), Palette16, 1.8, (900, 1200)), 'KHD': ("Kindle Paperwhite", (758, 1024), Palette16, 1.8, (1137, 1536)), - 'KDX': ("Kindle DX", (824, 1200), Palette15, 1.8, (1236, 1800)), - 'KDXG': ("Kindle DXG", (824, 1200), Palette16, 1.8, (1236, 1800)), + 'KDX': ("Kindle DX", (824, 1000), Palette15, 1.8, (1236, 1500)), + 'KDXG': ("Kindle DXG", (824, 1000), Palette16, 1.8, (1236, 1500)), 'KF': ("Kindle Fire", (600, 1024), PalleteNull, 1.0, (900, 1536)), 'KFHD': ("K. Fire HD 7\"", (800, 1280), PalleteNull, 1.0, (1200, 1920)), 'KFHD8': ("K. Fire HD 8.9\"", (1200, 1920), PalleteNull, 1.0, (1800, 2880)),