From d1b517357e5848e4a48c120e3aafb85ad27ecda5 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 25 Apr 2014 07:32:21 +0530 Subject: [PATCH] version 1.34 --- Changelog.yaml | 45 ++++++++++++++++++++++++++++++++++++++++ src/calibre/constants.py | 2 +- 2 files changed, 46 insertions(+), 1 deletion(-) diff --git a/Changelog.yaml b/Changelog.yaml index cd1e8a361e..9ff9aed53e 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -20,6 +20,51 @@ # new recipes: # - title: +- version: 1.34.0 + date: 2014-04-25 + + new features: + - title: "E-book viewer: When in flow mode, handle swiping on the touchscreen differently. Swiping now scrolls line by line in flow mode instead of page by page. If you wish to scroll page by page in flow mode, tap instead of swiping." + + - title: "Conversion: Preserve all guide entries that are of a type present in the EPUB 2.0 specification. These entries are used by newer Kindle readers to populate the Go To jump list" + + - title: "When adding MOBI files if the author name is in LN, FN format, auto change it to FN LN format, as the MOBI format has no author sort field. This behavior can be disabled by setting Preferences->Tweaks->Author sort name algorithm to copy." + tickets: [1306748] + + - title: "Spellcheck: When checking French text list all words that have the same stem as a single word. So j'aime and aime are listed as a single word." + + - title: "Spell check: Add a context (right click) menu that allows for quick operations on all selected words" + tickets: [1309559] + + - title: "Manage user dictionaries: Add a button to import a list of words in bulk into the user dictionary" + + - title: "Spell check dialog: Allow sorting words case sensitively" + + bug fixes: + - title: "EPUB Input: Fix incorrect handling of obfuscated fonts using the IDPF obfuscation algorithm when the epub unique identifier starts with urn:uuid" + tickets: [1311650] + + - title: "Edit book: Fix obfuscated fonts in EPUB files not being handled correctly when editing the book (obfuscated fonts would get corrupted when making changes)." + tickets: [1311650] + + - title: "Edit book: Fix a bug that caused spell checking to fail when using the builtin spanish dictionary" + + - title: "Spell check: Fix replacing a word and then replacing the new word again not working without doing a refresh in between" + + - title: "Spell check: Fix language declarations not being respected for nested tags." + tickets: [1310000] + + - title: "Spell check: Fix 'Show next occurrence' sometimes showing the word in an incorrect location, for example in an attribute where spell check is not performed." + + - title: "Allow import of dictionaries that deviate from the spec in minor ways" + + - title: "Edit Book: Fix the Show next occurrence button in the spell check dialog sometimes failing to show next occurrence" + + - title: "OS X: Detect the users default interface language correctly. Also fix parsing of ambiguous dates in mm/dd vs dd/mm formats, based on the users locale settings in OS X." + + improved recipes: + - Hindustan Times + - version: 1.33.0 date: 2014-04-18 diff --git a/src/calibre/constants.py b/src/calibre/constants.py index d86376be1a..13c78db176 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, 33, 0) +numeric_version = (1, 34, 0) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal "