From 521af386b32152e5adc8ad2bfee178cdd3ac8148 Mon Sep 17 00:00:00 2001 From: bookfere Date: Wed, 27 Mar 2024 17:19:16 +0800 Subject: [PATCH] Upgraded the plugin version to 2.3.3. --- CHANGELOG.md | 14 ++++++++++++++ __init__.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 72d6229..58e9bef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +## v2.3.3 + +Added features and fixed bugs as follows: + +1. feat: Added Claude as a translation engine. #232 +2. feat: Optimized adding translation feature. #244 +3. feat: Added Turkish UI translation. Credit to @DogancanYr +4. feat: Show details while extracting the content of an ebook. +5. feat: Support choosing encoding when translating plain text. +6. fix: Fixed the bug causing output errors on Windows. #242 +7. fix: Fixed the bug preventing cache deletion on Windows. #246 + +--- + ## v2.3.2 Fixed bugs as follows: diff --git a/__init__.py b/__init__.py index db16f9f..56fba00 100644 --- a/__init__.py +++ b/__init__.py @@ -21,7 +21,7 @@ class EbookTranslator(InterfaceActionBase): supported_platforms = ['windows', 'osx', 'linux'] identifier = 'ebook-translator' author = 'bookfere.com' - version = (2, 3, 2) + version = (2, 3, 3) __version__ = 'v' + '.'.join(map(str, version)) description = _('A Calibre plugin to translate ebook into a specified ' 'language (optionally keeping the original content).')