diff --git a/Changelog.yaml b/Changelog.yaml index a26c248c72..e3f93c68a1 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,49 @@ # new recipes: # - title: +- version: 1.19.0 + date: 2014-01-10 + + new features: + - title: "Edit book: A new tool to insert special characters into the text, available via Edit->Insert special character. Supports all unicode characters (over 60,000 of them). See http://manual.calibre-ebook.com/edit.html#inserting-special-characters" + + - title: "Edit book: When searching for text in the editor, center the found text on screen" + + - title: "Driver for teXet TB-146SE." + tickets: [1266030] + + - title: "Edit book: Show tooltips in the File Browser for 'special' files, such as the cover, opf, ncx, etc." + + - title: "Edit book: When checking book, check for entries in the OPF whose mimetype does not match the file extension." + + bug fixes: + - title: "Edit book: Fix marking a file as titlepage not working if the opf does not contain a section." + tickets: [1267643] + + - title: "Edit book: Fix errors when working on HTML files that parse as valid XML, but do not have the correct XHTML namespace." + + - title: "Fix typing non-English characters using an input method (key composing) in the author/tags/etc fields in the metadata dialog not working." + tickets: [1266795] + + - title: "Edit book: Fix error when merging html files that include a currently opened file and a non-html file is also open" + + - title: "Fix unnecessary error popup during shutdown if the wireless device driver is running and mdns de-registration fails." + tickets: [1262819] + + - title: "Add L´ and D´ as recognized articles when automatically computing sort strings for French." + tickets: [1264172] + + - title: "Edit book: Fix changing mimetypes in the opf file not being detected when closing the opf file or running any automated tool like Check Book" + + improved recipes: + - New York Times + - Zeit Online + - Faz.net + - OGlobo + - Inc Magazine + - New York Review of Books + - Brand Eins + - version: 1.18.0 date: 2014-01-03 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 6c17a692cf..a521ac1670 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -4,7 +4,7 @@ __license__ = 'GPL v3' __copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net' __docformat__ = 'restructuredtext en' __appname__ = u'calibre' -numeric_version = (1, 18, 0) +numeric_version = (1, 19, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "