From da7a7658e62eff1d4eefd036340df5d42868a3de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?ibu=20=E2=98=89=20radempa?= Date: Thu, 31 Dec 2020 16:27:34 +0000 Subject: [PATCH] Release version 1.2.0. --- releases/theanarchistlibrary_store_v1.2.0.zip | Bin 0 -> 4241 bytes theanarchistlibrary_store/__init__.py | 9 +++++---- 2 files changed, 5 insertions(+), 4 deletions(-) create mode 100644 releases/theanarchistlibrary_store_v1.2.0.zip diff --git a/releases/theanarchistlibrary_store_v1.2.0.zip b/releases/theanarchistlibrary_store_v1.2.0.zip new file mode 100644 index 0000000000000000000000000000000000000000..77862c5f5523126e5c58186932b30543a9c072f2 GIT binary patch literal 4241 zcmd5=OK%)S5OxS~Sdh5nid2e7W|piwYm;1@IOJgmP@J%KY$Z|@je2K#cALyA-95G! z!~uyP0SA-|{~*7FGdCpu2UXqkT6@<{ZcOYpm1&VHvzqZ#tZI`h5tymq8CT&{YLm#Z;%dgsu^BbeE*!quo!$H6*Ka>v zS)t$0QQ88g!0o__Sr8;L6qy!50Gr@_GunZ#yj~E5c`;LRGBs{}eYmzhfW2}oG8pAa z!ZWy?3jIpvceTu-Je8TuStiV#Td+P{9}Yl{OHe!#X~E$(PVQC{7KuBwL6nDau2NoY zpoBK63{9y-WW=!nk$JtI^8oyy^Q>poY@-MG#41mrR0%qO6mO}1-ln%x7HoEAh>H%?Mn-NHO06HvceLYU;}rb*9z<`lX{ z>#@p@v`};3*rb$=ig_Wj0PQ_Z!7M83O`Z}&Mix5DNZFWc8Dem=SWarb`?O}6AK3M! z%vuoi0t{7|G|qWy7x(PiQqChW4jh6b$&y=p$s%I z<;MXjt8sa4*u%vU&QMY+4FjL2r4~o>m4t~rL?T4|+7Mh|G!#MsF|)oChO{ccd1lDc z2NnF>5dfi^t{R@ep$FH%`{`$9e>~B-o))TIN|FH4YQ5H7uj_Pl9X!HkJ;q z{f(Z@>`25wX!o^9;sM&AQ0Gl@%K#!_xJ&|RL|Uz2iV2nRWb+|Uv_KhjIM9RctV4PR zHt=|HcTKK3!pwT1KAWZPc7RvAF zPy2PJ0@Wv_`~7~S60Nls(FPIPG@mclO>|TY9F&~D=3LbZv?3Uy?HQfdNBhzw!U>@J zWdU7a_(VI3t}kd6UEp~gWu0tsEW*G?EZ8ZA(q&&2Oq+58AYfNG-CVQ?RGYg=6z|Iu3>65T%>bz!_cIDFbAr{ z0+~5z5C~P^tgDUj$I3=wjbJ-LyjJ#B_H~S_1=AaWP@ksSp=w^wF0B%HIc9ST*Pmxn zBvB=4j-Y${)x`A1eGzZ#i#K~ui?J?v4~wha-`Q%SKf`kRJZHT%pU#nmL2~Cx6{>Uf zK9Xh%)zyvhW%g)7zrhvoYm>3!@NKC3{T9r1(EC(}#PeRpx(DG(w-HNn9{F(#WikdM zljR1GYM!k%)E+)_QKo=J+;9TuLPokp+{LtK?`cd@lGlASGjt*#AxV1S*_rneD-0!z zh4j2MQ{1>_aMLq63WcR6GI(DM*>LDB(4l)O)`HRDXG)D!dcr)mwf8tUc(U{TgGbw2 zi+0J6GV;BC;cbr&?t3pABj)y^yO4>Z952+gl`-0Sc&3OViqDa7?*=Qu3l5XTojxO8!O zYhHEfD}Vk%BUeMePov&SU(~9%(x2dP0Rk!mFps*5E=svp)L-~_fKCFA9)0vNeY}YO L{=xU}pV90;xvu}b literal 0 HcmV?d00001 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'