mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-06-23 15:30:45 -04:00
version 3.45.0
This commit is contained in:
parent
081f4989b7
commit
1b0ce5c17f
@ -20,6 +20,77 @@
|
|||||||
# new recipes:
|
# new recipes:
|
||||||
# - title:
|
# - title:
|
||||||
|
|
||||||
|
- version: 3.45.0
|
||||||
|
date: 2019-07-12
|
||||||
|
|
||||||
|
new features:
|
||||||
|
- title: "Content server: Allow adding or removing formats to a book via the edit metadata page."
|
||||||
|
tickets: [1831304]
|
||||||
|
|
||||||
|
- title: "ToC Editor: Allow user to control whether duplicate headings are included or not when generating ToC from headings"
|
||||||
|
|
||||||
|
- title: "Advanced search dialog: Remember the last focused field in the search by title/authors tab"
|
||||||
|
|
||||||
|
- title: "Conversion: Performance improvement for books that have many HTML files that all include the same CSS stylesheets"
|
||||||
|
|
||||||
|
- title: "Kobo driver: Add options to more precisely control the generation of cover images, to reduce size and enhance quality"
|
||||||
|
|
||||||
|
- title: "Support subtitle in Douban metadata plugin"
|
||||||
|
|
||||||
|
bug fixes:
|
||||||
|
- title: "Linux: Workaround for bug in recent Linux kernels that causes the Kindle to eject after calibre connects to it."
|
||||||
|
tickets: [1834641]
|
||||||
|
|
||||||
|
- title: "DOCX Input: When autodetecting the Table of Contents from headings, work even if the headings use numbering."
|
||||||
|
tickets: [1834661]
|
||||||
|
|
||||||
|
- title: "EPUB Output: If there are no guide elements do not output an empty guide tag. Makes epubcheck happy."
|
||||||
|
tickets: [1835560]
|
||||||
|
|
||||||
|
- title: "Workaround for sortByColumn being partially broken in Qt 5.13.0"
|
||||||
|
tickets: [1834989]
|
||||||
|
|
||||||
|
- title: "Fix a regression that broke the per_lang_title_sort_articles tweak."
|
||||||
|
tickets: [1834329]
|
||||||
|
|
||||||
|
- title: "Sending email: Fix an error on some windows machines with non-ASCII hostnames"
|
||||||
|
|
||||||
|
- title: "EPUB Output: When generating EPUB 3 preserve the old style meta tag to identify the cover as Google Play Books does not recognize EPUB 3 cover markup."
|
||||||
|
tickets: [1832660]
|
||||||
|
|
||||||
|
- title: "Create catalog: Fix handling of the tilde character in BiBTeX catalogs."
|
||||||
|
tickets: [1832726]
|
||||||
|
|
||||||
|
- title: "News downloads: Fix incorrect font sizes for some text in the index pages."
|
||||||
|
tickets: [1832628]
|
||||||
|
|
||||||
|
- title: 'Comic Input: Fix incorrect processing of comics with pages that have the same file names in different folders when using the "No process" option.'
|
||||||
|
tickets: [1831487]
|
||||||
|
|
||||||
|
- title: "CHM Input: Fix a regression that broke processing of some CHM files."
|
||||||
|
tickets: [1831511]
|
||||||
|
|
||||||
|
- title: "Edit book: When auto-closing tags on typing </, fix occasionally incorrect tag being closed in large files because syntax highlighting has not completed"
|
||||||
|
|
||||||
|
- title: "Kobo driver: Fix for ContentType not being defined error for extension-less non kepub files on a Kobo"
|
||||||
|
|
||||||
|
- title: "Content server: Book details page: Do not display empty rows for undefined dates"
|
||||||
|
|
||||||
|
- title: "Get books: Update Google books and amazon plugins for markup changes"
|
||||||
|
|
||||||
|
- title: "Edit book: Text search: Fix searching for a single character backwards not working"
|
||||||
|
|
||||||
|
|
||||||
|
improved recipes:
|
||||||
|
- Art and Letters Daily
|
||||||
|
- The Wall Street Journal
|
||||||
|
- Barrons
|
||||||
|
- Newsweek
|
||||||
|
|
||||||
|
new recipes:
|
||||||
|
- title: "Aviation International News"
|
||||||
|
author: Jose Ortiz
|
||||||
|
|
||||||
- version: 3.44.0
|
- version: 3.44.0
|
||||||
date: 2019-05-31
|
date: 2019-05-31
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ from polyglot.builtins import map, unicode_type, environ_item, hasenv, getenv
|
|||||||
import sys, locale, codecs, os, importlib, collections
|
import sys, locale, codecs, os, importlib, collections
|
||||||
|
|
||||||
__appname__ = 'calibre'
|
__appname__ = 'calibre'
|
||||||
numeric_version = (3, 44, 0)
|
numeric_version = (3, 45, 0)
|
||||||
__version__ = '.'.join(map(unicode_type, numeric_version))
|
__version__ = '.'.join(map(unicode_type, numeric_version))
|
||||||
git_version = None
|
git_version = None
|
||||||
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>"
|
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user