version 3.46.0

This commit is contained in:
Kovid Goyal 2019-07-19 08:49:21 +05:30
parent 54094a9fa7
commit 90714baef8
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 22 additions and 1 deletions

View File

@ -20,6 +20,27 @@
# new recipes:
# - title:
- version: 3.46.0
date: 2019-07-19
bug fixes:
- title: "Manage tags dialog: When searching for a tag also search the \"Was\" column to see if the original tag name matches."
tickets: [1836813]
- title: "Windows: Fix calibre-server --manage-users not working correctly"
- title: "MOBI Input: Fix conversion of MOBI files with malformed markup and embedded <guide> tags not working."
tickets: [1836548]
- title: "Edit book: Allow the search expression history to remember very short terms and also preserve leading and trailing whitespace."
tickets: [1836559]
- title: "Fix a regression in 3.45 that broke conversion of SVG images when converting to formats such as MOBI that do not support SVG."
tickets: [1836463]
- title: "Fix a regression in 3.45 that broke parsing of old-style .py config files"
- version: 3.45.2
date: 2019-07-12

View File

@ -6,7 +6,7 @@ from polyglot.builtins import map, unicode_type, environ_item, hasenv, getenv
import sys, locale, codecs, os, importlib, collections
__appname__ = 'calibre'
numeric_version = (3, 45, 2)
numeric_version = (3, 46, 0)
__version__ = '.'.join(map(unicode_type, numeric_version))
git_version = None
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>"