From 109ab3c8f05bb93246168aac36a8f6b746deee9e Mon Sep 17 00:00:00 2001 From: John Schember Date: Wed, 23 Nov 2011 19:36:34 -0500 Subject: [PATCH] Merge Litres RU store from Roman. --- src/calibre/customize/builtins.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/calibre/customize/builtins.py b/src/calibre/customize/builtins.py index 07c0dc0bd3..6dfa360384 100644 --- a/src/calibre/customize/builtins.py +++ b/src/calibre/customize/builtins.py @@ -1383,6 +1383,17 @@ class StoreLibreDEStore(StoreBase): formats = ['EPUB', 'PDF'] affiliate = True +class StoreLitResStore(StoreBase): + name = 'LitRes' + description = u'ebooks from LitRes.ru' + actual_plugin = 'calibre.gui2.store.stores.litres_plugin:LitResStore' + author = 'Roman Mukhin' + + drm_free_only = False + headquarters = 'RU' + formats = ['EPUB', 'TXT', 'RTF', 'HTML', 'FB2', 'LRF', 'PDF', 'MOBI', 'LIT', 'ISILO3', 'JAR', 'RB', 'PRC'] + affiliate = True + class StoreManyBooksStore(StoreBase): name = 'ManyBooks' description = u'Public domain and creative commons works from many sources.' @@ -1567,6 +1578,7 @@ plugins += [ StoreKoboStore, StoreLegimiStore, StoreLibreDEStore, + StoreLitResStore, StoreManyBooksStore, StoreMobileReadStore, StoreNextoStore,