version 0.8.33

This commit is contained in:
Kovid Goyal 2011-12-30 09:04:49 +05:30
parent 890d4a6ad2
commit 407be8da53
2 changed files with 57 additions and 1 deletions

View File

@ -19,6 +19,62 @@
# new recipes:
# - title:
- version: 0.8.33
date: 2011-12-30
new features:
- title: "LIT Input: Switch to non-recursive algorithm, to allow conversion of files with deeply nested markup."
tickets: [909535]
- title: "Content server: Do not show the original_* formats in the mobile interface. Also upgrade to the latest CherryPy release."
- title: "E-book viewer: Add option in viewer preferences to control how much the font size is changed when you click the make fonts bigger/smaller buttons."
tickets: [908980]
- title: "E-book viewer: Allow changing font size via Ctrl+Mouse wheel"
tickets: [908975]
- title: "Kobo driver: Hide previews and recommendations from the book list. You can customize the Kobo plugin if you would like to see them via Preferences->Plugins"
bug fixes:
- title: "Copy to library: Fix title sort not being copied"
- title: "PDF Output: Add custom size conversion option to the GUI (it was only present on the command line before)"
- title: "Add missing --keep-ligatures option to the ebook-convert command line"
tickets: [909182]
- title: "Fix rendering of non ascii characters in generated masthead images when downloading news for the Kindle"
- title: "Linux binary: Disable qt-sp-api as it causes crashes/performance issues on various distros"
- title: "E-book viewer: Ensure that reference mode highlighting is removed from the book when reference mode is closed."
tickets: [908982]
- title: "Fix unable to load plugins from files on GNOME/XFCE desktops"
- title: "Fix regression that broke customizing toolbars on non English calibre installs"
- title: "Conversion pipeline: Disable HTML 5 parsing if it results in deeply nested trees."
tickets: [908818]
- title: "Do not loose position in book list on device connection/sync, if a search is active."
tickets: [908553]
- title: "Fix regression in 0.8.32 that broke deleting books if the path to the library contained non-ascii characters on linux"
tickets: [908068]
improved recipes:
- Echo Online
- La Razon
new recipes:
- title: NYTimes Global
author: Krittika Goyal
- title: Grantland
author: Barty
- version: 0.8.32
date: 2011-12-23

View File

@ -4,7 +4,7 @@ __license__ = 'GPL v3'
__copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net'
__docformat__ = 'restructuredtext en'
__appname__ = u'calibre'
numeric_version = (0, 8, 32)
numeric_version = (0, 8, 33)
__version__ = u'.'.join(map(unicode, numeric_version))
__author__ = u"Kovid Goyal <kovid@kovidgoyal.net>"