version 3.41.1

This commit is contained in:
Kovid Goyal 2019-04-19 13:54:51 +05:30
parent fc5fb1ddf6
commit 85eb72e59e
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 6 additions and 3 deletions

View File

@ -20,7 +20,7 @@
# new recipes:
# - title:
- version: 3.41.0
- version: 3.41.1
date: 2019-04-19
new features:
@ -43,7 +43,7 @@
- title: "Manage authors dialog: Add an entry to the right click menu to show books by the current author in the main book list."
tickets: [1821992]
- title: "Lots of internal changes to calibre's codebase to prepare it for python 3 support."
- title: "Lots of internal changes to calibre's codebase to prepare it for Python 3 support."
bug fixes:
- title: "Content server: Fix links to external resources in book details and the viewer not working"
@ -82,6 +82,9 @@
- title: "Adding books: When adding with auto-merge and auto-convert enabled, also run conversions for books into which the added files are merged."
tickets: [1822018]
- title: "version 3.41.1 fixes a regresion in the previous release that broke connecting to Calibre Companion and similar apps wirelessly"
tickets: [1825472]
improved recipes:
- Il Post
- Le Monde Edition Abonnes Papier

View File

@ -6,7 +6,7 @@ from polyglot.builtins import map, unicode_type
import sys, locale, codecs, os, importlib, collections
__appname__ = u'calibre'
numeric_version = (3, 41, 0)
numeric_version = (3, 41, 1)
__version__ = u'.'.join(map(unicode_type, numeric_version))
__author__ = u"Kovid Goyal <kovid@kovidgoyal.net>"