version 3.4.0

This commit is contained in:
Kovid Goyal 2017-07-14 08:32:22 +05:30
parent 829e6c72a0
commit 47cad11d51
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 32 additions and 1 deletions

View File

@ -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

View File

@ -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 <kovid@kovidgoyal.net>"