mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-01-04 04:44:28 +01:00
version 3.46.0
This commit is contained in:
parent
54094a9fa7
commit
90714baef8
2 changed files with 22 additions and 1 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
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>"
|
||||
|
|
|
|||
Loading…
Reference in a new issue