diff --git a/Changelog.yaml b/Changelog.yaml index cc4947fbbf..3717d8d4d6 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -19,6 +19,72 @@ # new recipes: # - title: +- version: 0.8.2 + date: 2011-05-20 + + new features: + - title: "Various new ebook sources added to Get Books: Google Books, O'Reilly, archive.org, some Polish ebooks stores, etc." + + - title: "Amazon metadata download: Allow user to configure Amazon plugin to use any of the US, UK, German, French and Italian Amazon websites" + + - title: "When deleting large numbers of books, give the user the option to skip the Recycle Bin, since sending lots of files to the recycle bin can be very slow." + tickets: [784987] + + - title: "OS X: The unified title+toolbar was disabled as it had various bugs. If you really want it you can turn it on again via Preferences->Tweaks, but be aware that you will see problems like the calibre windowd being too wide, weird animations when a device is detected, etc." + + - title: "Add a tweak that controls what words are treated as suffixes when generating an author sort string from an author name." + + - title: "Get Books: Store alst few searches in history" + + bug fixes: + - title: "Fix a crash when a device is connected/disconnected while a modal dialog opened from the toolbar is visible" + tickets: [780484] + + - title: "Fix incorrect results from ebooks.com when searching via Get Books" + + - title: "Metadata plugboards: Add prioritization scheme to allow for using different settings for different locations" + tickets: [783229] + + - title: "Fix manage authors dialog too wide" + tickets: [783065] + + - title: "Fix multiple bracket types in author names not handled correctly when generating author sort string" + tickets: [782551] + + - title: "MOBI Input: Don't error out when detecting TOC structure if one of the elements has an invalid margin unit" + + - title: "More fixes for japanese language calibre on windows" + tickets: [782408] + + - title: "Linux binaries: Always use either Cleanlook or Plastique styles for the GUI if no style can be loaded from the host computer" + + improved recipes: + - Newsweek + - Economist + - Dvhn + - United Daily + - Dagens Nyheter + - GoComics + - faz.net + - golem.de + + new recipes: + - title: National Geographic + author: gagsays + + - title: Various German news sources + author: schuster + + - title: Dilema Veche + author: Silviu Cotoara + + - title: "Glamour, Good to Know, Good Housekeeping and Men's Health" + author: Anonymous + + - title: "Financial Sense and iProfessional" + author: Darko Miletic + + - version: 0.8.1 date: 2011-05-13 diff --git a/recipes/economist_free.recipe b/recipes/economist_free.recipe index 4f060dc487..1c1dcca183 100644 --- a/recipes/economist_free.recipe +++ b/recipes/economist_free.recipe @@ -14,7 +14,7 @@ class Economist(BasicNewsRecipe): description = ('Global news and current affairs from a European' ' perspective. Best downloaded on Friday mornings (GMT).' ' Much slower than the print edition based version.') - + extra_css = '.headline {font-size: x-large;} \n h2 { font-size: small; } \n h1 { font-size: medium; }' oldest_article = 7.0 cover_url = 'http://www.economist.com/images/covers/currentcoverus_large.jpg' remove_tags = [ diff --git a/resources/default_tweaks.py b/resources/default_tweaks.py index c215e9634d..a7f14d66d4 100644 --- a/resources/default_tweaks.py +++ b/resources/default_tweaks.py @@ -53,7 +53,8 @@ authors_completer_append_separator = False # periods are automatically handled. author_sort_copy_method = 'comma' author_name_suffixes = ('Jr', 'Sr', 'Inc', 'Ph.D', 'Phd', - 'MD', 'M.D', 'I', 'II', 'III', 'IV') + 'MD', 'M.D', 'I', 'II', 'III', 'IV', + 'Junior', 'Senior') #: Use author sort in Tag Browser # Set which author field to display in the tags pane (the list of authors, diff --git a/src/calibre/constants.py b/src/calibre/constants.py index c0d9e3f110..b22739cbb2 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 = (0, 8, 1) +numeric_version = (0, 8, 2) __version__ = u'.'.join(map(unicode, numeric_version)) __author__ = u"Kovid Goyal " diff --git a/src/calibre/devices/misc.py b/src/calibre/devices/misc.py index a0cb819cb9..152f704528 100644 --- a/src/calibre/devices/misc.py +++ b/src/calibre/devices/misc.py @@ -269,8 +269,8 @@ class NEXTBOOK(USBMS): EBOOK_DIR_MAIN = '' - VENDOR_NAME = 'NEXT2' - WINDOWS_MAIN_MEM = WINDOWS_CARD_A_MEM = '1.0.14' + VENDOR_NAME = ['NEXT2', 'BK7005'] + WINDOWS_MAIN_MEM = WINDOWS_CARD_A_MEM = ['1.0.14', 'PLAYER'] SUPPORTS_SUB_DIRS = True THUMBNAIL_HEIGHT = 120