version 5.29.0

This commit is contained in:
Kovid Goyal 2021-10-08 07:22:12 +05:30
parent 8461400a20
commit 6fe5398894
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 39 additions and 1 deletions

View File

@ -23,6 +23,44 @@
# - title by author
# }}}
{{{ 5.29.0 2021-10-08
:: new features
- [1945890] Allow drag and drop of books onto formats in the Tag browser to convert them to that format
- [1945891] Allow creating sorts based on multiple columns (Add the Sort action to the toolbar via Preferences->Toolbars & menus)
- Edit book: When changing a paragraph to a heading if the cursor is adjacent to a paragraph tag but not inside any tags other than body, use the adjacent tag
:: bug fixes
- [1945889] Auto adding: Run relevant plugins before reading metadata from the book. Matches behavior of manual adding
- [1945882] Content server: Fix category collapse by partition not working
- Prevent Tab from causing focus to leave the Tag browser
- Edit book: See what changed: Fix non-BMP unicode characters causing highlighting of changed words to be slightly misplaced
- PDF Output: Fix a regression that broke conversion of comics that contain 1-bit images
- Edit book: Fix pressing Ctrl+Tab inserting a tab at the start of a line instead of switching tabs
- [1945098] Fix a regression in the previous release that caused identifiers set by some plugins to not be saved in the database
- [1946342] Template language: Fix nesting composite columns sometimes failing
:: improved recipes
- Entrepreneur Magazine
- Dawn
- New York Review of Books
:: new recipes
- Various Indian news sources by Vishvas Vasuki
}}}
{{{ 5.28.0 2021-09-24
:: 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, collections.abc
__appname__ = 'calibre'
numeric_version = (5, 28, 0)
numeric_version = (5, 29, 0)
__version__ = '.'.join(map(unicode_type, numeric_version))
git_version = None
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>"