diff --git a/Changelog.yaml b/Changelog.yaml index b8a731575c..f9661b1ff6 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -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 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 6a50502541..82f39d82a7 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -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 "