mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
version 0.8.2
This commit is contained in:
parent
447242488e
commit
d2ecc3f1b6
@ -19,6 +19,72 @@
|
|||||||
# new recipes:
|
# new recipes:
|
||||||
# - title:
|
# - 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
|
- version: 0.8.1
|
||||||
date: 2011-05-13
|
date: 2011-05-13
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ class Economist(BasicNewsRecipe):
|
|||||||
description = ('Global news and current affairs from a European'
|
description = ('Global news and current affairs from a European'
|
||||||
' perspective. Best downloaded on Friday mornings (GMT).'
|
' perspective. Best downloaded on Friday mornings (GMT).'
|
||||||
' Much slower than the print edition based version.')
|
' 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
|
oldest_article = 7.0
|
||||||
cover_url = 'http://www.economist.com/images/covers/currentcoverus_large.jpg'
|
cover_url = 'http://www.economist.com/images/covers/currentcoverus_large.jpg'
|
||||||
remove_tags = [
|
remove_tags = [
|
||||||
|
@ -53,7 +53,8 @@ authors_completer_append_separator = False
|
|||||||
# periods are automatically handled.
|
# periods are automatically handled.
|
||||||
author_sort_copy_method = 'comma'
|
author_sort_copy_method = 'comma'
|
||||||
author_name_suffixes = ('Jr', 'Sr', 'Inc', 'Ph.D', 'Phd',
|
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
|
#: Use author sort in Tag Browser
|
||||||
# Set which author field to display in the tags pane (the list of authors,
|
# Set which author field to display in the tags pane (the list of authors,
|
||||||
|
@ -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 = (0, 8, 1)
|
numeric_version = (0, 8, 2)
|
||||||
__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>"
|
||||||
|
|
||||||
|
@ -269,8 +269,8 @@ class NEXTBOOK(USBMS):
|
|||||||
|
|
||||||
EBOOK_DIR_MAIN = ''
|
EBOOK_DIR_MAIN = ''
|
||||||
|
|
||||||
VENDOR_NAME = 'NEXT2'
|
VENDOR_NAME = ['NEXT2', 'BK7005']
|
||||||
WINDOWS_MAIN_MEM = WINDOWS_CARD_A_MEM = '1.0.14'
|
WINDOWS_MAIN_MEM = WINDOWS_CARD_A_MEM = ['1.0.14', 'PLAYER']
|
||||||
SUPPORTS_SUB_DIRS = True
|
SUPPORTS_SUB_DIRS = True
|
||||||
THUMBNAIL_HEIGHT = 120
|
THUMBNAIL_HEIGHT = 120
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user