From 6f1e5becdd269361e20f4d3487bc0c92b3666dfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20D=C5=82ugosz?= Date: Thu, 3 Nov 2011 18:35:28 +0100 Subject: [PATCH] Ebookpoint plugin --- 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 ef09e50ff4..defc318e36 100644 --- a/src/calibre/customize/builtins.py +++ b/src/calibre/customize/builtins.py @@ -1237,6 +1237,17 @@ class StoreEbookNLStore(StoreBase): formats = ['EPUB', 'PDF'] affiliate = True +class StoreEbookpointStore(StoreBase): + name = 'Ebookpoint' + author = u'Tomasz Długosz' + description = u'Ebooki wolne od DRM, 3 formaty w pakiecie, wysyłanie na Kindle' + actual_plugin = 'calibre.gui2.store.stores.ebookpoint_plugin:EbookpointStore' + + drm_free_only = True + headquarters = 'PL' + formats = ['EPUB', 'MOBI', 'PDF'] + affiliate = True + class StoreEbookscomStore(StoreBase): name = 'eBooks.com' description = u'Sells books in multiple electronic formats in all categories. Technical infrastructure is cutting edge, robust and scalable, with servers in the US and Europe.' @@ -1528,6 +1539,7 @@ plugins += [ StoreChitankaStore, StoreDieselEbooksStore, StoreEbookNLStore, + StoreEbookpointStore, StoreEbookscomStore, StoreEBookShoppeUKStore, StoreEHarlequinStore,