From e271b4564aa395eb463cb17dcbdc85ddb99f7c9c Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 27 Dec 2019 09:31:11 +0530 Subject: [PATCH] version 4.7.0 --- Changelog.yaml | 58 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 59 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index 47b3bd6ddf..521a48ea07 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,64 @@ # new recipes: # - title: +- version: 4.7.0 + date: 2019-12-26 + + new features: + - title: "macOS: Use transient scrollbars unless they are disabled in system preferences" + + - title: "Viewer toolbar: Add actions for next and previous section. They are not added to the toolbar by default, customize it to add them." + + - title: "Viewer: Add an option to keep the toolbar visible in full screen mode (Viewer Preferences->Miscellaneous)" + + - title: "Viewer: Allow modifying the current selection using Ctrl+Shift+Arrow." + tickets: [1855942] + + - title: "Book details: Add an option in Preferences->Look & feel->Book details to show a heading for the comments in the book details panel" + tickets: [1855942] + + - title: "Edit book: Spell check: Ignore soft hyphens in words" + + - title: "Viewer: In multiple pages per screen mode, When paging back to a chapter we have just paged forward from return to the exact position we left from in terms of number of blank trailing pages displayed." + tickets: [1856472] + + - title: "Viewer: Add a setting under Preferences->Colors to control when the viewer will override all book colors or not." + + bug fixes: + - title: "Viewer: Fix flick scrolling in flow mode jumping to next chapter." + tickets: [1856398] + + - title: "Windows: Possible fix for some windows appearing off screen on multi-monitor setups" + tickets: [1857651] + + - title: "macOS: Fix PDF Output not working when running ebook-convert via symlink on the command line." + tickets: [1857377] + + - title: "PDF Output: Ignore upto 8 byte glyph data size mismatches when merging identical glyphs." + tickets: [1857268] + + - title: "Edit Book: Spell Check: Fix words surrounded by narrow non-breaking spaces being incorrectly detected as mis-spelled" + + - title: "Get books: Update various Polish language stores" + + - title: "macOS: Fix drag and drop to re-arrange items in the viewer toolbar not working" + + - title: "PDF Output: When an inline image is placed alone inside a block tag, ensure that it is not split over two pages." + + - title: "ToC editor: Fix generate from links not working correctly when links have no fragments." + tickets: [1856395] + + - title: "PDF Output: Dont dedup images that cannot be uncompressed" + tickets: [1856564] + + - title: "Advanced search dialog: Fix an error when closing dialog if on the second tab and no field is focused" + + improved recipes: + - Global Times + - London Review of Books + - The Telegraph (UK) + - The Economist + - version: 4.6.0 date: 2019-12-13 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index e87e08a988..eaafd74ce9 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, a import sys, locale, codecs, os, importlib, collections __appname__ = 'calibre' -numeric_version = (4, 6, 0) +numeric_version = (4, 7, 0) __version__ = '.'.join(map(unicode_type, numeric_version)) git_version = None __author__ = "Kovid Goyal "