From f4dbe46f3b3b78e9e9d527dd5fcad6f7bd4c8d4d Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 10 Feb 2017 08:39:41 +0530 Subject: [PATCH] version 2.79.0 --- Changelog.yaml | 37 +++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 38 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index cc051419bd..4d69c0504c 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,43 @@ # new recipes: # - title: +- version: 2.79.0 + date: 2017-02-10 + + new features: + - title: "Windows: Make recently opened books show up in the jump lists for the standalone viewer and editor programs" + + - title: "OS X/Linux: Show an informational popup message when an Android device is plugged in that needs the user to tap Allow for the connection to work." + + - title: "Conversion: Log options that are different from the defaults separately, for easy reference" + + bug fixes: + - title: "Conversion: Fix regression that broke conversion of some epub files when using the 'Remove first image' option." + tickets: [1660699] + + - title: "Get Books: Update Kobo plugin for website changes" + + - title: "Windows MTP driver: Fix error when enumerating device storage not being reported during debug device detection" + + - title: "Tag Browser: When dragging and dropping a book onto a series increment the series number." + tickets: [1661588] + + - title: "Fix crash when generating covers with Qt 5.8 on linux" + + - title: "Fix Get Books result list and jobs list not being populated on Qt 5.8" + + - title: "Fix importing rules in the coloring/icon rules dialog not enabling the apply button" + + improved recipes: + - Strange Horizons + - Wall Street Journal + - Bangkok Post + - The Atlantic + - NYTimes + - LA Times + - New Yorker + - The Straits Times + - version: 2.78.0 date: 2017-01-27 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 386faaea89..3952b06da7 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 = (2, 78, 0) +numeric_version = (2, 79, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "