version 3.42.0

This commit is contained in:
Kovid Goyal 2019-04-29 14:13:23 +05:30
parent 1fe67d919b
commit 61a8db8988
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 38 additions and 1 deletions

View File

@ -20,6 +20,43 @@
# new recipes: # new recipes:
# - title: # - title:
- version: 3.42.0
date: 2019-04-30
bug fixes:
- title: "Conversion: Transform styles: When using regular expressions fix substitution groups not working."
tickets: [1825764]
- title: "Fix a regression in the previous release that caused the conversion of HTML to text in comments when output to catalogs or converting downloaded metadata to behave slightly differently."
tickets: [1826654]
- title: "Edit book: Fix beautify not handling <colgroup> and <th> tags correctly."
tickets: [1826631]
- title: "DOCX Input: Fix cross-references using the 'fldSimple' markup not being recognized by calibre."
- title: "EPUB/MOBI Catalogs: Fix a regression in the previous release that caused ampersands and middle-dots to appear as HTML entities in the output."
tickets: [1826127]
- title: "Prevent a malformed tweaks.json file from stopping calibre startup"
- title: "Fix a regression that broke completion for ebook-convert"
- title: "News fetching: Fix a regression that broke removal of attributes/javascript/srcset because of bugs in the new BeautifulSoup"
- title: "TXT Output: Fix Vietnamese  character being stripped from output."
tickets: [1825770]
- title: "E-book viewer: Fix specifying a non-existen location via --open-at causing viewer to hang"
improved recipes:
- Global Times
- Corriere della Serra
new recipes:
- title: Magyar Nemzet
author: pofa
- version: 3.41.3 - version: 3.41.3
date: 2019-04-19 date: 2019-04-19

View File

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