From 6730e8f7487ad2a9705c01b4091c4af95b4da625 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 10 Mar 2021 08:18:41 +0530 Subject: [PATCH] version 5.13.0 --- Changelog.txt | 25 +++++++++++++++++++++++++ src/calibre/constants.py | 2 +- src/calibre/gui2/tweak_book/main.py | 2 +- 3 files changed, 27 insertions(+), 2 deletions(-) diff --git a/Changelog.txt b/Changelog.txt index ae7033f38e..f912cbf91b 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -23,6 +23,31 @@ # - title by author # }}} +{{{ 5.13.0 2021-03-10 + +:: new features + +- [1917967] E-book Viewer: Allow editing the current book by pressing Ctrl+Alt+e or adding a button for it to the viewer tool bar + +- Edit book: Add a command line flag to allow selecting the specified text when opening a book + +- [1917363] Edit metadata dialog: When trimming covers, show the size of the current trim region + +:: bug fixes + +- Fix a regression in the previous release that broke sending of emails with text longer than 900 characters + +- E-book viewer: Fix using keyboard to extend selection not turning pages + +- [1918030] Fix searching for items from the Manage dialog not working correctly + +- [1917386] PDF input: Replace paragraph separator characters with spaces + +:: improved recipes +- The Conversation + +}}} + {{{ 5.12.0 2021-02-26 :: new features diff --git a/src/calibre/constants.py b/src/calibre/constants.py index ac7e464060..ae4acd5ce6 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -5,7 +5,7 @@ from polyglot.builtins import map, unicode_type, environ_item, hasenv, getenv import sys, locale, codecs, os, collections __appname__ = 'calibre' -numeric_version = (5, 12, 0) +numeric_version = (5, 13, 0) __version__ = '.'.join(map(unicode_type, numeric_version)) git_version = None __author__ = "Kovid Goyal " diff --git a/src/calibre/gui2/tweak_book/main.py b/src/calibre/gui2/tweak_book/main.py index d89d4d339e..4b06b1d9c3 100644 --- a/src/calibre/gui2/tweak_book/main.py +++ b/src/calibre/gui2/tweak_book/main.py @@ -34,7 +34,7 @@ files inside the book which will be opened for editing automatically. ) ) setup_gui_option_parser(parser) - parser.add_option('--select-text', default=None, help=_('The text to select on open')) + parser.add_option('--select-text', default=None, help=_('The text to select in the book when it is opened for editing')) return parser