Disable the Overdrive plugin by default as it is slow

This commit is contained in:
Kovid Goyal 2011-05-06 09:03:31 -06:00
parent 6463d0e423
commit 945693da4b
2 changed files with 2 additions and 3 deletions

View File

@ -92,8 +92,7 @@ def restore_plugin_state_to_default(plugin_or_name):
config['enabled_plugins'] = ep config['enabled_plugins'] = ep
default_disabled_plugins = set([ default_disabled_plugins = set([
'Douban Books', 'Douban.com covers', 'Nicebooks', 'Nicebooks covers', 'Overdrive',
'Kent District Library'
]) ])
def is_disabled(plugin): def is_disabled(plugin):

View File

@ -41,7 +41,7 @@ class OverDrive(Source):
cached_cover_url_is_reliable = True cached_cover_url_is_reliable = True
options = ( options = (
Option('get_full_metadata', 'bool', False, Option('get_full_metadata', 'bool', True,
_('Download all metadata (slow)'), _('Download all metadata (slow)'),
_('Enable this option to gather all metadata available from Overdrive.')), _('Enable this option to gather all metadata available from Overdrive.')),
) )