diff --git a/releases/theanarchistlibrary_store_v1.2.0.zip b/releases/theanarchistlibrary_store_v1.2.0.zip new file mode 100644 index 0000000..77862c5 Binary files /dev/null and b/releases/theanarchistlibrary_store_v1.2.0.zip differ diff --git a/theanarchistlibrary_store/__init__.py b/theanarchistlibrary_store/__init__.py index 7188418..8ab88bb 100644 --- a/theanarchistlibrary_store/__init__.py +++ b/theanarchistlibrary_store/__init__.py @@ -1,14 +1,15 @@ __license__ = 'GPL 3' -__copyright__ = '2012, Ruben Pollan ' +__copyright__ = '2012, Ruben Pollan ; 2020, ibu radempa ' __docformat__ = 'restructuredtext en' from calibre.customize import StoreBase + class TheAnarchistLibraryStore(StoreBase): name = 'The Anarchist Library' - description = 'theanarchistlibrary.org is (despite its name) an archive focusing on anarchism, anarchist texts, and texts of interest for anarchists.' - author = 'Ruben Pollan' - version = (1, 0, 0) + description = 'theanarchistlibrary.org is an archive focusing on anarchism, anarchist texts, and texts of interest to anarchists.' + author = 'Ruben Pollan; ibu radempa' + version = (1, 2, 0) drm_free_only = True formats = ['EPUB', 'PDF', 'TXT', 'TEX', 'MUSE'] actual_plugin = 'calibre_plugins.store_theanarchistlibrary.theanarchistlibrary_plugin:TheAnarchistLibraryStore'