mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-31 23:55:40 +01:00
version 3.24.1
This commit is contained in:
parent
674615e1d0
commit
b3fc627990
2 changed files with 4 additions and 2 deletions
|
|
@ -20,7 +20,7 @@
|
|||
# new recipes:
|
||||
# - title:
|
||||
|
||||
- version: 3.24.0
|
||||
- version: 3.24.1
|
||||
date: 2018-05-25
|
||||
|
||||
new features:
|
||||
|
|
@ -46,6 +46,8 @@
|
|||
tickets: [1769442]
|
||||
|
||||
bug fixes:
|
||||
- title: "Version 3.24.1 fixes a regression in the 3.24 in the editor that caused syncing between the editor and the Preview panel/Live CSS panel to not work correctly"
|
||||
|
||||
- title: "PDF Output: Strip zero-width space characters from the text as their presence prevents searching from working"
|
||||
|
||||
- title: "DOCX Output: Fix <pre> tags not being converted correctly."
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
import sys, locale, codecs, os, importlib, collections
|
||||
|
||||
__appname__ = u'calibre'
|
||||
numeric_version = (3, 24, 0)
|
||||
numeric_version = (3, 24, 1)
|
||||
__version__ = u'.'.join(map(unicode, numeric_version))
|
||||
__author__ = u"Kovid Goyal <kovid@kovidgoyal.net>"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue