version 2.13.0

This commit is contained in:
Kovid Goyal 2014-12-19 08:33:58 +05:30
parent b17ff26950
commit 99b8a76b00
2 changed files with 54 additions and 1 deletions

View File

@ -20,6 +20,59 @@
# new recipes: # new recipes:
# - title: # - title:
- version: 2.13.0
date: 2014-12-19
new features:
- title: "Driver for the new CYBOOK MUSE ebook reader"
tickets: [1398672]
- title: "Edit metadata dialog: Allow editing identifiers in a dedicated window by right clicking on the identifiers edit box."
tickets: [1400925]
- title: "Allow generating a cover from metadata by right clicking the cover are in the book details panel also."
tickets: [1401972]
- title: "Content server: Server KEPUB files with the extension kepub.epu when connecting to the browser on Kobo devices"
- title: "Kobo driver: Add support for new firmware version 3.12"
- title: "Edit metadata dialog: Add a keyboard shortcut to swap title and author [Alt+Down]"
tickets: [1397701]
bug fixes:
- title: "Save to disk: Fix a regression that prevented saving of files into the root of a drive on Windows"
- title: "FB2 Input: Add support for FB2 books that incorrectly use the FictionBook 2.1 XML schema."
tickets: [1401915]
- title: "Fix command line arguments not being ignored on windows and linux when restarting calibre."
tickets: [1401991]
- title: "E-book viewer: Fix sorting of bookmarks by position in book not working on windows and OS X."
tickets: [1402152]
- title: "Kobo driver: Fix bookmarks not being deleted from device when deleting books on the device"
tickets: [1401502]
- title: "Edit book: Fix auto-complete of closing tag not working when typing the closing tag at just before a word (the word would become the closing tag name)."
- title: "calibredb: Fix list --for-machine ignoring custom columns"
tickets: [1401085]
- title: "Edit book/Book polishing: Fix subsetting of fonts whose @font-face rules use the local() or format() CSS functions not working"
- title: "Edit book: Fix regression that broke typing of XML entities for ampersand, less-than and greater-than"
- title: "Edit Book: Do not change the current selected text when right clicking on a mis-spelled word"
improved recipes:
- The Australian
- The New Yorker
- The Guardian
- Ars Technica
- version: 2.12.0 - version: 2.12.0
date: 2014-11-28 date: 2014-11-28

View File

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