From 47cad11d51ba174ad987acc7d2de8f9b61932076 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 14 Jul 2017 08:32:22 +0530 Subject: [PATCH] version 3.4.0 --- Changelog.yaml | 31 +++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 32 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index 180c640216..dcadecf9cd 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,37 @@ # new recipes: # - title: +- version: 3.4.0 + date: 2017-07-14 + + new features: + - title: "Edit book: Allow exporting all selected files to the computer from the 'File browser' by right clicking and choosing 'Export selected files'" + + - title: "Server: When returning to the search page, remember the last used state of the Tag browser" + + - title: "Template language: Allow the in_list() functions to return different values depending on what is found" + + - title: "Add a configurable shortcut to move the focus from Quickview to the book list" + + bug fixes: + - title: "Conversion: When inserting the publication year in the metadata jacket, do so in the local time zone, so it matches what is displayed in the main calibre program." + tickets: [1703439] + + - title: "Server OPDS feeds: Fix incorrect counts in letter categories when there are lowercase names." + tickets: [1703251] + + - title: "Edit book: Fix 'Show details' button not visible when doing 'Replace all' rather than 'Count all'" + + - title: "Nook driver: Remove the % character from filenames sent to the Nook." + tickets: [1703284] + + - title: "Fix calibre startup crash caused by Quickview when the applied virtual library is empty (has no books)." + + improved recipes: + - FOX News + - Private Eye + + - version: 3.3.0 date: 2017-07-07 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 13b2644266..a920549c72 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -6,7 +6,7 @@ from future_builtins import map import sys, locale, codecs, os, importlib, collections __appname__ = u'calibre' -numeric_version = (3, 3, 0) +numeric_version = (3, 4, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "