version 3.38.0

This commit is contained in:
Kovid Goyal 2019-01-18 07:32:07 +05:30
parent 60e3bece0b
commit 22ff7be0ee
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 49 additions and 1 deletions

View File

@ -20,6 +20,54 @@
# new recipes:
# - title:
- version: 3.38.0
date: 2019-01-18
new features:
- title: "Tag browser: When using the Find function have unaccented characters match their accented equivalents, if the setting for it is set in Preferences->Searching"
- title: "DOCX Input: When converting indices, put each sub-entry on its own line."
tickets: [1811611]
- title: "Edit book: Insert hyperlink: Add history for the template"
- title: "Edit book: Insert hyperlink: Add a few more variables for the link template: _SOURCE_FILENAME_, _DEST_FILENAME_ and _ANCHOR_"
bug fixes:
- title: "Catalogs: Set the language of created catalogs to the calibre interface language instead of English"
tickets: [1810936]
- title: "DOCX Input: Do not display section breaks that have a numbering style applied to them."
tickets: [1811611]
- title: "Content server: Fix listening on :: not also listening on IPv4 interfaces on Windows"
- title: "DOCX Output: Fix heading styles that have the same font size as body text getting incorrect font sizes after conversion."
tickets: [1811616]
- title: "EPUB/MOBI Catalogs: Fix prefix rules not working when calibre UI language is something other than English"
- title: "EPUB/MOBI Catalogs: Fix exclusion by tag not working for tags that have spaces in them"
- title: "Subset fonts: Fix error when trying to subset unicode characters that require two UTF-16 code points on Windows."
tickets: [1811224]
- title: "Content server: Fix option to restrict displayed user field not working in the /opds view"
- title: "Tag browser: Fix incorrect icon for user categories."
tickets: [1810217]
- title: "PDF Output: Fix conversion failing when fonts with non-English names are used."
tickets: [1812218]
improved recipes:
- Chicago Tribune
- New York Times Book Review
new recipes:
- title: Nature
author: Jose Ortiz
- version: 3.37.0
date: 2019-01-04

View File

@ -6,7 +6,7 @@ from polyglot.builtins import map
import sys, locale, codecs, os, importlib, collections
__appname__ = u'calibre'
numeric_version = (3, 37, 0)
numeric_version = (3, 38, 0)
__version__ = u'.'.join(map(unicode, numeric_version))
__author__ = u"Kovid Goyal <kovid@kovidgoyal.net>"