From 9796c9f80c0589055df6b6caba51cd553f94d053 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 30 Aug 2019 06:35:07 +0530 Subject: [PATCH] version 3.47.0 --- Changelog.yaml | 49 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 50 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index 1d2e8ab034..a4bcf32a0b 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,55 @@ # new recipes: # - title: +- version: 3.47.0 + date: 2019-08-30 + + new features: + - title: "HTML metadata: Support reading identifiers from HTML files" + + - title: "Preferences->Ignored devices: Add a button to reset the list of devices that calibre is allowed to manage" + + bug fixes: + - title: "macOS: Fix a regression that could cause a crash on exit if any books were deleted while calibre was running." + tickets: [1839044] + + - title: "Content server OPDS: Handle form encoded search queries." + tickets: [1841464] + + - title: "Fix an error when adding files from clipboard and file is of unknown type" + + - title: "Speed up restoring original format by doing a rename rather than a copy and re-add." + tickets: [1839733] + + - title: "EPUB 3: Fix setting metadata in EPUB 3 files without a title not working" + + - title: "PML Input: Modernize the generated HTML a bit." + tickets: [1839689] + + - title: "HTMLZ Output: Fix svg content from HTML files that contain only SVG being removed." + tickets: [1839522] + + - title: "Content server: Fix OPDS feed for category based browsing listing restricted books, even though these books cannot be actually downloaded." + tickets: [1839173] + + - title: "Preserve tag order when reading metadata from MOBI files" + + - title: "Add missing 'language' field to ComicBookInfo metadata for .CBR files." + + - title: "LIT Output: Fix regression in 3.41 caused by py3 porting that broke conversion of some files to LIT." + tickets: [1837561] + + improved recipes: + - Esquire + - Foreign Affairs + - derStandaard + - Globe and Mail + - CNET News + - National Geographic + - New Yorker + - Chicago Tribune + + - version: 3.46.0 date: 2019-07-19 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 578dff65da..753fa28e97 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -6,7 +6,7 @@ from polyglot.builtins import map, unicode_type, environ_item, hasenv, getenv import sys, locale, codecs, os, importlib, collections __appname__ = 'calibre' -numeric_version = (3, 46, 0) +numeric_version = (3, 47, 0) __version__ = '.'.join(map(unicode_type, numeric_version)) git_version = None __author__ = "Kovid Goyal "