From 7120c76025bfbdf3514a2548057e0ea0fdd5cb07 Mon Sep 17 00:00:00 2001 From: Paweł Jastrzębski Date: Thu, 7 Mar 2019 08:38:22 +0100 Subject: Updated changelog --- CHANGELOG.md | 5 +++++ kindlecomicconverter/shared.py | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d59bf27..1db386c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # CHANGELOG #### 5.5.0: +* Added support for WebP format +* Added profiles for Kindle Paperwhite 4 and Kobo Forma +* All archives are now handled by 7z +* Removed MCD support +* Fixed multiple smaller issues #### 5.4.5: * Fixed EPUB output for non-Kindle devices diff --git a/kindlecomicconverter/shared.py b/kindlecomicconverter/shared.py index d2a358f..20308ac 100644 --- a/kindlecomicconverter/shared.py +++ b/kindlecomicconverter/shared.py @@ -87,12 +87,12 @@ def sanitizeTrace(traceback): return ''.join(format_tb(traceback))\ .replace('C:/projects/kcc/', '')\ .replace('c:/projects/kcc/', '')\ - .replace('C:/python37-x64/', '')\ - .replace('c:/python37-x64/', '')\ + .replace('C:/python36-x64/', '')\ + .replace('c:/python36-x64/', '')\ .replace('C:\\projects\\kcc\\', '')\ .replace('c:\\projects\\kcc\\', '')\ - .replace('C:\\python37-x64\\', '')\ - .replace('c:\\python37-x64\\', '') + .replace('C:\\python36-x64\\', '')\ + .replace('c:\\python36-x64\\', '') # noinspection PyUnresolvedReferences -- cgit 1.4.1