From 4c067646844a52e9524d8b1e8714a6a27b997679 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 2 May 2020 09:09:39 +0530 Subject: [PATCH] version 4.15.0 --- Changelog.yaml | 43 +++++++++++++++++++++++++++++++++++++++- src/calibre/constants.py | 2 +- 2 files changed, 43 insertions(+), 2 deletions(-) diff --git a/Changelog.yaml b/Changelog.yaml index 777dd38e5e..a9a1a9570f 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -5,7 +5,7 @@ # for important features/bug fixes. # Also, each release can have new and improved recipes. -# - version: 4.?.? +# - version: 4.?.0 # date: 2020-??-?? # # new features: @@ -20,6 +20,47 @@ # new recipes: # - title: +- version: 4.15.0 + date: 2020-05-02 + + new features: + - title: "Viewer: Improve the interface for changing font sizes" + + - title: "Viewer: Add a keyboard shortcut (Ctrl+Alt+b) for adding a bookmark" + + bug fixes: + - title: "Bulk metadata edit: Fix a regression causing scrollbars to not appear in Custom metadata tab." + tickets: [1875090] + + - title: "Viewer: Fix a regression that broke searching in flow mode." + tickets: [1874877] + + - title: "BibTeX Catalog: Dont output comment describing the catalog as Zotero fails to process it." + tickets: [1876302] + + - title: "Linux: Fix uninstaller not working on Linux distros that have no python symlink." + tickets: [1876164] + + - title: "Viewer: Fix zoom step size setting ignored." + tickets: [1875840] + + - title: "Viewer: Fix text that has font sizes specified using keywords not being scaleable by the viewer's font size controls." + tickets: [1875021] + + - title: "Viewer: Fix LRF files not opening" + + - title: "MOBI metadata: When reading author sort from MOBI files, construct the final value from all author fields" + + - title: "macOS: hide accelerator key underlines since they dont work anyway as Apple does not believe in them" + + - title: "macOS: Fix keyboard shortcuts for select all, copy and paste not working in file dialogs." + tickets: [1874499] + + improved recipes: + - The Nation + - Animal Politico + + - version: 4.14.0 date: 2020-04-23 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index c485668132..206ca0c318 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, 14, 0) +numeric_version = (4, 15, 0) __version__ = '.'.join(map(unicode_type, numeric_version)) git_version = None __author__ = "Kovid Goyal "