From ab3bba7ffbd48326633529228f93062ceffd6b45 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 26 Jan 2018 09:27:26 +0530 Subject: [PATCH] version 3.16.0 --- Changelog.yaml | 39 +++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 40 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index c60be5e2ab..60e211b55b 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,45 @@ # new recipes: # - title: +- version: 3.16.0 + date: 2018-01-26 + + new features: + - title: "Content server: Allow adding and deleting of books using the web interface" + type: major + description: "Use the + icon in the top bar of the book list to add new books and the trash icon in the top bar of the book details page to a delete a book. Note that only authenticated users are allowed to perform these actions, so you have to setup user accounts for the server to use these features." + + - title: "Allow removing the close button from tabs in the Virtual library tab bar. Right click the tab bar and choose 'Lock tabs' to do that." + + - title: "calibredb export: Add --progress option" + + - title: "Bulk metadata editing: Show progress bars to track progress of the operation" + + - title: "Content server: When downloading books from the server send both the ASCII and full Unicode file names. Browsers that support RFC 6266 can make use of the unicode file name." + + - title: "Content server: Show a warning popup on Apple devices when the user tries to search with an expression containing smart quotes, since Apple devices now automatically replace quotes with smart quotes when typing." + + bug fixes: + - title: "DOCX Output: Fix links without anchors in the input document not being converted correctly." + tickets: [1741098] + + - title: "calibredb: Fix a regression that broke reading of passwords from stdin" + + - title: "Edit book: Fix an error when saving files with filenames that cannot be encoded using the system codepage on Windows" + + - title: "Pasting metadata: Fix excluding title and authors not working" + + improved recipes: + - The Galaxy's Edge + - Orange County Register + - Danas + + new recipes: + - title: Revista Veintitres + author: Darko Miletic + + - title: Cronica + author: Darko Miletic - version: 3.15.0 date: 2018-01-05 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index a151f3a179..fb4a7edc75 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, 15, 0) +numeric_version = (3, 16, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "