version 5.13.0

This commit is contained in:
Kovid Goyal 2021-03-10 08:18:41 +05:30
parent f679aad9a3
commit 6730e8f748
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
3 changed files with 27 additions and 2 deletions

View File

@ -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

View File

@ -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 <kovid@kovidgoyal.net>"

View File

@ -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