version 0.8.1

This commit is contained in:
Kovid Goyal 2011-05-13 11:22:25 -06:00
parent c005726107
commit 43203e3797
3 changed files with 82 additions and 2 deletions

View File

@ -19,6 +19,83 @@
# new recipes: # new recipes:
# - title: # - title:
- version: 0.8.1
date: 2011-05-13
new features:
- title: "Add Amazon DE, Beam EBooks, Beam DE, Weightless Books, Wizards Tower Books to the list of ebook stores searched by Get Books"
- title: "TXT output: All new Textile output with much greater preservation of formatting from the input document"
- title: "Migrate metadata plugin for Douban Books to the 0.8 API"
- title: "Driver for Dell Streak on windows"
- title: "Add menu items to Get Books action to search by title and author of current book"
- title: "Add title_sort as available field to CSV/XML catalogs"
- title: "Add a context menu to the manage authors dialog"
- title: "Add a button to paste isbn into the identifiers field in the edit metadata dialog automatically"
bug fixes:
- title: "Amazon metadata download plugin: Fix links being stripped from comments. Also fix ratings/isbn not being parsed from kindle edition pages."
tickets: [782012]
- title: "Fix one source of segfaults on shutdown in the linux binary builds."
- title: "Allow the use of condensed/expanded fonts as interface fonts"
- title: "EPUB Input: Ignore missing cover file when converting, instead of erroring out."
tickets: [781848]
- title: "Fix custom identifier being erased by metadata download"
tickets: [781759]
- title: "Fix regression that broke various things when using Japanese language calibre on windows"
tickets: [780804]
- title: "RTF Input: Handle null color codes correctly"
tickets: [780728]
- title: "ODT Input: Handle inline special styles defined on <text:span> tags."
tickets: [780250]
- title: "Fix error when pressing next previous button with an empty search in the Plugins preferences"
tickets: [781135]
- title: "Ignore 'Unknown' author when downloading metadata."
tickets: [779348]
- title: "Fix timezone bug when setting dates in the edit metadata dialog"
tickets: [779497]
- title: "Fix ebook-convert not recognizing output paths starting with .."
tickets: [779322]
improved recipes:
- "Strategy+Business"
- Readers Digest
- Ming Pao
- Telepolis
- Fronda
- Rzeczpospolita
new recipes:
- title: "Various Taiwanese news sources"
author: Eddie Lau
- title: Replica Vedetelor, Ziua Veche
author: Silviu Cotoara
- title: Welt der Physik
author: schuster
- title: Korea Herald
author: Seongkyoun Yoo
- version: 0.8.0 - version: 0.8.0
date: 2010-05-06 date: 2010-05-06

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 = (0, 8, 0) numeric_version = (0, 8, 1)
__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>"

View File

@ -20,7 +20,7 @@ class StoreAction(InterfaceAction):
action_spec = (_('Get books'), 'store.png', None, None) action_spec = (_('Get books'), 'store.png', None, None)
def genesis(self): def genesis(self):
self.qaction.triggered.connect(self.search) self.qaction.triggered.connect(self.do_search)
self.store_menu = QMenu() self.store_menu = QMenu()
self.load_menu() self.load_menu()
@ -36,6 +36,9 @@ class StoreAction(InterfaceAction):
self.store_list_menu.addAction(n, partial(self.open_store, p)) self.store_list_menu.addAction(n, partial(self.open_store, p))
self.qaction.setMenu(self.store_menu) self.qaction.setMenu(self.store_menu)
def do_search(self):
return self.search()
def search(self, query=''): def search(self, query=''):
self.show_disclaimer() self.show_disclaimer()
from calibre.gui2.store.search.search import SearchDialog from calibre.gui2.store.search.search import SearchDialog