mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
version 5.19.0
This commit is contained in:
parent
1ddac886a4
commit
ae21888f90
@ -23,6 +23,41 @@
|
|||||||
# - title by author
|
# - title by author
|
||||||
# }}}
|
# }}}
|
||||||
|
|
||||||
|
{{{ 5.19.0 2021-05-28
|
||||||
|
|
||||||
|
:: new features
|
||||||
|
|
||||||
|
- E-book viewer: Add a preference under Scrolling behavior to reverse the tap zones used to turn pages. So tapping on the left goes forward and the right backward
|
||||||
|
|
||||||
|
|
||||||
|
:: bug fixes
|
||||||
|
|
||||||
|
- [1929862] E-book viewer: Fix regression in 5.15 that caused incorrect display of font sizes that contain a period and use absolute units
|
||||||
|
|
||||||
|
- [1929240] PDF Output: Fix font kerning issues with some TrueType fonts
|
||||||
|
|
||||||
|
- [1929267] Edit book: Fix a regression in 5.18 that broke editing/creating saved searches
|
||||||
|
|
||||||
|
- [1919025] Windows: Fix for standalone ToC Editor not working on systems where Qt WebEngine causes a crash at exit
|
||||||
|
|
||||||
|
- Windows MTP driver: When scanning an MTP device such as an Android phone ignore folders that Windows fails to enumerate instead of failing with an error
|
||||||
|
|
||||||
|
- ToC Editor: Fix a regression that broke choosing split points in some XHTML files
|
||||||
|
|
||||||
|
- [1929465] PDB Input: Fix a regression in calibre 5 that broke processing some plucker format PDB files
|
||||||
|
|
||||||
|
- Edit book: Fix sorting in spell check dialog on language broken for books that have unknown languages
|
||||||
|
|
||||||
|
- Annotations browser: Fix a typo that broke sorting for highlights
|
||||||
|
|
||||||
|
- [1909730] Annotations browser: When showing a highlight preserve paragraph boundaries for multi-paragraph highlights
|
||||||
|
|
||||||
|
- Viewer highlights panel: Fix the "Edit notes" link not saving the changes
|
||||||
|
|
||||||
|
- [1929164] E-book viewer: When using a right click/shift-click to adjust the selection, move the section boundary that is closer to the click point
|
||||||
|
|
||||||
|
}}}
|
||||||
|
|
||||||
{{{ 5.18.0 2021-05-21
|
{{{ 5.18.0 2021-05-21
|
||||||
|
|
||||||
:: new features
|
:: new features
|
||||||
|
@ -5,7 +5,7 @@ from polyglot.builtins import map, unicode_type, environ_item, hasenv, getenv
|
|||||||
import sys, locale, codecs, os, collections
|
import sys, locale, codecs, os, collections
|
||||||
|
|
||||||
__appname__ = 'calibre'
|
__appname__ = 'calibre'
|
||||||
numeric_version = (5, 18, 0)
|
numeric_version = (5, 19, 0)
|
||||||
__version__ = '.'.join(map(unicode_type, numeric_version))
|
__version__ = '.'.join(map(unicode_type, numeric_version))
|
||||||
git_version = None
|
git_version = None
|
||||||
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>"
|
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user