diff --git a/docs/source/conf.py b/docs/source/conf.py index 25deadac032fc89a70f41ce0cdccadf1c6087c33..560c879f9559ea2bb05323d8937d86d0768bfb88 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -48,9 +48,9 @@ # built documents. # # The short X.Y version. -version = '1.2' +version = '1.3' # The full version, including alpha/beta/rc tags. -release = '1.2' +release = '1.3' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/source/guides/module.rst b/docs/source/guides/module.rst index 8c69af5993eac8940e70b6931d60fe68db415cba..5f9d7a7ecc9f2429d95fae7a44ca2110317f2172 100644 --- a/docs/source/guides/module.rst +++ b/docs/source/guides/module.rst @@ -112,7 +112,7 @@ Edit ``module.py``. It contains the main class of the module derived from :class EMAIL = 'john.smith@example.com' # Email address of the maintainer LICENSE = 'AGPLv3+' # License of your module # Version of weboob - VERSION = '1.2' + VERSION = '1.3' In the code above, you can see that your ``ExampleModule`` inherits :class:`CapBank `, as we have selected it for the supported website. diff --git a/modules/750g/module.py b/modules/750g/module.py index 55e5f4ea88f75e86949abf3f1341371f9d306796..c061106343d60fdf482ece2fb3a5b0305ae4100c 100644 --- a/modules/750g/module.py +++ b/modules/750g/module.py @@ -35,7 +35,7 @@ class SevenFiftyGramsModule(Module, CapRecipe): NAME = '750g' MAINTAINER = u'Julien Veyssier' EMAIL = 'julien.veyssier@aiur.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'750g French recipe website' LICENSE = 'AGPLv3+' BROWSER = SevenFiftyGramsBrowser diff --git a/modules/adecco/module.py b/modules/adecco/module.py index d880ba17ac4988732ff6a9350ba3f6a9db22d12f..b787529c7b18843fc751e39aaafcf9fff5377e0f 100644 --- a/modules/adecco/module.py +++ b/modules/adecco/module.py @@ -32,7 +32,7 @@ class AdeccoModule(Module, CapJob): DESCRIPTION = u'adecco website' MAINTAINER = u'Bezleputh' EMAIL = 'carton_ben@yahoo.fr' - VERSION = '1.2' + VERSION = '1.3' BROWSER = AdeccoBrowser diff --git a/modules/afer/module.py b/modules/afer/module.py index f350d283458006da31c882c8c664b6bd07f20a52..73811518db54c01d825c732f66fe39f41aaa965c 100644 --- a/modules/afer/module.py +++ b/modules/afer/module.py @@ -35,7 +35,7 @@ class AferModule(Module, CapBank): MAINTAINER = u'James GALT' EMAIL = 'jgalt@budget-insight.com' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' BROWSER = AferBrowser CONFIG = BackendConfig(ValueBackendPassword('login', label='Username', regexp='[A-z]\d+', masked=False), diff --git a/modules/agendaculturel/module.py b/modules/agendaculturel/module.py index e13698841af7a1f873b60bbfa7588db5b4f5873b..ed206f4709f1c579b5bf4747e9fb9dac3fae5a27 100644 --- a/modules/agendaculturel/module.py +++ b/modules/agendaculturel/module.py @@ -34,7 +34,7 @@ class AgendaculturelModule(Module, CapCalendarEvent): MAINTAINER = u'Bezleputh' EMAIL = 'carton_ben@yahoo.fr' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' ASSOCIATED_CATEGORIES = [CATEGORIES.CONCERT, CATEGORIES.THEATRE, CATEGORIES.EXPO, CATEGORIES.AUTRE, CATEGORIES.FEST] BROWSER = AgendaculturelBrowser diff --git a/modules/agendadulibre/module.py b/modules/agendadulibre/module.py index 94f55012c79e3ca2c0b219298d961fba7eaaf759..53586d8625803890a6dc13b5c1c353a2fda244be 100644 --- a/modules/agendadulibre/module.py +++ b/modules/agendadulibre/module.py @@ -35,7 +35,7 @@ class AgendadulibreModule(Module, CapCalendarEvent): MAINTAINER = u'Bezleputh' EMAIL = 'carton_ben@yahoo.fr' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' ASSOCIATED_CATEGORIES = [CATEGORIES.CONF] BROWSER = AgendadulibreBrowser diff --git a/modules/allocine/module.py b/modules/allocine/module.py index cac1038841d76e414eb5336d59e5992b42ac6975..84eb383ff1c2a309421213c2d73fba84f665dd6f 100644 --- a/modules/allocine/module.py +++ b/modules/allocine/module.py @@ -34,7 +34,7 @@ class AllocineModule(Module, CapCinema, CapVideo, CapCalendarEvent, CapCollectio NAME = 'allocine' MAINTAINER = u'Julien Veyssier' EMAIL = 'julien.veyssier@aiur.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'AlloCiné French cinema database service' LICENSE = 'AGPLv3+' BROWSER = AllocineBrowser diff --git a/modules/alloresto/module.py b/modules/alloresto/module.py index 16121fa7bca01ffd7a0451738559353f6fcbe410..07d63c6d7e10f31e69acd2752986166c2be1a11d 100644 --- a/modules/alloresto/module.py +++ b/modules/alloresto/module.py @@ -32,7 +32,7 @@ class AlloRestoModule(Module, CapBank): NAME = 'alloresto' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'Allo Resto' LICENSE = 'AGPLv3+' CONFIG = BackendConfig(ValueBackendPassword('login', label='Identifiant', masked=False), diff --git a/modules/allrecipes/module.py b/modules/allrecipes/module.py index 7342a5d8401ccedf3b913a9b6c28efb163bebc22..94faae165752e27b6876eaa14a90909f9a123556 100644 --- a/modules/allrecipes/module.py +++ b/modules/allrecipes/module.py @@ -31,7 +31,7 @@ class AllrecipesModule(Module, CapRecipe): NAME = 'allrecipes' MAINTAINER = u'Julien Veyssier' EMAIL = 'julien.veyssier@aiur.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'Allrecipes English recipe website' LICENSE = 'AGPLv3+' BROWSER = AllrecipesBrowser diff --git a/modules/amazon/module.py b/modules/amazon/module.py index 7f69166d74de56662133818645fc041570c3e1f4..c6ca3355791b029eda3b757eedd2fdcbf60214e0 100644 --- a/modules/amazon/module.py +++ b/modules/amazon/module.py @@ -37,7 +37,7 @@ class AmazonModule(Module, CapShop, CapDocument): NAME = 'amazon' MAINTAINER = u'Oleg Plakhotniuk' EMAIL = 'olegus8@gmail.com' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = u'Amazon' diff --git a/modules/amazonstorecard/module.py b/modules/amazonstorecard/module.py index 5c68c0b1ea6f3bdc28a2ba39eb99a5867df98b95..01187471e36c0e4de6456920bcf50487e797d65c 100644 --- a/modules/amazonstorecard/module.py +++ b/modules/amazonstorecard/module.py @@ -32,7 +32,7 @@ class AmazonStoreCardModule(Module, CapBank): NAME = 'amazonstorecard' MAINTAINER = u'Oleg Plakhotniuk' EMAIL = 'olegus8@gmail.com' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = u'Amazon Store Card' CONFIG = BackendConfig( diff --git a/modules/ameli/module.py b/modules/ameli/module.py index a6d3f6a44bd15b63d6cb09aea2c9939d15cb8aff..2904b217dd4b04955f11742ff03a80ba34ea2deb 100644 --- a/modules/ameli/module.py +++ b/modules/ameli/module.py @@ -30,7 +30,7 @@ class AmeliModule(Module, CapDocument): DESCRIPTION = u'Ameli website: French Health Insurance' MAINTAINER = u'Christophe Lampin' EMAIL = 'weboob@lampin.net' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' BROWSER = AmeliBrowser CONFIG = BackendConfig(ValueBackendPassword('login', diff --git a/modules/amelipro/module.py b/modules/amelipro/module.py index 3013ec64c1d2c67ee7cd4748324b148cb84969fb..a5e10a4b661d1d4799aa14fa17dad35a47e8feda 100644 --- a/modules/amelipro/module.py +++ b/modules/amelipro/module.py @@ -29,7 +29,7 @@ class AmeliProModule(Module, CapDocument): DESCRIPTION = u'Ameli website: French Health Insurance for Professionals' MAINTAINER = u'Christophe Lampin' EMAIL = 'weboob@lampin.net' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' BROWSER = AmeliProBrowser CONFIG = BackendConfig(ValueBackendPassword('login', diff --git a/modules/americanexpress/module.py b/modules/americanexpress/module.py index d7a93bc046019233cb3c3eede3cb113f7ccd24ad..865c6097257da98aa7b3f4cd9fc7e6fbef7b2247 100644 --- a/modules/americanexpress/module.py +++ b/modules/americanexpress/module.py @@ -33,7 +33,7 @@ class AmericanExpressModule(Module, CapBank): NAME = 'americanexpress' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'American Express' LICENSE = 'AGPLv3+' CONFIG = BackendConfig(ValueBackendPassword('login', label='Code utilisateur', masked=False), diff --git a/modules/amundi/module.py b/modules/amundi/module.py index 62c9947b256662f026e001970a538acd301c88b9..0118ec9acc1ba2c69242bf6e857f1ddc2887855d 100644 --- a/modules/amundi/module.py +++ b/modules/amundi/module.py @@ -34,7 +34,7 @@ class AmundiModule(Module, CapBank): MAINTAINER = u'James GALT' EMAIL = 'james.galt.bi@gmail.com' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' CONFIG = BackendConfig(ValueBackendPassword('login', label='Identifiant', regexp='\d+', masked=False), ValueBackendPassword('password', label=u"Mot de passe", regexp='\d+'), Value('website', label='Type de compte', default='ee', diff --git a/modules/apec/module.py b/modules/apec/module.py index be66dbafadb8a6275c0bf1e15da5c6a3a7fe77ca..d318b18fe5c8e1143fb59d6e6c213bcbbf20a497 100644 --- a/modules/apec/module.py +++ b/modules/apec/module.py @@ -33,7 +33,7 @@ class ApecModule(Module, CapJob): DESCRIPTION = u'apec website' MAINTAINER = u'Bezleputh' EMAIL = 'carton_ben@yahoo.fr' - VERSION = '1.2' + VERSION = '1.3' BROWSER = ApecBrowser diff --git a/modules/apivie/module.py b/modules/apivie/module.py index d378ec4b6b3866717c6322c931def42f66418bdb..4b4bee444146101276b105c731ce5af55074af63 100644 --- a/modules/apivie/module.py +++ b/modules/apivie/module.py @@ -32,7 +32,7 @@ class ApivieModule(Module, CapBank): DESCRIPTION = u'Apivie' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' BROWSER = ApivieBrowser diff --git a/modules/arretsurimages/module.py b/modules/arretsurimages/module.py index ca921a313d4763db973fd64986291cac53ac4568..94fbeb8f883e506bf3e1370476834f74ba3693a0 100644 --- a/modules/arretsurimages/module.py +++ b/modules/arretsurimages/module.py @@ -34,7 +34,7 @@ class ArretSurImagesModule(Module, CapVideo, CapCollection): DESCRIPTION = u'arretsurimages website' MAINTAINER = u'franek' EMAIL = 'franek@chicour.net' - VERSION = '1.2' + VERSION = '1.3' CONFIG = BackendConfig(ValueBackendPassword('login', label='email', masked=False), ValueBackendPassword('password', label='Password')) diff --git a/modules/arte/module.py b/modules/arte/module.py index fcc72ad3b76d051387e2bc6a49b7d6f21556b6ce..b4becf76ea5970fdb4cae1c89a6bb17d240a4897 100644 --- a/modules/arte/module.py +++ b/modules/arte/module.py @@ -37,7 +37,7 @@ class ArteModule(Module, CapVideo, CapCollection): NAME = 'arte' MAINTAINER = u'Bezleputh' EMAIL = 'carton_ben@yahoo.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'Arte French and German TV' LICENSE = 'AGPLv3+' diff --git a/modules/attilasub/module.py b/modules/attilasub/module.py index f9ef241ed3e5ab0838ed973b5476deaa4ba2c35e..d2bbe1289df7b6127c36ce1244f1253a31ad73ed 100644 --- a/modules/attilasub/module.py +++ b/modules/attilasub/module.py @@ -31,7 +31,7 @@ class AttilasubModule(Module, CapSubtitle): NAME = 'attilasub' MAINTAINER = u'Julien Veyssier' EMAIL = 'julien.veyssier@aiur.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = '"Attila\'s Website 2.0" French subtitles' LICENSE = 'AGPLv3+' LANGUAGE_LIST = ['fr'] diff --git a/modules/audioaddict/module.py b/modules/audioaddict/module.py index f4e0562cde2c13c3966e37cf095ac2348428ee9a..9430053a363325f598f0e60fcc2ee80d1d4dd2e0 100644 --- a/modules/audioaddict/module.py +++ b/modules/audioaddict/module.py @@ -42,7 +42,7 @@ class AudioAddictModule(Module, CapRadio, CapCollection): NAME = 'audioaddict' MAINTAINER = u'Pierre Mazière' EMAIL = 'pierre.maziere@gmx.com' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'Internet radios powered by audioaddict.com services' LICENSE = 'AGPLv3+' BROWSER = StandardBrowser diff --git a/modules/aum/module.py b/modules/aum/module.py index e4a90a9a2f556ea2da1cb2279c4c200b9ea822d3..fea8549288f8d946456be97328269e8213a5b79a 100644 --- a/modules/aum/module.py +++ b/modules/aum/module.py @@ -56,7 +56,7 @@ class AuMModule(Module, CapMessages, CapMessagesPost, CapDating, CapChat, CapCon NAME = 'aum' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = u'"Adopte un Mec" French dating website' CONFIG = BackendConfig(Value('username', label='Username'), diff --git a/modules/axabanque/module.py b/modules/axabanque/module.py index 2661bc4617ab2b730431ce56ec2f68f7a3661546..9bbe343797c78b5a5599d62f62eb716fc3f77a29 100644 --- a/modules/axabanque/module.py +++ b/modules/axabanque/module.py @@ -33,7 +33,7 @@ class AXABanqueModule(Module, CapBank): NAME = 'axabanque' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'AXA Banque' LICENSE = 'AGPLv3+' CONFIG = BackendConfig(ValueBackendPassword('login', label='Identifiant', masked=False), diff --git a/modules/banqueaccord/module.py b/modules/banqueaccord/module.py index e9b69a56852a078813b0a9bf2eed80389b4e876d..9281c0e0ded05b061ad2263ec43a7cbc992538f5 100644 --- a/modules/banqueaccord/module.py +++ b/modules/banqueaccord/module.py @@ -35,7 +35,7 @@ class BanqueAccordModule(Module, CapBank): MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' CONFIG = BackendConfig(ValueBackendPassword('login', label='Identifiant', regexp='\d+', masked=False), ValueBackendPassword('password', label=u"Code d'accès", regexp='\d+')) diff --git a/modules/banquepopulaire/module.py b/modules/banquepopulaire/module.py index ea70cbb2628b2099144a746f2e57dc2ff2bbe7a2..ff319d17cb0a5164ca91e663e73590ce5105f6f4 100644 --- a/modules/banquepopulaire/module.py +++ b/modules/banquepopulaire/module.py @@ -33,7 +33,7 @@ class BanquePopulaireModule(Module, CapBank): NAME = 'banquepopulaire' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'Banque Populaire' LICENSE = 'AGPLv3+' website_choices = OrderedDict([(k, u'%s (%s)' % (v, k)) for k, v in sorted({ diff --git a/modules/barclays/module.py b/modules/barclays/module.py index 3dcbfee202525ac59d32c1bf1beaee37a2f1e0bf..14fa85a0e4bed19ed72101d7ade2b89ff1e13b81 100644 --- a/modules/barclays/module.py +++ b/modules/barclays/module.py @@ -33,7 +33,7 @@ class BarclaysModule(Module, CapBank): NAME = 'barclays' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'Barclays' LICENSE = 'AGPLv3+' CONFIG = BackendConfig(ValueBackendPassword('login', label=u"N° d'abonné", masked=False), diff --git a/modules/bforbank/module.py b/modules/bforbank/module.py index 9a468b3b859a8a83857f02e81414ed32a7501825..9c5292ecc9cf629641dcf822c78765d57fce981a 100644 --- a/modules/bforbank/module.py +++ b/modules/bforbank/module.py @@ -34,7 +34,7 @@ class BforbankModule(Module, CapBank): MAINTAINER = u'Baptiste Delpey' EMAIL = 'b.delpey@hotmail.fr' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' CONFIG = BackendConfig(ValueBackendPassword('login', label='Identifiant', masked=False), ValueBackendPassword('password', label='Code personnel'), Value('birthdate', label='Date de naissance', regexp='^(\d{2}[/-]?\d{2}[/-]?\d{4}|)$') diff --git a/modules/biplan/module.py b/modules/biplan/module.py index a85be4d91817395d6601b4cf5b7d3cbe653e5d10..31fdf6af8bdeb80cbc89eac3029598cd3e78b790 100644 --- a/modules/biplan/module.py +++ b/modules/biplan/module.py @@ -34,7 +34,7 @@ class BiplanModule(Module, CapCalendarEvent): MAINTAINER = u'Bezleputh' EMAIL = 'carton_ben@yahoo.fr' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' ASSOCIATED_CATEGORIES = [CATEGORIES.CONCERT, CATEGORIES.THEATRE] BROWSER = BiplanBrowser diff --git a/modules/blablacar/module.py b/modules/blablacar/module.py index 9183410d2c899dffc9c1def62c9070d6872b8fe1..f301ab4323276c64c5d5231443872eaa9f3bb6f6 100644 --- a/modules/blablacar/module.py +++ b/modules/blablacar/module.py @@ -33,7 +33,7 @@ class BlablacarModule(Module, CapTravel): MAINTAINER = u'Bezleputh' EMAIL = 'carton_ben@yahoo.fr' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' BROWSER = BlablacarBrowser diff --git a/modules/bnporc/module.py b/modules/bnporc/module.py index 2802519d7a861f2c851ffa4a33a850eed158c333..512521346caf33905e9c4084c3c2d582ecd8735f 100644 --- a/modules/bnporc/module.py +++ b/modules/bnporc/module.py @@ -42,7 +42,7 @@ class BNPorcModule(Module, CapBankTransfer, CapMessages, CapContact): NAME = 'bnporc' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = 'BNP Paribas' CONFIG = BackendConfig( diff --git a/modules/boursorama/module.py b/modules/boursorama/module.py index 799d8c87822ab1c4c6243e25d0fac914d7bb03a2..f625b4e0bb7ce24f8033e8f01a93aeb5743f02e7 100644 --- a/modules/boursorama/module.py +++ b/modules/boursorama/module.py @@ -34,7 +34,7 @@ class BoursoramaModule(Module, CapBank): NAME = 'boursorama' MAINTAINER = u'Gabriel Kerneis' EMAIL = 'gabriel@kerneis.info' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = u'Boursorama' CONFIG = BackendConfig(ValueBackendPassword('login', label='Identifiant', masked=False), diff --git a/modules/bouygues/module.py b/modules/bouygues/module.py index 3f0d4e6e464c119e14e9a641448ed6023572381f..641bef0e28530dcc175a05f4a2ef64fa16197072 100644 --- a/modules/bouygues/module.py +++ b/modules/bouygues/module.py @@ -34,7 +34,7 @@ class BouyguesModule(Module, CapMessages, CapMessagesPost, CapDocument): NAME = 'bouygues' MAINTAINER = u'Bezleputh' EMAIL = 'carton_ben@yahoo.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'Bouygues Télécom French mobile phone provider' LICENSE = 'AGPLv3+' CONFIG = BackendConfig(Value('login', label='Login/Phone number'), diff --git a/modules/bp/module.py b/modules/bp/module.py index c6724e1952f737efa46b6c6bd7b45add1b565fa1..9fb677d1b978552bbc9222dc8fa9816b15112d96 100644 --- a/modules/bp/module.py +++ b/modules/bp/module.py @@ -35,7 +35,7 @@ class BPModule(Module, CapBankTransfer, CapContact): NAME = 'bp' MAINTAINER = u'Nicolas Duhamel' EMAIL = 'nicolas@jombi.fr' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = u'La Banque Postale' CONFIG = BackendConfig(ValueBackendPassword('login', label='Identifiant', masked=False), diff --git a/modules/bred/module.py b/modules/bred/module.py index 05c3167ae59336d850a799bf2b9ebb0f93dbd9b6..454ad83f5886da2dabbf8296e460681da09f8ecd 100644 --- a/modules/bred/module.py +++ b/modules/bred/module.py @@ -34,7 +34,7 @@ class BredModule(Module, CapBank): NAME = 'bred' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'Bred' LICENSE = 'AGPLv3+' CONFIG = BackendConfig(ValueBackendPassword('login', label='Identifiant', masked=False), diff --git a/modules/btmon/module.py b/modules/btmon/module.py index 1566405e05d0a28c7dbbcb211af04e02cd58fbf6..c8a9eb5abfaa9516a72b86c6021be31812b69316 100644 --- a/modules/btmon/module.py +++ b/modules/btmon/module.py @@ -31,7 +31,7 @@ class BtmonModule(Module, CapTorrent): NAME = 'btmon' MAINTAINER = u'Julien Veyssier' EMAIL = 'julien.veyssier@aiur.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'BTMon BitTorrent database' LICENSE = 'AGPLv3+' BROWSER = BtmonBrowser diff --git a/modules/caels/module.py b/modules/caels/module.py index ca494b20f1144d282c090c0efe4bd7376088ce3b..2732c13e2c41d3cc27aedd798944f4f8f60a2b75 100644 --- a/modules/caels/module.py +++ b/modules/caels/module.py @@ -35,7 +35,7 @@ class CaelsModule(Module, CapBank): MAINTAINER = u'Edouard Lambert' EMAIL = 'elambert@budget-insight.com' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' CONFIG = BackendConfig( ValueBackendPassword('login', label='Identifiant', masked=False), ValueBackendPassword('password', label='Mot de passe')) diff --git a/modules/caissedepargne/module.py b/modules/caissedepargne/module.py index 0a33c28b5c1daee29807f952b9aa45ee4cb2dceb..375b3f8d7eb9a4292222f388f321e0aab31e999a 100644 --- a/modules/caissedepargne/module.py +++ b/modules/caissedepargne/module.py @@ -34,7 +34,7 @@ class CaisseEpargneModule(Module, CapBank, CapContact): NAME = 'caissedepargne' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'Caisse d\'Épargne' LICENSE = 'AGPLv3+' BROWSER = CaisseEpargne diff --git a/modules/canalplus/module.py b/modules/canalplus/module.py index 3bc1198571caa2cb69d2bc64d3f8d6ce7ff8f603..eb1361d4279faee45cd97df177d49221ed1814f0 100644 --- a/modules/canalplus/module.py +++ b/modules/canalplus/module.py @@ -36,7 +36,7 @@ class CanalplusModule(Module, CapVideo, CapCollection): NAME = 'canalplus' MAINTAINER = u'Nicolas Duhamel' EMAIL = 'nicolas@jombi.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'Canal Plus French TV' LICENSE = 'AGPLv3+' CONFIG = BackendConfig(Value('quality', label='Quality of videos', choices=['hd', 'sd'], default='hd')) diff --git a/modules/canaltp/module.py b/modules/canaltp/module.py index c7d68256c4bb7badbbd8e98becdb1b3c374a2dcc..10dd6dc82009ce1368244ffb78587dd37e937836 100644 --- a/modules/canaltp/module.py +++ b/modules/canaltp/module.py @@ -30,7 +30,7 @@ class CanalTPModule(Module, CapTravel): NAME = 'canaltp' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = "French trains" BROWSER = CanalTP diff --git a/modules/cappedtv/module.py b/modules/cappedtv/module.py index 501e415f9b0a7b91277aba4107043f3656cfda0b..8fe5c5ea4c4e3047b99b9b8d5359b37f233b1fab 100644 --- a/modules/cappedtv/module.py +++ b/modules/cappedtv/module.py @@ -22,7 +22,7 @@ class CappedModule(Module, CapVideo, CapCollection): NAME = 'cappedtv' MAINTAINER = u'Lord' EMAIL = 'lord@lordtoniok.com' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'Capped.tv demoscene website' LICENSE = 'WTFPLv2' BROWSER = CappedBrowser diff --git a/modules/carrefourbanque/module.py b/modules/carrefourbanque/module.py index ff6fd9553b9a1c82004bde3ecaeb7d04e7e1022d..353d40f48bc282c2668ffc4f1382dc36f985455e 100644 --- a/modules/carrefourbanque/module.py +++ b/modules/carrefourbanque/module.py @@ -33,7 +33,7 @@ class CarrefourBanqueModule(Module, CapBank): NAME = 'carrefourbanque' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'Carrefour Banque' LICENSE = 'AGPLv3+' CONFIG = BackendConfig(ValueBackendPassword('login', label=u'Votre Identifiant Internet', masked=False), diff --git a/modules/cci/module.py b/modules/cci/module.py index f6777f1fce09085b8b41b5109b9f1c0f544899a1..46294e4a486b508d27c512d2ba09025cc751979a 100644 --- a/modules/cci/module.py +++ b/modules/cci/module.py @@ -34,7 +34,7 @@ class CciModule(Module, CapJob): MAINTAINER = u'Bezleputh' EMAIL = 'carton_ben@yahoo.fr' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' BROWSER = CciBrowser diff --git a/modules/centquatre/module.py b/modules/centquatre/module.py index f8516161dfea78db8f7023746016b7833d47ddb5..68c26d49290941d47f3ddc8a24b86435a93c1924 100644 --- a/modules/centquatre/module.py +++ b/modules/centquatre/module.py @@ -33,7 +33,7 @@ class CentQuatreModule(Module, CapCalendarEvent): MAINTAINER = u'Phyks' EMAIL = 'phyks@phyks.me' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' BROWSER = CentQuatreBrowser CONFIG = BackendConfig( diff --git a/modules/champslibres/module.py b/modules/champslibres/module.py index cd72aa6d81c1b947c6e0824845da830489dd9e88..28b63c74a1e11911eedac41f267e6c0c2c924168 100644 --- a/modules/champslibres/module.py +++ b/modules/champslibres/module.py @@ -32,7 +32,7 @@ class ChampslibresModule(Module, CapBook): NAME = 'champslibres' MAINTAINER = u'Florent Fourcot' EMAIL = 'weboob@flo.fourcot.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'Champs Libres (Rennes) Library' LICENSE = 'AGPLv3+' CONFIG = BackendConfig(Value('login', label='Account ID', regexp='^\d{1,15}|$'), diff --git a/modules/chronopost/module.py b/modules/chronopost/module.py index 77ab5ec76e3c9b5bbc3c13445965243d4f15aa27..d57c59c6428dbbe5a8e1773fa237bfcaea935088 100644 --- a/modules/chronopost/module.py +++ b/modules/chronopost/module.py @@ -32,7 +32,7 @@ class ChronopostModule(Module, CapParcel): DESCRIPTION = u'Chronopost website' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' BROWSER = ChronopostBrowser diff --git a/modules/cic/module.py b/modules/cic/module.py index 0e3d68bab3472a645f730217dc92a5574c678317..337909e45d5b670b82ef1f5007edd470b5a610a8 100644 --- a/modules/cic/module.py +++ b/modules/cic/module.py @@ -33,7 +33,7 @@ class CICModule(AbstractModule, CapBankTransfer, CapContact): NAME = 'cic' MAINTAINER = u'Julien Veyssier' EMAIL = 'julien.veyssier@aiur.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'CIC' LICENSE = 'AGPLv3+' CONFIG = BackendConfig(ValueBackendPassword('login', label='Identifiant', masked=False), diff --git a/modules/citelis/module.py b/modules/citelis/module.py index a6eddcbd3ce7ba4edf0c714ae6c7130e2c5f96fe..28e52620e74522ffed6c49174c21b6c728dafae4 100644 --- a/modules/citelis/module.py +++ b/modules/citelis/module.py @@ -34,7 +34,7 @@ class CitelisModule(Module, CapBank): MAINTAINER = u'Laurent Bachelier' EMAIL = 'laurent@bachelier.name' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' BROWSER = CitelisBrowser diff --git a/modules/citibank/module.py b/modules/citibank/module.py index 22818f370585a8fc43e5461576220da205ef0d2a..a75876546c7d13f2c1ae15c5d075d7e05495087a 100644 --- a/modules/citibank/module.py +++ b/modules/citibank/module.py @@ -32,7 +32,7 @@ class CitibankModule(Module, CapBank): NAME = 'citibank' MAINTAINER = u'Oleg Plakhotniuk' EMAIL = 'olegus8@gmail.com' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = u'Citibank' CONFIG = BackendConfig( diff --git a/modules/cmb/module.py b/modules/cmb/module.py index c2090249e007113d1b700cf07e919722cc041de4..a8a24d71ea2255a1930e5c50c8c9862caed3cdaf 100644 --- a/modules/cmb/module.py +++ b/modules/cmb/module.py @@ -34,7 +34,7 @@ class CmbModule(Module, CapBank): NAME = 'cmb' MAINTAINER = u'Edouard Lambert' EMAIL = 'elambert@budget-insight.com' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'Credit Mutuel de Bretagne' LICENSE = 'AGPLv3+' CONFIG = BackendConfig(ValueBackendPassword('login', label='Identifiant', masked=False), diff --git a/modules/cmso/module.py b/modules/cmso/module.py index fd10df0dac54c26fc8464d14b81b786a418ca260..39cfb96de859a2b21bd966567299a63a92857e98 100644 --- a/modules/cmso/module.py +++ b/modules/cmso/module.py @@ -34,7 +34,7 @@ class CmsoModule(Module, CapBank): NAME = 'cmso' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'Crédit Mutuel Sud-Ouest' LICENSE = 'AGPLv3+' CONFIG = BackendConfig(ValueBackendPassword('login', label='Identifiant', masked=False), diff --git a/modules/colisprive/module.py b/modules/colisprive/module.py index 27cb9c9df4c5318e5e3be0807e775ddf758d463e..8e137080671d8808599ef21b90ff18709802a518 100644 --- a/modules/colisprive/module.py +++ b/modules/colisprive/module.py @@ -30,7 +30,7 @@ class ColispriveModule(Module, CapParcel): DESCRIPTION = u'Colisprive parcel tracking website' MAINTAINER = u'Florent Fourcot' EMAIL = 'weboob@flo.fourcot.fr' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' BROWSER = ColispriveBrowser diff --git a/modules/colissimo/module.py b/modules/colissimo/module.py index 6df9c0665a81149fb167eea94d1fd0e405e71437..a34f7f9e5c66711f6cc9f5bdc5c2c6cb3983c049 100644 --- a/modules/colissimo/module.py +++ b/modules/colissimo/module.py @@ -30,7 +30,7 @@ class ColissimoModule(Module, CapParcel): DESCRIPTION = u'Colissimo parcel tracking website' MAINTAINER = u'Florent Fourcot' EMAIL = 'weboob@flo.fourcot.fr' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' BROWSER = ColissimoBrowser diff --git a/modules/cpasbien/module.py b/modules/cpasbien/module.py index 627e9e70294429fa2289f8000b7980b798a404a2..9680e7b2b0b0eea3f1da6bc9a7b96a2bd3cf86b6 100644 --- a/modules/cpasbien/module.py +++ b/modules/cpasbien/module.py @@ -31,7 +31,7 @@ class CpasbienModule(Module, CapTorrent): NAME = 'cpasbien' MAINTAINER = u'Julien Veyssier' EMAIL = 'eneiluj@gmx.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'Cpasbien Torrents BitTorrent tracker' LICENSE = 'AGPLv3+' BROWSER = CpasbienBrowser diff --git a/modules/cragr/module.py b/modules/cragr/module.py index b61b9f861363a7fec02bca3625dba40d66ecd31c..f5f03624a2823949f5bde35d0d963bc2fd4de8c3 100644 --- a/modules/cragr/module.py +++ b/modules/cragr/module.py @@ -34,7 +34,7 @@ class CragrModule(Module, CapBankTransfer): NAME = 'cragr' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'Crédit Agricole' LICENSE = 'AGPLv3+' website_choices = OrderedDict([(k, u'%s (%s)' % (v, k)) for k, v in sorted({ diff --git a/modules/creditcooperatif/module.py b/modules/creditcooperatif/module.py index 083468826fd10aa2fb6c61562f5eb0fc3dcf1073..d3b1c0ddc009f1d42b6d7d3a9c2c6cf40262492e 100644 --- a/modules/creditcooperatif/module.py +++ b/modules/creditcooperatif/module.py @@ -34,7 +34,7 @@ class CreditCooperatifModule(Module, CapBank): NAME = 'creditcooperatif' MAINTAINER = u'Kevin Pouget' EMAIL = 'weboob@kevin.pouget.me' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'Crédit Coopératif' LICENSE = 'AGPLv3+' auth_type = {'particular': "Interface Particuliers", diff --git a/modules/creditdunord/module.py b/modules/creditdunord/module.py index bbdc5a828af2a6308f6b3f029299c1807ea33a26..56096d0b610c90c91924ae71a1ebd901e0a6a64b 100644 --- a/modules/creditdunord/module.py +++ b/modules/creditdunord/module.py @@ -33,7 +33,7 @@ class CreditDuNordModule(Module, CapBank): NAME = 'creditdunord' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'Crédit du Nord, Banque Courtois, Kolb, Nuger, Tarneaud, Société Marseillaise de Crédit' LICENSE = 'AGPLv3+' website_choices = OrderedDict([(k, u'%s (%s)' % (v, k)) for k, v in sorted({ diff --git a/modules/creditdunordpee/module.py b/modules/creditdunordpee/module.py index 286cf24555af57626272a8e20b60acf1141f7eda..7a1fd175a799a96ded6a0476dcf85c8d05768869 100644 --- a/modules/creditdunordpee/module.py +++ b/modules/creditdunordpee/module.py @@ -35,7 +35,7 @@ class CreditdunordpeeModule(Module, CapBank): MAINTAINER = u'Bezleputh' EMAIL = 'carton_ben@yahoo.fr' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' BROWSER = CreditdunordpeeBrowser diff --git a/modules/creditmutuel/module.py b/modules/creditmutuel/module.py index 51e38096adf5def5ac94f9a7da8ea0574ff5c982..a8e7f733850a026d5b324b9fa11fd51fcab4b2c0 100644 --- a/modules/creditmutuel/module.py +++ b/modules/creditmutuel/module.py @@ -38,7 +38,7 @@ class CreditMutuelModule(Module, CapBankTransfer, CapContact): NAME = 'creditmutuel' MAINTAINER = u'Julien Veyssier' EMAIL = 'julien.veyssier@aiur.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'Crédit Mutuel' LICENSE = 'AGPLv3+' CONFIG = BackendConfig(ValueBackendPassword('login', label='Identifiant', regexp='^\d{1,13}\w$', masked=False), diff --git a/modules/cuisineaz/module.py b/modules/cuisineaz/module.py index 987b61efbe4cc12b7643d0166a60171098537550..a88e36cb6b9901d45a03b22b3d550af469546591 100644 --- a/modules/cuisineaz/module.py +++ b/modules/cuisineaz/module.py @@ -35,7 +35,7 @@ class CuisineazModule(Module, CapRecipe): NAME = 'cuisineaz' MAINTAINER = u'Julien Veyssier' EMAIL = 'julien.veyssier@aiur.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'Cuisine AZ French recipe website' LICENSE = 'AGPLv3+' BROWSER = CuisineazBrowser diff --git a/modules/dailymotion/module.py b/modules/dailymotion/module.py index 64c41ebb25dd29e3af5f14dcc423b0d3b2e59485..0104c93d616c99fb398dedc2b2069830554673db 100644 --- a/modules/dailymotion/module.py +++ b/modules/dailymotion/module.py @@ -33,7 +33,7 @@ class DailymotionModule(Module, CapVideo, CapCollection): NAME = 'dailymotion' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'Dailymotion video streaming website' LICENSE = 'AGPLv3+' BROWSER = DailymotionBrowser diff --git a/modules/delubac/module.py b/modules/delubac/module.py index 9aaf93b3f4c381ee936b64e649ad7b1f71a7aa5c..425d440513351e74633241ac135e605d6f465c52 100644 --- a/modules/delubac/module.py +++ b/modules/delubac/module.py @@ -32,7 +32,7 @@ class DelubacModule(Module, CapBank): DESCRIPTION = u'Banque Delubac & Cie' MAINTAINER = u'Noe Rubinstein' EMAIL = 'nru@budget-insight.com' - VERSION = '1.2' + VERSION = '1.3' BROWSER = DelubacBrowser diff --git a/modules/dhl/module.py b/modules/dhl/module.py index fa64a5a22cd5e0765994a1a0648bbb304ee28504..d4982e5fbf460dac1b7b336cf9474767e9649ac1 100644 --- a/modules/dhl/module.py +++ b/modules/dhl/module.py @@ -33,7 +33,7 @@ class DHLModule(Module, CapParcel): MAINTAINER = u'Matthieu Weber' EMAIL = 'mweber+weboob@free.fr' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' def get_parcel_tracking(self, id): """ diff --git a/modules/dlfp/module.py b/modules/dlfp/module.py index 8095df6db67fe4eb547867c29776fcede697f6dd..18b3e47c7ef1b04557636abd3f3b980ccb43d0b6 100644 --- a/modules/dlfp/module.py +++ b/modules/dlfp/module.py @@ -39,7 +39,7 @@ class DLFPModule(Module, CapMessages, CapMessagesPost, CapContent): NAME = 'dlfp' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = "Da Linux French Page news website" CONFIG = BackendConfig(Value('username', label='Username', default=''), diff --git a/modules/dpd/module.py b/modules/dpd/module.py index 88cb6765e46817bec298f5aa87e2ccfb44cb2afb..3e705773ef4aa5de99743481caff8217e2f62231 100644 --- a/modules/dpd/module.py +++ b/modules/dpd/module.py @@ -33,7 +33,7 @@ class DPDModule(Module, CapParcel): MAINTAINER = u'Matthieu Weber' EMAIL = 'mweber+weboob@free.fr' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' BROWSER = DPDBrowser diff --git a/modules/dresdenwetter/module.py b/modules/dresdenwetter/module.py index 558079cd1b3bc9d82dac34c329802693c21ed50f..918386209c76e3fe7c28553c35cbec38dcdb94f9 100644 --- a/modules/dresdenwetter/module.py +++ b/modules/dresdenwetter/module.py @@ -32,7 +32,7 @@ class DresdenWetterModule(Module, CapGauge): NAME = 'dresdenwetter' MAINTAINER = u'Florent Fourcot' EMAIL = 'weboob@flo.fourcot.fr' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = u"Private wetter station Dresden" BROWSER = DresdenWetterBrowser diff --git a/modules/ebonics/module.py b/modules/ebonics/module.py index 802ed86c42d4eb0d665d0e86cab89c5e5930231d..fbec5e6378bf561b7595b9370a7a81f8e242b216 100644 --- a/modules/ebonics/module.py +++ b/modules/ebonics/module.py @@ -32,7 +32,7 @@ class EbonicsModule(Module, CapTranslate): NAME = 'ebonics' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = u'English to Ebonics translation service' BROWSER = StandardBrowser diff --git a/modules/edf/module.py b/modules/edf/module.py index 33b9548f1591dade24da68d6e381c55ed7bc8c92..d61324955fffa665db05d59bf820fdede1121161 100644 --- a/modules/edf/module.py +++ b/modules/edf/module.py @@ -36,7 +36,7 @@ class EdfModule(Module, CapDocument): MAINTAINER = u'Edouard Lambert' EMAIL = 'elambert@budget-insight.com' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' CONFIG = BackendConfig(Value('login', label='E-mail ou Identifiant'), \ ValueBackendPassword('password', label='Mot de passe'), \ Value('website', label='Type de compte', default='par', diff --git a/modules/ehentai/module.py b/modules/ehentai/module.py index 5eaced85d0d7188d1b3f69c10774e79bea1a19f1..e7fef0245ad3b911962699a39b07aec2c7cf64e8 100644 --- a/modules/ehentai/module.py +++ b/modules/ehentai/module.py @@ -36,7 +36,7 @@ class EHentaiModule(Module, CapGallery, CapCollection): NAME = 'ehentai' MAINTAINER = u'Roger Philibert' EMAIL = 'roger.philibert@gmail.com' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'E-Hentai galleries' LICENSE = 'AGPLv3+' BROWSER = EHentaiBrowser diff --git a/modules/entreparticuliers/module.py b/modules/entreparticuliers/module.py index 3d97f04db016b78435b343d31636f75d2cff0004..7db38016dde0006191d114eb61514493ade703df 100644 --- a/modules/entreparticuliers/module.py +++ b/modules/entreparticuliers/module.py @@ -33,7 +33,7 @@ class EntreparticuliersModule(Module, CapHousing): MAINTAINER = u'Bezleputh' EMAIL = 'carton_ben@yahoo.fr' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' BROWSER = EntreparticuliersBrowser diff --git a/modules/europarl/module.py b/modules/europarl/module.py index d3d93b8dcd7df50650ba67f78438759de5e7a94d..cc30c8a990344493a0b2f182836170d0f4ae72db 100644 --- a/modules/europarl/module.py +++ b/modules/europarl/module.py @@ -34,7 +34,7 @@ class EuroparlModule(Module, CapVideo, CapCollection): NAME = 'europarl' MAINTAINER = u'François Revol' EMAIL = 'revol@free.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'Europarl parliamentary video streaming website' LICENSE = 'AGPLv3+' BROWSER = EuroparlBrowser diff --git a/modules/explorimmo/module.py b/modules/explorimmo/module.py index 3fb72022c3e8e7dfe5b59b1f23765b92280cfb6d..13d649d29cbc5c0f86565eecfa8b812214a4f225 100644 --- a/modules/explorimmo/module.py +++ b/modules/explorimmo/module.py @@ -33,7 +33,7 @@ class ExplorimmoModule(Module, CapHousing): MAINTAINER = u'Bezleputh' EMAIL = 'carton_ben@yahoo.fr' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' BROWSER = ExplorimmoBrowser diff --git a/modules/feedly/module.py b/modules/feedly/module.py index 12cc94fbfb19a704bb4213e98e1f01454c64739a..45658d9258f0fccd67de80cf2f20618057ba9c1f 100644 --- a/modules/feedly/module.py +++ b/modules/feedly/module.py @@ -35,7 +35,7 @@ class FeedlyModule(Module, CapMessages, CapCollection): MAINTAINER = u'Bezleputh' EMAIL = 'carton_ben@yahoo.fr' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' STORAGE = {'seen': []} CONFIG = BackendConfig(Value('username', label='Username', default=''), ValueBackendPassword('password', label='Password', default='')) diff --git a/modules/fortuneo/module.py b/modules/fortuneo/module.py index e37609f706083789f8cf14117361d8af8a0d7e0b..2e85eb40ab72dd0e8de52e8417c2e677c18ada87 100644 --- a/modules/fortuneo/module.py +++ b/modules/fortuneo/module.py @@ -32,7 +32,7 @@ class FortuneoModule(Module, CapBank): NAME = 'fortuneo' MAINTAINER = u'Gilles-Alexandre Quenot' EMAIL = 'gilles.quenot@gmail.com' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = u'Fortuneo' CONFIG = BackendConfig( diff --git a/modules/fourchan/module.py b/modules/fourchan/module.py index ad2469115d6ed639f686057b0acc56661f23a9cb..8924d6ba83557955991a80711a12d8eda16fba74 100644 --- a/modules/fourchan/module.py +++ b/modules/fourchan/module.py @@ -32,7 +32,7 @@ class FourChanModule(Module, CapMessages): NAME = 'fourchan' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = '4chan image board' CONFIG = BackendConfig(Value('boards', label='Boards to fetch')) diff --git a/modules/francetelevisions/module.py b/modules/francetelevisions/module.py index 478134c94cc5eb11b38b8ae011b7238c6bffc694..c168c064e951986bb0a136b45aba63a581757c1c 100644 --- a/modules/francetelevisions/module.py +++ b/modules/francetelevisions/module.py @@ -33,7 +33,7 @@ class PluzzModule(Module, CapVideo, CapCollection): NAME = 'francetelevisions' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'France Télévisions video website' LICENSE = 'AGPLv3+' BROWSER = PluzzBrowser diff --git a/modules/freemobile/module.py b/modules/freemobile/module.py index 9bac438d76627d8175966b0e2f5f5684ddee7631..f625e6dbb0757aedfeba9ca145e84855f40baa69 100644 --- a/modules/freemobile/module.py +++ b/modules/freemobile/module.py @@ -32,7 +32,7 @@ class FreeMobileModule(Module, CapDocument): NAME = 'freemobile' MAINTAINER = u'Florent Fourcot' EMAIL = 'weboob@flo.fourcot.fr' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = 'Free Mobile website' CONFIG = BackendConfig(ValueBackendPassword('login', diff --git a/modules/funmooc/module.py b/modules/funmooc/module.py index b863533be8c3aa6910f5ea9fff0efb2ca30beee5..d55a77647645fa7a035333bf8ef25b1466cedd58 100644 --- a/modules/funmooc/module.py +++ b/modules/funmooc/module.py @@ -34,7 +34,7 @@ class FunmoocModule(Module, CapVideo, CapCollection): MAINTAINER = u'Vincent A' EMAIL = 'dev@indigo.re' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' CONFIG = BackendConfig(Value('email', label='Email', default=''), ValueBackendPassword('password', label='Password', diff --git a/modules/ganassurances/module.py b/modules/ganassurances/module.py index 1f99429f8bc2fd67b1ade6df821bab6d04510ab3..1a6d3800e0fec034dea99dfda566db8d52c1dafb 100644 --- a/modules/ganassurances/module.py +++ b/modules/ganassurances/module.py @@ -34,7 +34,7 @@ class GanAssurancesModule(Module, CapBank): NAME = 'ganassurances' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'Groupama' LICENSE = 'AGPLv3+' website_choices = OrderedDict([(k, u'%s (%s)' % (v, k)) for k, v in sorted({ diff --git a/modules/gazelle/module.py b/modules/gazelle/module.py index 9167924957fdb4c483c8f1415ad1a3679f54fdb2..385201c30ba52165eed4fc50a030d20401b733ff 100644 --- a/modules/gazelle/module.py +++ b/modules/gazelle/module.py @@ -31,7 +31,7 @@ class GazelleModule(Module, CapTorrent): NAME = 'gazelle' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'Gazelle-based BitTorrent trackers' LICENSE = 'AGPLv3+' CONFIG = BackendConfig(Value('domain', label='Domain (example "ssl.what.cd")'), diff --git a/modules/gdcvault/module.py b/modules/gdcvault/module.py index c6eac428773b2c23dcf31b07d0a4b058e936a56f..50a58dfe76c81edff2c51b21fa5247238cadfdd2 100644 --- a/modules/gdcvault/module.py +++ b/modules/gdcvault/module.py @@ -35,7 +35,7 @@ class GDCVaultModule(Module, CapVideo, CapCollection): NAME = 'gdcvault' MAINTAINER = u'François Revol' EMAIL = 'revol@free.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'Game Developers Conferences Vault video streaming website' LICENSE = 'AGPLv3+' BROWSER = GDCVaultBrowser diff --git a/modules/gdfsuez/module.py b/modules/gdfsuez/module.py index e2323b329e88af99f5265b1a072c157b01f6b865..c84ec3416ca246a807f75ea99e7710f1d55a670d 100644 --- a/modules/gdfsuez/module.py +++ b/modules/gdfsuez/module.py @@ -30,7 +30,7 @@ class GdfSuezModule(Module, CapDocument): NAME = 'gdfsuez' MAINTAINER = u'Mathieu Jourdan' EMAIL = 'mathieu.jourdan@gresille.org' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = u'GDF-Suez French energy provider' CONFIG = BackendConfig(ValueBackendPassword('login', diff --git a/modules/genericnewspaper/module.py b/modules/genericnewspaper/module.py index b1c6a2daaa950e627ac84113de250f97776156cd..17f86dd2d36b071cbdcd68fd14005321c8c399b9 100644 --- a/modules/genericnewspaper/module.py +++ b/modules/genericnewspaper/module.py @@ -35,7 +35,7 @@ class GenericNewspaperModule(Module): MAINTAINER = u'Julien Hebert' DESCRIPTION = u'Generic module that helps to handle newspapers modules' EMAIL = 'juke@free.fr' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' STORAGE = {'seen': {}} RSS_FEED = None diff --git a/modules/geolocip/module.py b/modules/geolocip/module.py index c9c3ca03b2d73b292021b7ea351b3d0d3f775ad0..579568f6f2fc2400d1f9313b5d0556beec5c0520 100644 --- a/modules/geolocip/module.py +++ b/modules/geolocip/module.py @@ -30,7 +30,7 @@ class GeolocIpModule(Module, CapGeolocIp): NAME = 'geolocip' MAINTAINER = u'Julien Veyssier' EMAIL = 'julien.veyssier@aiur.fr' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = u"GeolocIP IP addresses geolocation service" BROWSER = Browser diff --git a/modules/github/module.py b/modules/github/module.py index 70ce3650d0bdc904be5f9d5513df6134a3aebcc1..dae247be19ed0e6ca8966212fe4c76d838b8dd7e 100644 --- a/modules/github/module.py +++ b/modules/github/module.py @@ -39,7 +39,7 @@ class GithubModule(Module, CapBugTracker): MAINTAINER = u'Vincent A' EMAIL = 'dev@indigo.re' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' CONFIG = BackendConfig(Value('username', label='Username', default=''), ValueBackendPassword('password', label='Password', default='')) diff --git a/modules/gls/module.py b/modules/gls/module.py index 3ebda94a6f6a6e4ef3d422f0d1933bbece8e4ae1..22e887945e2466a5c4c6e263cf2fd542ba041c85 100644 --- a/modules/gls/module.py +++ b/modules/gls/module.py @@ -33,7 +33,7 @@ class GLSModule(Module, CapParcel): MAINTAINER = u'Matthieu Weber' EMAIL = 'mweber+weboob@free.fr' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' BROWSER = GLSBrowser diff --git a/modules/googletranslate/module.py b/modules/googletranslate/module.py index 12ae4c0c6c43405d453b531c30305ce77d913416..e846bd7266053b587120657af7656a1aaf8b5bc5 100644 --- a/modules/googletranslate/module.py +++ b/modules/googletranslate/module.py @@ -32,7 +32,7 @@ class GoogleTranslateModule(Module, CapTranslate): MAINTAINER = u'Lucien Loiseau' EMAIL = 'loiseau.lucien@gmail.com' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' NAME = 'googletranslate' DESCRIPTION = u'Google translation web service' diff --git a/modules/groupamaes/module.py b/modules/groupamaes/module.py index caf2194eb4e29ca7a3e44391bfbe495b60ec8c7c..574055b2aa0a714d2772a5410d3dae070f3aa36a 100644 --- a/modules/groupamaes/module.py +++ b/modules/groupamaes/module.py @@ -34,7 +34,7 @@ class GroupamaesModule(Module, CapBank): MAINTAINER = u'Bezleputh' EMAIL = 'carton_ben@yahoo.fr' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' BROWSER = GroupamaesBrowser diff --git a/modules/guerrillamail/module.py b/modules/guerrillamail/module.py index 75ecb87e76779cadc748897ad23f1104d6b8e85c..6c56c573359e585233ebf455e7b33197977b7c4d 100644 --- a/modules/guerrillamail/module.py +++ b/modules/guerrillamail/module.py @@ -34,7 +34,7 @@ class GuerrillamailModule(Module, CapMessages, CapMessagesPost): MAINTAINER = u'Vincent A' EMAIL = 'dev@indigo.re' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' BROWSER = GuerrillamailBrowser diff --git a/modules/happn/module.py b/modules/happn/module.py index 97fde737365a765157b6ff28a857d56f7e2384a0..55e9b94f6ce283dafcc9a0a3b2b4ebe043c0bde7 100644 --- a/modules/happn/module.py +++ b/modules/happn/module.py @@ -179,7 +179,7 @@ class HappnModule(Module, CapMessages, CapMessagesPost, CapDating, CapContact): MAINTAINER = u'Roger Philibert' EMAIL = 'roger.philibert@gmail.com' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' CONFIG = BackendConfig(Value('username', label='Facebook email'), ValueBackendPassword('password', label='Facebook password')) diff --git a/modules/hds/module.py b/modules/hds/module.py index c794fc93b7fef056fb9436205b25fa6ded26e6bd..577bd0fa386bcd7c9fe7a664657046570ad13d88 100644 --- a/modules/hds/module.py +++ b/modules/hds/module.py @@ -31,7 +31,7 @@ class HDSModule(Module, CapMessages): NAME = 'hds' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = u"Histoires de Sexe French erotic novels" STORAGE = {'seen': []} diff --git a/modules/hsbc/module.py b/modules/hsbc/module.py index 4158b12161fdc213974906595d410913e64e97f8..251acac41d26637b46db288bf45c1e5eb348ee1b 100644 --- a/modules/hsbc/module.py +++ b/modules/hsbc/module.py @@ -33,7 +33,7 @@ class HSBCModule(Module, CapBank): NAME = 'hsbc' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = 'HSBC France' CONFIG = BackendConfig(ValueBackendPassword('login', label='Identifiant', masked=False), diff --git a/modules/hybride/module.py b/modules/hybride/module.py index 6484dc8af4ae6c903d9484ce6eb50ce3791847db..1290a16ba92fc1cd212436a923f10ef7731aedc8 100644 --- a/modules/hybride/module.py +++ b/modules/hybride/module.py @@ -33,7 +33,7 @@ class HybrideModule(Module, CapCalendarEvent): MAINTAINER = u'Bezleputh' EMAIL = 'carton_ben@yahoo.fr' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' ASSOCIATED_CATEGORIES = [CATEGORIES.CINE] BROWSER = HybrideBrowser diff --git a/modules/ideel/module.py b/modules/ideel/module.py index 4e307c85cf3712d616cf4ddb77e610fa8eaf171e..9bbaa9ae12577a07b2a27434316843177a39c2f2 100644 --- a/modules/ideel/module.py +++ b/modules/ideel/module.py @@ -30,7 +30,7 @@ class IdeelModule(Module, CapShop): NAME = 'ideel' MAINTAINER = u'Oleg Plakhotniuk' EMAIL = 'olegus8@gmail.com' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = u'Ideel' CONFIG = BackendConfig( diff --git a/modules/ilmatieteenlaitos/module.py b/modules/ilmatieteenlaitos/module.py index 78aaad78395c385e702c39bd62b253bcfb486b02..d445a7899aec17e63611bdbb0a78d2a95d5a43bb 100644 --- a/modules/ilmatieteenlaitos/module.py +++ b/modules/ilmatieteenlaitos/module.py @@ -31,7 +31,7 @@ class IlmatieteenlaitosModule(Module, CapWeather): NAME = 'ilmatieteenlaitos' MAINTAINER = u'Matthieu Weber' EMAIL = 'mweber+weboob@free.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'Get forecasts from the Ilmatieteenlaitos.fi website' LICENSE = 'AGPLv3+' BROWSER = IlmatieteenlaitosBrowser diff --git a/modules/imdb/module.py b/modules/imdb/module.py index e3f47c93f3288f734684209363cc6cfc5842b73a..f0e0c267234f64b528170238ef796e180dab12be 100644 --- a/modules/imdb/module.py +++ b/modules/imdb/module.py @@ -31,7 +31,7 @@ class ImdbModule(Module, CapCinema): NAME = 'imdb' MAINTAINER = u'Julien Veyssier' EMAIL = 'julien.veyssier@aiur.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'Internet Movie Database service' LICENSE = 'AGPLv3+' BROWSER = ImdbBrowser diff --git a/modules/imgur/module.py b/modules/imgur/module.py index 30810aeedad374f382b7cf9f5de46d9f74aa945f..ec25d30e8e48018f9e1673c448a2b452ee8dd627 100644 --- a/modules/imgur/module.py +++ b/modules/imgur/module.py @@ -74,7 +74,7 @@ class ImgurModule(Module, CapPaste, CapGallery, CapImage): MAINTAINER = u'Vincent A' EMAIL = 'dev@indigo.re' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' BROWSER = ImgurBrowser diff --git a/modules/ina/module.py b/modules/ina/module.py index e2ac2255cdee33967d459d8cbb8022c2114a624a..aee8c392be555da32498688c3275d47bc2bd6d7b 100644 --- a/modules/ina/module.py +++ b/modules/ina/module.py @@ -32,7 +32,7 @@ class InaModule(Module, CapVideo, CapAudio): NAME = 'ina' MAINTAINER = u'Christophe Benz' EMAIL = 'christophe.benz@gmail.com' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'INA French TV video archives' LICENSE = 'AGPLv3+' BROWSER = InaBrowser diff --git a/modules/indeed/module.py b/modules/indeed/module.py index 34548e5ec347bc57f00c6543c2906c184b78c965..574e9ca93dfdf3bb53481f6661dccf039e6e6869 100644 --- a/modules/indeed/module.py +++ b/modules/indeed/module.py @@ -33,7 +33,7 @@ class IndeedModule(Module, CapJob): MAINTAINER = u'Bezleputh' EMAIL = 'carton_ben@yahoo.fr' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' BROWSER = IndeedBrowser diff --git a/modules/ing/module.py b/modules/ing/module.py index af15f5fd29e1dc14708b937ae2b5595ce8801c4c..c35aa52ecb1ae22b0ceb5393eb6a8a627afd29d2 100644 --- a/modules/ing/module.py +++ b/modules/ing/module.py @@ -35,7 +35,7 @@ class INGModule(Module, CapBank, CapDocument): NAME = 'ing' MAINTAINER = u'Florent Fourcot' EMAIL = 'weboob@flo.fourcot.fr' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = 'ING Direct' CONFIG = BackendConfig(ValueBackendPassword('login', diff --git a/modules/inrocks/module.py b/modules/inrocks/module.py index 54c77f7d7468a92fb71a92621f7ffb75100c0d11..b81c49652fb862258a33abe132eb90fce149182b 100644 --- a/modules/inrocks/module.py +++ b/modules/inrocks/module.py @@ -28,7 +28,7 @@ class NewspaperInrocksModule(AbstractModule, CapMessages): MAINTAINER = u'Julien Hebert' EMAIL = 'juke@free.fr' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' STORAGE = {'seen': {}} NAME = 'inrocks' diff --git a/modules/ipapi/module.py b/modules/ipapi/module.py index 5d69f58415ab686165f7db151d1f0581472d8174..a27f2282b3c846f0b15502e7c752f93b8b7ebb11 100644 --- a/modules/ipapi/module.py +++ b/modules/ipapi/module.py @@ -31,7 +31,7 @@ class IpapiModule(Module, CapGeolocIp): NAME = 'ipapi' MAINTAINER = u'Julien Veyssier' EMAIL = 'julien.veyssier@aiur.fr' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = u"IP-API Geolocation API" BROWSER = Browser diff --git a/modules/ipinfodb/module.py b/modules/ipinfodb/module.py index add67c6fdaee9c21732f867ae8183787e521e83b..d6ded507e460d30d3a89571649c4f8d2755e8a47 100644 --- a/modules/ipinfodb/module.py +++ b/modules/ipinfodb/module.py @@ -30,7 +30,7 @@ class IpinfodbModule(Module, CapGeolocIp): NAME = 'ipinfodb' MAINTAINER = u'Julien Veyssier' EMAIL = 'julien.veyssier@aiur.fr' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = u"IPInfoDB IP addresses geolocation service" BROWSER = IpinfodbBrowser diff --git a/modules/itella/module.py b/modules/itella/module.py index 463cdd704aee151d0cce035d1d6d415e11b75ea8..2b095bf3481ecc76a2c3b13babeedb0939ab07a4 100644 --- a/modules/itella/module.py +++ b/modules/itella/module.py @@ -33,7 +33,7 @@ class ItellaModule(Module, CapParcel): MAINTAINER = u'Matthieu Weber' EMAIL = 'mweber+weboob@free.fr' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' BROWSER = ItellaBrowser diff --git a/modules/izneo/module.py b/modules/izneo/module.py index ac6d7a120bb4ade17204bfced284381893ea6e0f..c2017331311d63462b1aeb43e7f202810d98bfab 100644 --- a/modules/izneo/module.py +++ b/modules/izneo/module.py @@ -64,7 +64,7 @@ class IzneoModule(Module, CapGallery): NAME = 'izneo' MAINTAINER = u'Roger Philibert' EMAIL = 'roger.philibert@gmail.com' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'Izneo digital comics' LICENSE = 'AGPLv3+' BROWSER = IzneoBrowser diff --git a/modules/jacquieetmichel/module.py b/modules/jacquieetmichel/module.py index ef44e7bec01149a8142bfe44ea3615719096d069..4fe9b7587ff10659dd26810a924c7905d21cbd51 100644 --- a/modules/jacquieetmichel/module.py +++ b/modules/jacquieetmichel/module.py @@ -32,7 +32,7 @@ class JacquieEtMichelModule(Module, CapVideo, CapCollection): NAME = 'jacquieetmichel' MAINTAINER = u'Roger Philibert' EMAIL = 'roger.philibert@gmail.com' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'Jacquie et Michel TV' LICENSE = 'AGPLv3+' BROWSER = JacquieEtMichelBrowser diff --git a/modules/jcvelaux/module.py b/modules/jcvelaux/module.py index 5c85144b6752e111929e999031cff14447de211e..476afb4ab151c2bc6699bb72cf6f853db7732976 100644 --- a/modules/jcvelaux/module.py +++ b/modules/jcvelaux/module.py @@ -58,7 +58,7 @@ class jcvelauxModule(Module, CapGauge): ', '.join(CITIES)) MAINTAINER = 'Herve Werner' EMAIL = 'dud225@hotmail.com' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3' BROWSER = VelibBrowser diff --git a/modules/jirafeau/module.py b/modules/jirafeau/module.py index 9817de5237c27508986a32caa043ad89e4c09597..d64f4e5b704861258776d4795aaa5c3229d6925f 100644 --- a/modules/jirafeau/module.py +++ b/modules/jirafeau/module.py @@ -40,7 +40,7 @@ class JirafeauModule(Module, CapPaste): MAINTAINER = u'Vincent A' EMAIL = 'dev@indigo.re' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' CONFIG = BackendConfig(Value('base_url', label='Base Jirafeau URL', description='URL of the Jirafeau-based site to use', diff --git a/modules/jvmalin/module.py b/modules/jvmalin/module.py index 7ea23dfa0cbd16ca304fd686ba6d83e615f0e5ed..d1c3841249185ea79fb26dc708e7461501afc2ae 100644 --- a/modules/jvmalin/module.py +++ b/modules/jvmalin/module.py @@ -30,7 +30,7 @@ class JVMalinModule(Module, CapTravel): NAME = 'jvmalin' MAINTAINER = u'Alexandre Lissy' EMAIL = 'github@lissy.me' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = u"Multimodal public transportation for whole Région Centre, France" BROWSER = JVMalin diff --git a/modules/kickass/module.py b/modules/kickass/module.py index 4fbfd1d02f95b96eb5dd82f9c2ac9f1bdf21990b..25d4d86c0d78ab51e8060cb9c3fff34e8c0ec4c7 100644 --- a/modules/kickass/module.py +++ b/modules/kickass/module.py @@ -33,7 +33,7 @@ class KickassModule(Module, CapTorrent): NAME = 'kickass' MAINTAINER = u'Julien Veyssier' EMAIL = 'julien.veyssier@aiur.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'Kickass Torrents BitTorrent tracker' LICENSE = 'AGPLv3+' BROWSER = KickassBrowser diff --git a/modules/kiwibank/module.py b/modules/kiwibank/module.py index 5a006d44b87499b91de970a7cd994e86627e2a50..4060dd1e65319685a96bd3e224d94b3289092faa 100644 --- a/modules/kiwibank/module.py +++ b/modules/kiwibank/module.py @@ -32,7 +32,7 @@ class KiwibankModule(Module, CapBank): NAME = 'kiwibank' MAINTAINER = u'Cédric Félizard' EMAIL = 'cedric@felizard.fr' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = u'Kiwibank' CONFIG = BackendConfig( diff --git a/modules/lacentrale/module.py b/modules/lacentrale/module.py index cdaa851fc93903ef247c7be8b9ae06c61ee30cb4..960b6fea1bbaa6283e60613852063766a4b3cb67 100644 --- a/modules/lacentrale/module.py +++ b/modules/lacentrale/module.py @@ -31,7 +31,7 @@ class LaCentraleModule(Module, CapPriceComparison): NAME = 'lacentrale' MAINTAINER = u'Vicnet' EMAIL = 'vo.publique@gmail.com' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'Vehicule prices at LaCentrale.fr' LICENSE = 'AGPLv3+' BROWSER = LaCentraleBrowser diff --git a/modules/lcl/module.py b/modules/lcl/module.py index f199a2f28344eabc9d492bb03b8d78316c8b1e70..2e248c022f8681b9b97af74b407f025c37e2582d 100644 --- a/modules/lcl/module.py +++ b/modules/lcl/module.py @@ -38,7 +38,7 @@ class LCLModule(Module, CapBankTransfer, CapContact): NAME = 'lcl' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'LCL' LICENSE = 'AGPLv3+' CONFIG = BackendConfig(ValueBackendPassword('login', label='Identifiant', masked=False), diff --git a/modules/ldlc/module.py b/modules/ldlc/module.py index f0393d431cfb2b0b6ea46f614f9cc29ffb9918fd..0191579c7563dcd10d725fca84893b97e4103114 100644 --- a/modules/ldlc/module.py +++ b/modules/ldlc/module.py @@ -35,7 +35,7 @@ class LdlcModule(Module, CapDocument): MAINTAINER = u'Vincent Paredes' EMAIL = 'vparedes@budget-insight.com' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' CONFIG = BackendConfig(Value('login', label='Email'), ValueBackendPassword('password', label='Password'), Value('website', label='Site web', default='part', diff --git a/modules/leboncoin/module.py b/modules/leboncoin/module.py index cf86f8116ed3fb2b41ae85db44a82f4f6993c04c..e1af3ec907a5aebd6cbd4e02beaeb8d57c679946 100644 --- a/modules/leboncoin/module.py +++ b/modules/leboncoin/module.py @@ -33,7 +33,7 @@ class LeboncoinModule(Module, CapHousing): MAINTAINER = u'Bezleputh' EMAIL = 'carton_ben@yahoo.fr' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' BROWSER = LeboncoinBrowser diff --git a/modules/leclercmobile/module.py b/modules/leclercmobile/module.py index d1291db9ad83abd9e95fcb3726e682029f410386..38dec7a263adf4bac420f25034ef15e85035742d 100644 --- a/modules/leclercmobile/module.py +++ b/modules/leclercmobile/module.py @@ -33,7 +33,7 @@ class LeclercMobileModule(Module, CapDocument): NAME = 'leclercmobile' MAINTAINER = u'Florent Fourcot' EMAIL = 'weboob@flo.fourcot.fr' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = 'Leclerc Mobile website' CONFIG = BackendConfig(ValueBackendPassword('login', diff --git a/modules/lefigaro/module.py b/modules/lefigaro/module.py index dc240e3ebf470008eb4f7ae67403c9b6551ede22..42d84a4a662547f3afb871d69670df333e0b7e7c 100644 --- a/modules/lefigaro/module.py +++ b/modules/lefigaro/module.py @@ -32,7 +32,7 @@ class NewspaperFigaroModule(AbstractModule, CapMessages): MAINTAINER = u'Julien Hebert' EMAIL = 'juke@free.fr' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' STORAGE = {'seen': {}} NAME = 'lefigaro' diff --git a/modules/liberation/module.py b/modules/liberation/module.py index 0299e79eeca9a3a440dcb835ed020244e7438b7c..81d76409885b2e8ae1dd478987b3a60e1e7082cd 100644 --- a/modules/liberation/module.py +++ b/modules/liberation/module.py @@ -30,7 +30,7 @@ class NewspaperLibeModule(AbstractModule, CapMessages): MAINTAINER = u'Florent Fourcot' EMAIL = 'weboob@flo.fourcot.fr' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' STORAGE = {'seen': {}} NAME = 'liberation' diff --git a/modules/linuxjobs/module.py b/modules/linuxjobs/module.py index d1e8b3c870d7da17d29c3acae04f5a6ada5ac1ce..302869ccc8b17bf5648e7f35f49aefff7d02ef8d 100644 --- a/modules/linuxjobs/module.py +++ b/modules/linuxjobs/module.py @@ -33,7 +33,7 @@ class LinuxJobsModule(Module, CapJob): MAINTAINER = u'François Revol' EMAIL = 'revol@free.fr' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' BROWSER = LinuxJobsBrowser diff --git a/modules/logicimmo/module.py b/modules/logicimmo/module.py index b8982a586c8908ae7cdd1cabe3e2a89e8351281c..7ad9d23d8bd81da802b83f153f39c4dfcfda6845 100644 --- a/modules/logicimmo/module.py +++ b/modules/logicimmo/module.py @@ -41,7 +41,7 @@ class LogicimmoModule(Module, CapHousing): MAINTAINER = u'Bezleputh' EMAIL = 'carton_ben@yahoo.fr' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' BROWSER = LogicimmoBrowser diff --git a/modules/lolix/module.py b/modules/lolix/module.py index a618f413d5e624caa52d1cff0922dcc553e6f595..8afb507216f5c1608916d99dfe0fbfc90a3ebbba 100644 --- a/modules/lolix/module.py +++ b/modules/lolix/module.py @@ -33,7 +33,7 @@ class LolixModule(Module, CapJob): DESCRIPTION = u'Lolix French free software employment website' MAINTAINER = u'Bezleputh' EMAIL = 'carton_ben@yahoo.fr' - VERSION = '1.2' + VERSION = '1.3' BROWSER = LolixBrowser diff --git a/modules/lutim/module.py b/modules/lutim/module.py index 81bffba65706e184622467ebef62a01df3556c91..bf8b69ad4cec07e430dfcea8dc12342a423cc38a 100644 --- a/modules/lutim/module.py +++ b/modules/lutim/module.py @@ -38,7 +38,7 @@ class LutimModule(Module, CapPaste): MAINTAINER = u'Vincent A' EMAIL = 'dev@indigo.re' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' BROWSER = LutimBrowser diff --git a/modules/lyricsdotcom/module.py b/modules/lyricsdotcom/module.py index b91fff82b2c01e80efbea0ae8cdb9ca346c7940c..7aae26886999d6d4b7eb8d369d32a210f7665dd2 100644 --- a/modules/lyricsdotcom/module.py +++ b/modules/lyricsdotcom/module.py @@ -31,7 +31,7 @@ class LyricsdotcomModule(Module, CapLyrics): NAME = 'lyricsdotcom' MAINTAINER = u'Julien Veyssier' EMAIL = 'eneiluj@gmx.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'Lyrics.com lyrics website' LICENSE = 'AGPLv3+' BROWSER = LyricsdotcomBrowser diff --git a/modules/lyricsmode/module.py b/modules/lyricsmode/module.py index a93c3a37a9fb74eb754e26babea0d85c9790bba5..eda5b0701584feb2f38b63138ffbea3b38a0b4e2 100644 --- a/modules/lyricsmode/module.py +++ b/modules/lyricsmode/module.py @@ -31,7 +31,7 @@ class LyricsmodeModule(Module, CapLyrics): NAME = 'lyricsmode' MAINTAINER = u'Julien Veyssier' EMAIL = 'eneiluj@gmx.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'Lyrics.com lyrics website' LICENSE = 'AGPLv3+' BROWSER = LyricsmodeBrowser diff --git a/modules/lyricsplanet/module.py b/modules/lyricsplanet/module.py index 273c7f4e16ade18c466db5873580d2f45cc200ea..62dcb9270770e26ada10ee3c3564d9b4e54d9bff 100644 --- a/modules/lyricsplanet/module.py +++ b/modules/lyricsplanet/module.py @@ -29,7 +29,7 @@ class LyricsplanetModule(Module, CapLyrics): NAME = 'lyricsplanet' MAINTAINER = u'Julien Veyssier' EMAIL = 'eneiluj@gmx.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'Lyricsplanet.com song lyrics website' LICENSE = 'AGPLv3+' BROWSER = LyricsplanetBrowser diff --git a/modules/mailinator/module.py b/modules/mailinator/module.py index f6afdd811d338cf8d25b006cea699a34f33488be..7e9625dcfa245f012fe023b914b7d42ef7e0ac79 100644 --- a/modules/mailinator/module.py +++ b/modules/mailinator/module.py @@ -36,7 +36,7 @@ class MailinatorModule(Module, CapMessages): MAINTAINER = u'Vincent A' EMAIL = 'dev@indigo.re' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' BROWSER = MailinatorBrowser diff --git a/modules/manpower/module.py b/modules/manpower/module.py index 0e2fa22067f09207945b42e2f081ec29b6314866..779c9a3e02a1648fab71a0c20885c82790c1b68b 100644 --- a/modules/manpower/module.py +++ b/modules/manpower/module.py @@ -33,7 +33,7 @@ class ManpowerModule(Module, CapJob): MAINTAINER = u'Bezleputh' EMAIL = 'carton_ben@yahoo.fr' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' BROWSER = ManpowerBrowser diff --git a/modules/mareeinfo/module.py b/modules/mareeinfo/module.py index 54cfb06399c5e5beab85bdf26735f028e7b53483..d1a920dc7e6603d5022a4d041bf8d5e8cddc2b84 100644 --- a/modules/mareeinfo/module.py +++ b/modules/mareeinfo/module.py @@ -33,7 +33,7 @@ class MareeinfoModule(Module, CapGauge): MAINTAINER = u'Bezleputh' EMAIL = 'carton_ben@yahoo.fr' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' BROWSER = MareeinfoBrowser diff --git a/modules/marmiton/module.py b/modules/marmiton/module.py index a421f819d01ee7c5adb3ab3a2fffac2a4c48dc3b..d0b115ee3b1f8d8707de90f42ca5dbfdb7cf31af 100644 --- a/modules/marmiton/module.py +++ b/modules/marmiton/module.py @@ -31,7 +31,7 @@ class MarmitonModule(Module, CapRecipe): NAME = 'marmiton' MAINTAINER = u'Julien Veyssier' EMAIL = 'julien.veyssier@aiur.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'Marmiton French recipe website' LICENSE = 'AGPLv3+' BROWSER = MarmitonBrowser diff --git a/modules/materielnet/module.py b/modules/materielnet/module.py index e370afb7b09c7c20a91deea0af9dd9777a5e4eca..d48d3e773a6c030afd25133fab19a09e514e4278 100644 --- a/modules/materielnet/module.py +++ b/modules/materielnet/module.py @@ -35,7 +35,7 @@ class MaterielnetModule(Module, CapDocument): MAINTAINER = u'Edouard Lambert' EMAIL = 'elambert@budget-insight.com' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' CONFIG = BackendConfig(Value('login', label='Identifiant'), ValueBackendPassword('password', label='Mot de passe')) diff --git a/modules/mediawiki/module.py b/modules/mediawiki/module.py index cf88c0a5115ebd2c12c185b664528233bbbfaee4..c455d4e703a25e523ce6c75739cb5042794ff0b2 100644 --- a/modules/mediawiki/module.py +++ b/modules/mediawiki/module.py @@ -41,7 +41,7 @@ class MediawikiModule(Module, CapContent, CapImage): NAME = 'mediawiki' MAINTAINER = u'Clément Schreiner' EMAIL = 'clemux@clemux.info' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = 'Wikis running MediaWiki, like Wikipedia' CONFIG = BackendConfig(Value('url', label='URL of the Mediawiki website', default='https://en.wikipedia.org/', regexp='https?://.*'), diff --git a/modules/meteofrance/module.py b/modules/meteofrance/module.py index 3e82fe773cfe0a775c94b5eb2f37c87aa68d637e..0a91590fe19f2e46b0f984396422dd9d44f47f73 100644 --- a/modules/meteofrance/module.py +++ b/modules/meteofrance/module.py @@ -31,7 +31,7 @@ class MeteofranceModule(Module, CapWeather): NAME = 'meteofrance' MAINTAINER = u'Cedric Defortis' EMAIL = 'cedric@aiur.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'Get forecasts from the MeteoFrance website' LICENSE = 'AGPLv3+' BROWSER = MeteofranceBrowser diff --git a/modules/minutes20/module.py b/modules/minutes20/module.py index d3b69645a4b2f5b8c4a477b5a9b5b76cc6010417..130e97521960ae31e9b10fe958f705cb817113d5 100644 --- a/modules/minutes20/module.py +++ b/modules/minutes20/module.py @@ -27,7 +27,7 @@ class Newspaper20minutesModule(AbstractModule, CapMessages): MAINTAINER = u'Julien Hebert' EMAIL = 'juke@free.fr' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' STORAGE = {'seen': {}} NAME = 'minutes20' diff --git a/modules/monster/module.py b/modules/monster/module.py index 5b14a462c6bbc47108d94c027a073fc95a1ee006..27beea2885697297af37ffd441ebbbb9f5dcfedc 100644 --- a/modules/monster/module.py +++ b/modules/monster/module.py @@ -34,7 +34,7 @@ class MonsterModule(Module, CapJob): MAINTAINER = u'Bezleputh' EMAIL = 'carton_ben@yahoo.fr' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' BROWSER = MonsterBrowser diff --git a/modules/myhabit/module.py b/modules/myhabit/module.py index 14ee7a94b9eb7f5b6c3e176aa72ffede9015b653..f7eb47fd853d464bdfffbc1b6ddf90be24418e23 100644 --- a/modules/myhabit/module.py +++ b/modules/myhabit/module.py @@ -30,7 +30,7 @@ class MyHabitModule(Module, CapShop): NAME = 'myhabit' MAINTAINER = u'Oleg Plakhotniuk' EMAIL = 'olegus8@gmail.com' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = u'MYHABIT' CONFIG = BackendConfig( diff --git a/modules/n26/module.py b/modules/n26/module.py index 2887af2c6e456be03f34aec34eaf8ce710a4eabd..f62baa869c3dfa8392f79fcf3d6237ab401b3a34 100644 --- a/modules/n26/module.py +++ b/modules/n26/module.py @@ -33,7 +33,7 @@ class Number26Module(Module, CapBank): MAINTAINER = u'Benjamin Bouvier' EMAIL = 'public+weboob@benj.me' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' BROWSER = Number26Browser diff --git a/modules/nectarine/module.py b/modules/nectarine/module.py index ca3554e9c332f40f24972e05d3c23f49b529c9f5..891937065757777880fe18049a28bc5106ce9cf8 100644 --- a/modules/nectarine/module.py +++ b/modules/nectarine/module.py @@ -28,7 +28,7 @@ class NectarineModule(Module, CapRadio, CapCollection): NAME = 'nectarine' MAINTAINER = u'Thomas Lecavelier' EMAIL = 'thomas-weboob@lecavelier.name' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'Nectarine Demoscene Radio' # License of your module LICENSE = 'AGPLv3+' diff --git a/modules/nettokom/module.py b/modules/nettokom/module.py index b01fa4bdb7a67a30972d70d733df35eedf49c7c1..f990e99ef64820e237b728f153b8c5fdafcc82fe 100644 --- a/modules/nettokom/module.py +++ b/modules/nettokom/module.py @@ -32,7 +32,7 @@ class NettoKomModule(Module, CapDocument): NAME = 'nettokom' MAINTAINER = u'Florent Fourcot' EMAIL = 'weboob@flo.fourcot.fr' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = 'Nettokom website' CONFIG = BackendConfig(ValueBackendPassword('login', diff --git a/modules/newsfeed/module.py b/modules/newsfeed/module.py index 5bdd0d889463a865b4f4133956c20d18c4960556..945e43f6eb5449241424d7a0fb432ff78a97f217 100644 --- a/modules/newsfeed/module.py +++ b/modules/newsfeed/module.py @@ -31,7 +31,7 @@ class NewsfeedModule(Module, CapMessages): NAME = 'newsfeed' MAINTAINER = u'Clément Schreiner' EMAIL = "clemux@clemux.info" - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = "Loads RSS and Atom feeds from any website" LICENSE = "AGPLv3+" CONFIG = BackendConfig(Value('url', label="Atom/RSS feed's url", regexp='https?://.*')) diff --git a/modules/nihonnooto/module.py b/modules/nihonnooto/module.py index 7732831a5d5069945775f48dbea34f2b4af90c07..d17ee8e5b26b9eca0e9af78981de6aa864197835 100644 --- a/modules/nihonnooto/module.py +++ b/modules/nihonnooto/module.py @@ -28,7 +28,7 @@ class NihonNoOtoModule(Module, CapRadio, CapCollection): NAME = 'nihonnooto' MAINTAINER = u'Thomas Lecavelier' EMAIL = 'thomas-weboob@lecavelier.name' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'« Le son du Japon » french operated web radio, diffusing japanese music' # License of your module LICENSE = 'AGPLv3+' diff --git a/modules/nolifetv/module.py b/modules/nolifetv/module.py index d65937045ab594d9122a616db904d92cd03b35c2..e355a92b6d450c9b8dca85b010ec947e6774b5b4 100644 --- a/modules/nolifetv/module.py +++ b/modules/nolifetv/module.py @@ -37,7 +37,7 @@ class NolifeTVModule(Module, CapVideo, CapCollection): NAME = 'nolifetv' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'NolifeTV French video streaming website' LICENSE = 'AGPLv3+' BROWSER = NolifeTVBrowser diff --git a/modules/nova/module.py b/modules/nova/module.py index 4d4e9300c8d3e95e9c9abacb361a6fd8111f415f..b961cae5ed4bf8fe023d50be94848a7f5e2808ad 100644 --- a/modules/nova/module.py +++ b/modules/nova/module.py @@ -36,7 +36,7 @@ class NovaModule(Module, CapRadio, CapCollection): NAME = 'nova' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'Nova French radio' LICENSE = 'AGPLv3+' BROWSER = StandardBrowser diff --git a/modules/okc/module.py b/modules/okc/module.py index 663f63a6b9e4bbe35eff5e9cc3f7ce330efae912..33d6cbfdc81676ab562133c01698451139609fc1 100644 --- a/modules/okc/module.py +++ b/modules/okc/module.py @@ -96,7 +96,7 @@ class OkCModule(Module, CapMessages, CapContact, CapMessagesPost, CapDating): NAME = 'okc' MAINTAINER = u'Roger Philibert' EMAIL = 'roger.philibert@gmail.com' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = u'OkCupid' CONFIG = BackendConfig(Value('username', label='Username'), diff --git a/modules/oney/module.py b/modules/oney/module.py index 7dd7a4e88f666c969e53684a4eb7a0bf7b4e5ea9..c792d91d60b3da8c116f4a4acd7ce1d7b070c0c8 100644 --- a/modules/oney/module.py +++ b/modules/oney/module.py @@ -33,7 +33,7 @@ class OneyModule(Module, CapBank): NAME = 'oney' MAINTAINER = u'Vincet Paredes' EMAIL = 'vparedes@budget-insight.com' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = 'Oney' CONFIG = BackendConfig(ValueBackendPassword('login', label='Identifiant', masked=False), diff --git a/modules/onlinenet/module.py b/modules/onlinenet/module.py index f1fc134c1a7b89ef90d6515e10b9641c266ca44f..687336c572b666cf52527d2f9c7e24fcf7a67e54 100644 --- a/modules/onlinenet/module.py +++ b/modules/onlinenet/module.py @@ -35,7 +35,7 @@ class OnlinenetModule(Module, CapDocument): MAINTAINER = u'Edouard Lambert' EMAIL = 'elambert@budget-insight.com' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' CONFIG = BackendConfig(Value('login', label='Identifiant'), ValueBackendPassword('password', label='Mot de passe')) diff --git a/modules/opacwebaloes/module.py b/modules/opacwebaloes/module.py index 0993b8c663f418b9dd2c720760e85066b385b3d6..85ab28c6c8ae6e3dd0826456d7e4a2d860216683 100644 --- a/modules/opacwebaloes/module.py +++ b/modules/opacwebaloes/module.py @@ -32,7 +32,7 @@ class AloesModule(Module, CapBook): NAME = 'opacwebaloes' MAINTAINER = u'Jeremy Monnet' EMAIL = 'jmonnet@gmail.com' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'Aloes Library software' LICENSE = 'AGPLv3+' CONFIG = BackendConfig(Value('login', label='Account ID', regexp='^\d{1,8}\w$'), diff --git a/modules/openedx/module.py b/modules/openedx/module.py index 85f7c75e68eead977a8e7369a5eef4f378aa322b..18a1120001930f3b51ee033b3201bcbdd4e9fd8e 100644 --- a/modules/openedx/module.py +++ b/modules/openedx/module.py @@ -35,7 +35,7 @@ class OpenEDXModule(Module, CapMessages): MAINTAINER = u'Simon Lipp' EMAIL = 'laiquo@hwold.net' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' CONFIG = BackendConfig(Value('username', label='Username', default=''), ValueBackendPassword('password', label='Password', default=''), diff --git a/modules/opensubtitles/module.py b/modules/opensubtitles/module.py index 01e664760f887e0b137b8a93e6d1a0604e736c47..c834102745737bb3940c220c81d9e8647176c761 100644 --- a/modules/opensubtitles/module.py +++ b/modules/opensubtitles/module.py @@ -32,7 +32,7 @@ class OpensubtitlesModule(Module, CapSubtitle): NAME = 'opensubtitles' MAINTAINER = u'Julien Veyssier' EMAIL = 'julien.veyssier@aiur.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'Opensubtitles subtitle website' LICENSE = 'AGPLv3+' BROWSER = OpensubtitlesBrowser diff --git a/modules/orange/module.py b/modules/orange/module.py index d6b3ddc55aa355585d8634d5be0dde3069b8b5ed..69f4fb72ef5931ddbe67915bde9c661229466f4e 100644 --- a/modules/orange/module.py +++ b/modules/orange/module.py @@ -54,7 +54,7 @@ class OrangeModule(Module, CapAccount, CapMessages, CapMessagesPost, CapDocument NAME = 'orange' MAINTAINER = u'Lucas Nussbaum' EMAIL = 'lucas@lucas-nussbaum.net' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'Orange French mobile phone provider' LICENSE = 'AGPLv3+' CONFIG = BackendConfig(Value('login', label='Login'), diff --git a/modules/ouifm/module.py b/modules/ouifm/module.py index 6961feca8e80f060d55a08c4c42583fe63facccc..52e97784ded777f558b1a8d14a2dd5b2e9a29e81 100644 --- a/modules/ouifm/module.py +++ b/modules/ouifm/module.py @@ -34,7 +34,7 @@ class OuiFMModule(Module, CapRadio, CapCollection): NAME = 'ouifm' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'OÜI FM French radio' LICENSE = 'AGPLv3+' BROWSER = StandardBrowser diff --git a/modules/ovh/module.py b/modules/ovh/module.py index e1d4f1439b9db77137a3ff38aeb7d42dcf5f7d1f..698ed77750931a11f429cf2ddbf942f8df03950b 100644 --- a/modules/ovh/module.py +++ b/modules/ovh/module.py @@ -35,7 +35,7 @@ class OvhModule(Module, CapDocument): MAINTAINER = u'Vincent Paredes' EMAIL = 'vparedes@budget-insight.com' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' CONFIG = BackendConfig(Value('login', label='Account ID'), ValueBackendPassword('password', label='Password')) diff --git a/modules/ovs/module.py b/modules/ovs/module.py index 64a017a9e534c0ce8ae67eb742d22eca86942060..f53446aee5e20e471099ae89f6f6703b4cf34c0c 100644 --- a/modules/ovs/module.py +++ b/modules/ovs/module.py @@ -65,7 +65,7 @@ class OvsModule(Module, CapMessages, CapMessagesPost, CapContact): DESCRIPTION = u'OnVaSortir website. Handles private messages only' MAINTAINER = u'Vincent A' EMAIL = 'dev@indigo.re' - VERSION = '1.2' + VERSION = '1.3' CONFIG = BackendConfig(Value('username', label='Username', default=''), ValueBackendPassword('password', label='Password', default=''), diff --git a/modules/pap/module.py b/modules/pap/module.py index 9e594b2f9249c06679933383382dc35c7f22d048..41d9eebec68d35b1e05bcae537ff8c0c972e561c 100644 --- a/modules/pap/module.py +++ b/modules/pap/module.py @@ -31,7 +31,7 @@ class PapModule(Module, CapHousing): NAME = 'pap' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'French housing website' LICENSE = 'AGPLv3+' BROWSER = PapBrowser diff --git a/modules/pariskiwi/module.py b/modules/pariskiwi/module.py index a39cf2c6b28f3d56fb8886e286fd577f2d8b6f60..7e322ceec74e05966306ad1414928e767fb48176 100644 --- a/modules/pariskiwi/module.py +++ b/modules/pariskiwi/module.py @@ -34,7 +34,7 @@ class ParisKiwiModule(Module, CapCalendarEvent): MAINTAINER = u'Vincent A' EMAIL = 'dev@indigo.re' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' BROWSER = ParisKiwiBrowser diff --git a/modules/paroles2chansons/module.py b/modules/paroles2chansons/module.py index 24f1ffa5f032b4d48e1bd03b9e60d7a73141e91f..243d79b9d9b441ffde02a0bf58f92c231c9df2c5 100644 --- a/modules/paroles2chansons/module.py +++ b/modules/paroles2chansons/module.py @@ -29,7 +29,7 @@ class Paroles2chansonsModule(Module, CapLyrics): NAME = 'paroles2chansons' MAINTAINER = u'Julien Veyssier' EMAIL = 'eneiluj@gmx.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'Paroles2chansons.com song lyrics website' LICENSE = 'AGPLv3+' BROWSER = Paroles2chansonsBrowser diff --git a/modules/parolesmania/module.py b/modules/parolesmania/module.py index bd27f2d4781c34bc6c9ce716ab63f8b126db84fa..749b60dfd59ee703d515c94409491149d3bd06ba 100644 --- a/modules/parolesmania/module.py +++ b/modules/parolesmania/module.py @@ -31,7 +31,7 @@ class ParolesmaniaModule(Module, CapLyrics): NAME = 'parolesmania' MAINTAINER = u'Julien Veyssier' EMAIL = 'eneiluj@gmx.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'Paroles Mania lyrics website' LICENSE = 'AGPLv3+' BROWSER = ParolesmaniaBrowser diff --git a/modules/parolesmusique/module.py b/modules/parolesmusique/module.py index 375de7949d2589e5620151ced9ae5036f36358ea..bba34ad996d95dbc101d244f9db7aa7f02ed4289 100644 --- a/modules/parolesmusique/module.py +++ b/modules/parolesmusique/module.py @@ -29,7 +29,7 @@ class ParolesmusiqueModule(Module, CapLyrics): NAME = 'parolesmusique' MAINTAINER = u'Julien Veyssier' EMAIL = 'eneiluj@gmx.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'paroles-musique lyrics website' LICENSE = 'AGPLv3+' BROWSER = ParolesmusiqueBrowser diff --git a/modules/parolesnet/module.py b/modules/parolesnet/module.py index 40cc4353f043bf8b5c995c4a837cd04697b1abbe..724ac8294ae2e9b0e44c01396ec1b7ad9a038117 100644 --- a/modules/parolesnet/module.py +++ b/modules/parolesnet/module.py @@ -29,7 +29,7 @@ class ParolesnetModule(Module, CapLyrics): NAME = 'parolesnet' MAINTAINER = u'Julien Veyssier' EMAIL = 'julien.veyssier@aiur.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'paroles.net lyrics website' LICENSE = 'AGPLv3+' BROWSER = ParolesnetBrowser diff --git a/modules/pastealacon/module.py b/modules/pastealacon/module.py index f7fad7b2a9635c5aae325fc9f8802ad459000bb1..d04d5ea73423e67f1474f008dd89aeb25199bfcb 100644 --- a/modules/pastealacon/module.py +++ b/modules/pastealacon/module.py @@ -31,7 +31,7 @@ class PastealaconModule(Module, BasePasteModule): NAME = 'pastealacon' MAINTAINER = u'Laurent Bachelier' EMAIL = 'laurent@bachelier.name' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'Paste à la con text sharing tool' LICENSE = 'AGPLv3+' BROWSER = PastealaconBrowser diff --git a/modules/pastebin/module.py b/modules/pastebin/module.py index 8f44b9bba09880539942f7bcfe999f31f183bdbf..914adaa9282352d6e2bd38c5e6e2cc34e6b82a4f 100644 --- a/modules/pastebin/module.py +++ b/modules/pastebin/module.py @@ -30,7 +30,7 @@ class PastebinModule(Module, BasePasteModule): NAME = 'pastebin' MAINTAINER = u'Laurent Bachelier' EMAIL = 'laurent@bachelier.name' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'Pastebin text sharing service' LICENSE = 'AGPLv3+' BROWSER = PastebinBrowser diff --git a/modules/paypal/module.py b/modules/paypal/module.py index d2dbe28e3ea6747f16be581e38af1a3d83cf8f31..c5d81b028bb969bf1fc3e025becf8cbf2babff4c 100644 --- a/modules/paypal/module.py +++ b/modules/paypal/module.py @@ -32,7 +32,7 @@ class PaypalModule(Module, CapBank): NAME = 'paypal' MAINTAINER = u'Laurent Bachelier' EMAIL = 'laurent@bachelier.name' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = u'PayPal' CONFIG = BackendConfig(ValueBackendPassword('login', label='E-mail', masked=False), diff --git a/modules/phpbb/module.py b/modules/phpbb/module.py index e2b70b474845ab682ea24036fad616de8c412918..730e044e534de07369d231f31509aeae4fa36235 100644 --- a/modules/phpbb/module.py +++ b/modules/phpbb/module.py @@ -35,7 +35,7 @@ class PhpBBModule(Module, CapMessages, CapMessagesPost): NAME = 'phpbb' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = "phpBB forum" CONFIG = BackendConfig(Value('url', label='URL of forum', regexp='https?://.*'), diff --git a/modules/piratebay/module.py b/modules/piratebay/module.py index 377e0c0e8b28b36e900017bb098e7c92f1d6ffa7..c37f760c4c00035577b2f19df0d5b4bb91835566 100644 --- a/modules/piratebay/module.py +++ b/modules/piratebay/module.py @@ -32,7 +32,7 @@ class PiratebayModule(Module, CapTorrent): NAME = 'piratebay' MAINTAINER = u'Laurent Bachelier' EMAIL = 'laurent@bachelier.name' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'The Pirate Bay BitTorrent tracker' LICENSE = 'AGPLv3+' BROWSER = PiratebayBrowser diff --git a/modules/pixtoilelibre/module.py b/modules/pixtoilelibre/module.py index 02c675eb89f4de4de03705ba4122f818a4ca281b..56d4e1cbdeda6b62400acdb7e207a665db968088 100644 --- a/modules/pixtoilelibre/module.py +++ b/modules/pixtoilelibre/module.py @@ -41,7 +41,7 @@ class PixtoilelibreModule(Module, CapPaste): MAINTAINER = u'Vincent A' EMAIL = 'dev@indigo.re' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' BROWSER = PixtoilelibreBrowser diff --git a/modules/playme/module.py b/modules/playme/module.py index e6395f03085697eb2cca97098d2d36386d6be4b7..57664ab7e090755e7179db6f7af99c644a0b3920 100644 --- a/modules/playme/module.py +++ b/modules/playme/module.py @@ -89,7 +89,7 @@ class PlayMeModule(Module, CapMessages, CapMessagesPost, CapDating, CapAccount): MAINTAINER = u'Roger Philibert' EMAIL = 'roger.philibert@gmail.com' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' CONFIG = BackendConfig(Value('username', label='Facebook email'), ValueBackendPassword('password', label='Facebook password')) diff --git a/modules/podnapisi/module.py b/modules/podnapisi/module.py index ff648b6ca128681911d1b1c69bcca7c4af99eeb8..7f06a2943f5173fac0aa59c39a38ab6a8d465964 100644 --- a/modules/podnapisi/module.py +++ b/modules/podnapisi/module.py @@ -32,7 +32,7 @@ class PodnapisiModule(Module, CapSubtitle): NAME = 'podnapisi' MAINTAINER = u'Julien Veyssier' EMAIL = 'julien.veyssier@aiur.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'Podnapisi movies and tv series subtitle website' LICENSE = 'AGPLv3+' BROWSER = PodnapisiBrowser diff --git a/modules/poivy/module.py b/modules/poivy/module.py index 1d32e94361176281e89c1e1b1896ea2287a7d2d7..f60037fbf9be595e0be773ef822eba56e55e7f37 100644 --- a/modules/poivy/module.py +++ b/modules/poivy/module.py @@ -33,7 +33,7 @@ class PoivyModule(Module, CapDocument): NAME = 'poivy' MAINTAINER = u'Florent Fourcot' EMAIL = 'weboob@flo.fourcot.fr' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = 'Poivy website' CONFIG = BackendConfig(ValueBackendPassword('login', diff --git a/modules/popolemploi/module.py b/modules/popolemploi/module.py index 3cbd2da527a86698c3015725672453f423ba7c7d..335bed54ace68b7ee6e8607f5a77d6893a9eaebc 100644 --- a/modules/popolemploi/module.py +++ b/modules/popolemploi/module.py @@ -33,7 +33,7 @@ class PopolemploiModule(Module, CapJob): DESCRIPTION = u'Pole Emploi website' MAINTAINER = u'Bezleputh' EMAIL = 'carton_ben@yahoo.fr' - VERSION = '1.2' + VERSION = '1.3' BROWSER = PopolemploiBrowser diff --git a/modules/pornhub/module.py b/modules/pornhub/module.py index 09ad68ef4194d6e38b39023eb8b86852fa2bc203..520e3bae5245128cdedea8fadfa5c361d8338bd3 100644 --- a/modules/pornhub/module.py +++ b/modules/pornhub/module.py @@ -32,7 +32,7 @@ class PornhubModule(Module, CapVideo, CapCollection): NAME = 'pornhub' MAINTAINER = u'Roger Philibert' EMAIL = 'roger.philibert@gmail.com' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'Pornhub pornographic video streaming website' LICENSE = 'AGPLv3+' BROWSER = PornhubBrowser diff --git a/modules/presseurop/module.py b/modules/presseurop/module.py index 885f0e340a37531f1086dca0d1d27d404762baaf..b9d15b500064fa37f80db83196b5661a949ebd32 100644 --- a/modules/presseurop/module.py +++ b/modules/presseurop/module.py @@ -31,7 +31,7 @@ class NewspaperPresseuropModule(AbstractModule, CapMessages): MAINTAINER = u'Florent Fourcot' EMAIL = 'weboob@flo.fourcot.fr' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' STORAGE = {'seen': {}} NAME = 'presseurop' diff --git a/modules/prixcarburants/module.py b/modules/prixcarburants/module.py index d22aceee4dd5041f01886182d0650babd3937860..cb6b293acc591b60fe6c04591664e0590f1a7c0d 100644 --- a/modules/prixcarburants/module.py +++ b/modules/prixcarburants/module.py @@ -32,7 +32,7 @@ class PrixCarburantsModule(Module, CapPriceComparison): NAME = 'prixcarburants' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'French governement website to compare fuel prices' LICENSE = 'AGPLv3+' BROWSER = PrixCarburantsBrowser diff --git a/modules/quvi/module.py b/modules/quvi/module.py index fae5c762ae48459d6d8e8d45151d73e248ce6c23..f09735c4a8c328dc4bfecf8ea83ee028169132d0 100644 --- a/modules/quvi/module.py +++ b/modules/quvi/module.py @@ -43,7 +43,7 @@ class QuviModule(Module, CapVideo): MAINTAINER = u'Vincent A' EMAIL = 'dev@indigo.re' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' BROWSER = None diff --git a/modules/radiofrance/module.py b/modules/radiofrance/module.py index 4e32b4de3e83a4e71168538f177048f2a28eedfe..0f1d40b3e3573a134b6deb76dbead8a70c4f42da 100644 --- a/modules/radiofrance/module.py +++ b/modules/radiofrance/module.py @@ -39,7 +39,7 @@ class RadioFranceModule(Module, CapRadio, CapCollection, CapAudio): NAME = 'radiofrance' MAINTAINER = u'Laurent Bachelier' EMAIL = 'laurent@bachelier.name' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'Radios of Radio France: Inter, Info, Bleu, Culture, Musique, FIP, Le Mouv\'' LICENSE = 'AGPLv3+' BROWSER = RadioFranceBrowser diff --git a/modules/razibus/module.py b/modules/razibus/module.py index 79d4c6d7548ca09dcb85eb327258c5ec74c33f07..6c31db14ccc53ff3e293da650180ca220b489a4e 100644 --- a/modules/razibus/module.py +++ b/modules/razibus/module.py @@ -35,7 +35,7 @@ class RazibusModule(Module, CapCalendarEvent): MAINTAINER = u'Bezleputh' EMAIL = 'carton_ben@yahoo.fr' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' ASSOCIATED_CATEGORIES = [CATEGORIES.CONCERT] BROWSER = RazibusBrowser diff --git a/modules/redmine/module.py b/modules/redmine/module.py index c10b3b14a10cb1525e5f79329b42acf41f0fd86e..2092fb537a12d7f70293f7cbb5052a27aee27e65 100644 --- a/modules/redmine/module.py +++ b/modules/redmine/module.py @@ -37,7 +37,7 @@ class RedmineModule(Module, CapContent, CapBugTracker, CapCollection): NAME = 'redmine' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'The Redmine project management web application' LICENSE = 'AGPLv3+' CONFIG = BackendConfig(Value('url', label='URL of the Redmine website', regexp=r'https?://.*'), diff --git a/modules/regionsjob/module.py b/modules/regionsjob/module.py index aa430ca864af21d524446c780ae2d42f46f383d2..f402bb7310d23a8d7fe1e982b23f8aa274b2759d 100644 --- a/modules/regionsjob/module.py +++ b/modules/regionsjob/module.py @@ -34,7 +34,7 @@ class RegionsjobModule(Module, CapJob): MAINTAINER = u'Bezleputh' EMAIL = 'carton_ben@yahoo.fr' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' BROWSER = RegionsjobBrowser diff --git a/modules/residentadvisor/module.py b/modules/residentadvisor/module.py index d7875b1b448391ccff002c92eda2289df95c796b..da375d2ef1685bb43615d4472e3d732abbe1a929 100644 --- a/modules/residentadvisor/module.py +++ b/modules/residentadvisor/module.py @@ -37,7 +37,7 @@ class ResidentadvisorModule(Module, CapCalendarEvent): MAINTAINER = u'Alexandre Morignot' EMAIL = 'erdnaxeli@cervoi.se' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' BROWSER = ResidentadvisorBrowser diff --git a/modules/s2e/module.py b/modules/s2e/module.py index 4d51098082a8dd41ce31940ec770e407274f8404..f1841d737df2f94e4b35805fb89947c86cfa7914 100644 --- a/modules/s2e/module.py +++ b/modules/s2e/module.py @@ -35,7 +35,7 @@ class S2eModule(Module, CapBank): MAINTAINER = u'Edouard Lambert' EMAIL = 'elambert@budget-insight.com' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' CONFIG = BackendConfig( ValueBackendPassword('login', label='Identifiant', masked=False), diff --git a/modules/sachsen/module.py b/modules/sachsen/module.py index 0c357ef2ee1256e6dbbefb1c45d3c31fc0040878..693df814b686313fcd5aac9af8996f0ab057228a 100644 --- a/modules/sachsen/module.py +++ b/modules/sachsen/module.py @@ -31,7 +31,7 @@ class SachsenLevelModule(Module, CapGauge): NAME = 'sachsen' MAINTAINER = u'Florent Fourcot' EMAIL = 'weboob@flo.fourcot.fr' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = u"Level of Sachsen river" BROWSER = SachsenBrowser diff --git a/modules/seloger/module.py b/modules/seloger/module.py index 3d2bb0d05cbf8c3cf91c41864d289ce06e7b2c61..65ff795b83c68957a315797a65d82754987d06dd 100644 --- a/modules/seloger/module.py +++ b/modules/seloger/module.py @@ -31,7 +31,7 @@ class SeLogerModule(Module, CapHousing): NAME = 'seloger' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'French housing website' LICENSE = 'AGPLv3+' ICON = 'http://static.poliris.com/z/portail/svx/portals/sv6_gen/favicon.png' diff --git a/modules/senscritique/module.py b/modules/senscritique/module.py index 3a4772fb4696d8649b4fab017788f5d298e0b9ac..2284630cae208b223f93197794cfbbf321ca767b 100644 --- a/modules/senscritique/module.py +++ b/modules/senscritique/module.py @@ -32,7 +32,7 @@ class SenscritiqueModule(Module, CapCalendarEvent): MAINTAINER = u'Bezleputh' EMAIL = 'carton_ben@yahoo.fr' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' ASSOCIATED_CATEGORIES = [CATEGORIES.TELE] BROWSER = SenscritiqueBrowser diff --git a/modules/sfr/module.py b/modules/sfr/module.py index 02243c1df0971a8b2ee6b467244adfb25fa9c9dc..66390ee690e18bf252f3de42578e055e0efe01fe 100644 --- a/modules/sfr/module.py +++ b/modules/sfr/module.py @@ -33,7 +33,7 @@ class SfrModule(Module, CapAccount, CapMessages, CapMessagesPost): NAME = 'sfr' MAINTAINER = u'Christophe Benz' EMAIL = 'christophe.benz@gmail.com' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'SFR French mobile phone provider' LICENSE = 'AGPLv3+' CONFIG = BackendConfig(Value('login', label='Login'), diff --git a/modules/societegenerale/module.py b/modules/societegenerale/module.py index 03d504f79420a55a0d2a57bbc014feb0a1d1f827..8c877f74ff353991b98aeff4210b0cbaa98aa3ba 100644 --- a/modules/societegenerale/module.py +++ b/modules/societegenerale/module.py @@ -39,7 +39,7 @@ class SocieteGeneraleModule(Module, CapBankTransfer, CapContact): NAME = 'societegenerale' MAINTAINER = u'Jocelyn Jaubert' EMAIL = 'jocelyn.jaubert@gmail.com' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = u'Société Générale' CONFIG = BackendConfig( diff --git a/modules/somafm/module.py b/modules/somafm/module.py index d304b67c640f0e84abe23bcc93dc2405cd306e24..c9d48a65184bc522abb10f6f9370e555f8c6d8c0 100644 --- a/modules/somafm/module.py +++ b/modules/somafm/module.py @@ -40,7 +40,7 @@ class SomaFMModule(Module, CapRadio, CapCollection): NAME = 'somafm' MAINTAINER = u'Roger Philibert' EMAIL = 'roger.philibert@gmail.com' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'SomaFM web radio' LICENSE = 'AGPLv3+' BROWSER = StandardBrowser diff --git a/modules/spirica/module.py b/modules/spirica/module.py index 5d76ad72639313cb9d04316ae568d8e710b43610..c071d3dd6a43ad8be19c036683a5220bc7175dc6 100644 --- a/modules/spirica/module.py +++ b/modules/spirica/module.py @@ -35,7 +35,7 @@ class SpiricaModule(Module, CapBank): MAINTAINER = u'Edouard Lambert' EMAIL = 'elambert@budget-insight.com' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' CONFIG = BackendConfig( ValueBackendPassword('login', label='Identifiant', masked=False), ValueBackendPassword('password', label='Mot de passe')) diff --git a/modules/sueurdemetal/module.py b/modules/sueurdemetal/module.py index 06fc7739934c3dae721922479ab92dbea46772ee..f38ca4b7b147cb99208b2e6f6781d0bfcab86f7b 100644 --- a/modules/sueurdemetal/module.py +++ b/modules/sueurdemetal/module.py @@ -40,7 +40,7 @@ class SueurDeMetalModule(Module, CapCalendarEvent): MAINTAINER = u'Vincent A' EMAIL = 'dev@indigo.re' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' BROWSER = SueurDeMetalBrowser diff --git a/modules/supertoinette/module.py b/modules/supertoinette/module.py index 34f55f797f5825ddffa32aa77877705dfaf9f524..f8eff358d81ecd47fc5e30fccf4e627121d18b0b 100644 --- a/modules/supertoinette/module.py +++ b/modules/supertoinette/module.py @@ -29,7 +29,7 @@ class SupertoinetteModule(Module, CapRecipe): NAME = 'supertoinette' MAINTAINER = u'Julien Veyssier' EMAIL = 'julien.veyssier@aiur.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'Super Toinette, la cuisine familiale French recipe website' LICENSE = 'AGPLv3+' BROWSER = SupertoinetteBrowser diff --git a/modules/t411/module.py b/modules/t411/module.py index 172ce736abd594ce3c7e733fb0aeb10b02a6b483..d0e30eb3552dfba4c3a6099fdadd54e1195fbb06 100644 --- a/modules/t411/module.py +++ b/modules/t411/module.py @@ -33,7 +33,7 @@ class T411Module(Module, CapTorrent): NAME = 't411' MAINTAINER = u'Julien Veyssier' EMAIL = 'eneiluj@gmx.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'T411 BitTorrent tracker' LICENSE = 'AGPLv3+' CONFIG = BackendConfig(Value('username', label='Username'), diff --git a/modules/tapatalk/module.py b/modules/tapatalk/module.py index f526a94ed3b1486cb0f0caa5edd095fd32a8a140..f39166a4575a4a1070632676fc8dc3ad11ae9f68 100644 --- a/modules/tapatalk/module.py +++ b/modules/tapatalk/module.py @@ -70,7 +70,7 @@ class TapatalkModule(Module, CapMessages): MAINTAINER = u'Simon Lipp' EMAIL = 'laiquo@hwold.net' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' CONFIG = BackendConfig(Value('username', label='Username', default=''), ValueBackendPassword('password', label='Password', default=''), diff --git a/modules/taz/module.py b/modules/taz/module.py index 216538d4566608bdcdec41e5420b1d8af5bdbcf7..265b41f30712fb36e6a72c8ba78a9f2787ecad06 100644 --- a/modules/taz/module.py +++ b/modules/taz/module.py @@ -27,7 +27,7 @@ class NewspaperTazModule(AbstractModule, CapMessages): MAINTAINER = u'Florent Fourcot' EMAIL = 'weboob@flo.fourcot.fr' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' STORAGE = {'seen': {}} NAME = 'taz' diff --git a/modules/tinder/module.py b/modules/tinder/module.py index 63f7cb8b060db640cca70f9e173f06f2608171dc..7a4a1513abfc7d4c1eb6e5476ad94b819c9a7e85 100644 --- a/modules/tinder/module.py +++ b/modules/tinder/module.py @@ -72,7 +72,7 @@ class TinderModule(Module, CapMessages, CapMessagesPost, CapDating): MAINTAINER = u'Roger Philibert' EMAIL = 'roger.philibert@gmail.com' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' CONFIG = BackendConfig(Value('username', label='Facebook email'), ValueBackendPassword('password', label='Facebook password')) diff --git a/modules/torrentz/module.py b/modules/torrentz/module.py index 9132f02609d25a69f7b8540bb7f105ffbba94b28..aec71fc9f3f7b19db3235ea41ce800e61ff6c36c 100644 --- a/modules/torrentz/module.py +++ b/modules/torrentz/module.py @@ -13,7 +13,7 @@ class TorrentzModule(Module, CapTorrent): NAME = 'torrentz' MAINTAINER = u'Matthieu Weber' EMAIL = 'weboob@weber.fi.eu.org' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'Torrentz Search Engine.' LICENSE = 'AGPL' BROWSER = TorrentzBrowser diff --git a/modules/trainline/module.py b/modules/trainline/module.py index ec51b6b9ea105e99ff45355556f1282969860cab..726fd149531fddb8de32b60feea731d74ff18923 100644 --- a/modules/trainline/module.py +++ b/modules/trainline/module.py @@ -35,7 +35,7 @@ class TrainlineModule(Module, CapDocument): MAINTAINER = u'Edouard Lambert' EMAIL = 'elambert@budget-insight.com' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' CONFIG = BackendConfig(Value('login', label='Adresse email'), ValueBackendPassword('password', label='Mot de passe')) diff --git a/modules/transilien/module.py b/modules/transilien/module.py index 1d9660370af4118a90fc21b5c8f7f8ed9db9fe33..42d957ffdae4dadcecd2325e6cac54b3eac2f769 100644 --- a/modules/transilien/module.py +++ b/modules/transilien/module.py @@ -28,7 +28,7 @@ class TransilienModule(Module, CapTravel): NAME = 'transilien' MAINTAINER = u'Julien Hébert' EMAIL = 'juke@free.fr' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = u"Public transportation in the Paris area" BROWSER = Transilien diff --git a/modules/trictractv/module.py b/modules/trictractv/module.py index 6451a3f6ba02cbd98479a48948b2fddc554c6fa6..46eb57f6ab96a1f9e3f1195ac6fc76a89e94bf4d 100644 --- a/modules/trictractv/module.py +++ b/modules/trictractv/module.py @@ -33,7 +33,7 @@ class TricTracTVModule(Module, CapVideo): NAME = 'trictractv' MAINTAINER = u'Benjamin Drieu' EMAIL = 'benjamin@drieu.org' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'TricTrac.tv video website' LICENSE = 'AGPLv3+' BROWSER = TricTracTVBrowser diff --git a/modules/tvsubtitles/module.py b/modules/tvsubtitles/module.py index e16ac82eb90d4ece9fe603c4a69ba44542960b8f..800ad490f266cc4074ba86d80ff65f8bd2874dfa 100644 --- a/modules/tvsubtitles/module.py +++ b/modules/tvsubtitles/module.py @@ -31,7 +31,7 @@ class TvsubtitlesModule(Module, CapSubtitle): NAME = 'tvsubtitles' MAINTAINER = u'Julien Veyssier' EMAIL = 'julien.veyssier@aiur.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'Tvsubtitles subtitle website' LICENSE = 'AGPLv3+' BROWSER = TvsubtitlesBrowser diff --git a/modules/twitter/module.py b/modules/twitter/module.py index 9879acfd3ea21ee178b2527867db1003dc041659..5c6e5f09608cda5893520d354a87fafa244cbde2 100644 --- a/modules/twitter/module.py +++ b/modules/twitter/module.py @@ -36,7 +36,7 @@ class TwitterModule(Module, CapMessages, CapMessagesPost, CapCollection): MAINTAINER = u'Bezleputh' EMAIL = 'carton_ben@yahoo.fr' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' BROWSER = TwitterBrowser STORAGE = {'seen': {}} diff --git a/modules/unsee/module.py b/modules/unsee/module.py index 1bde2f86c2d44529e3b24e011df6f3d846362d03..9f565101c826a6fd865211b51001d6d20d2c8883 100644 --- a/modules/unsee/module.py +++ b/modules/unsee/module.py @@ -43,7 +43,7 @@ class UnseeModule(Module, BasePasteModule): MAINTAINER = u'Vincent A' EMAIL = 'dev@indigo.re' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' BROWSER = UnseeBrowser diff --git a/modules/ups/module.py b/modules/ups/module.py index 30cf26999c329a9c4ed17da532b237ea8c245098..8243e2efbe4177d3aeca130a9b307e571e4b76b8 100644 --- a/modules/ups/module.py +++ b/modules/ups/module.py @@ -32,7 +32,7 @@ class UpsModule(Module, CapParcel): DESCRIPTION = u'UPS website' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' BROWSER = UpsBrowser diff --git a/modules/vicsec/module.py b/modules/vicsec/module.py index a900eccaecf04f48e52789e887b30b7511a5c686..8f37fe2d053090eeb4b0468e5ca873d3b58441cc 100644 --- a/modules/vicsec/module.py +++ b/modules/vicsec/module.py @@ -32,7 +32,7 @@ class VicSecModule(Module, CapShop): NAME = 'vicsec' MAINTAINER = u'Oleg Plakhotniuk' EMAIL = 'olegus8@gmail.com' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = u'Victoria\'s Secret' CONFIG = BackendConfig( diff --git a/modules/vicseccard/module.py b/modules/vicseccard/module.py index 9ed4667b7d25e18b6f6981d3a68cd6a68ae386ae..f3fa74c8cd5194e91fd064c9bb2ceea5557c457e 100644 --- a/modules/vicseccard/module.py +++ b/modules/vicseccard/module.py @@ -31,7 +31,7 @@ class VicSecCardModule(Module, CapBank): NAME = 'vicseccard' MAINTAINER = u'Oleg Plakhotniuk' EMAIL = 'olegus8@gmail.com' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = u'Victoria\'s Secret Angel Card' CONFIG = BackendConfig( diff --git a/modules/vimeo/module.py b/modules/vimeo/module.py index d5c693506203030e4a1dc55fdb3624790a27ebe1..1147993bedd97c3727d964d02987d9f8a758011c 100644 --- a/modules/vimeo/module.py +++ b/modules/vimeo/module.py @@ -37,7 +37,7 @@ class VimeoModule(Module, CapVideo, CapCollection): NAME = 'vimeo' MAINTAINER = u'François Revol' EMAIL = 'revol@free.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'Vimeo video streaming website' LICENSE = 'AGPLv3+' BROWSER = VimeoBrowser diff --git a/modules/vine/module.py b/modules/vine/module.py index 8cf3d5acc5849ef026e3756ead71419de3ee199e..382dad4237141c1263b16bd56b962d8f5d6ea242 100644 --- a/modules/vine/module.py +++ b/modules/vine/module.py @@ -33,7 +33,7 @@ class VineModule(Module, CapVideo): MAINTAINER = u'P4ncake' EMAIL = 'me@p4ncake.fr' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' BROWSER = VineBrowser diff --git a/modules/virginradio/module.py b/modules/virginradio/module.py index e29c8dcdd3ac89c082f66dbf640702b62010f837..5a21435da886534183db259b652773a68fa8a194 100644 --- a/modules/virginradio/module.py +++ b/modules/virginradio/module.py @@ -34,7 +34,7 @@ class VirginRadioModule(Module, CapRadio, CapCollection): NAME = 'virginradio' MAINTAINER = u'Johann Broudin' EMAIL = 'Johann.Broudin@6-8.fr' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = u'VirginRadio french radio' LICENSE = 'AGPLv3+' BROWSER = Browser diff --git a/modules/vlille/module.py b/modules/vlille/module.py index 835ff196360f4c11e1d47a66f38303544be8407e..a13e6413b4a0e0a4ba38e576852f3dbbe82c1abf 100644 --- a/modules/vlille/module.py +++ b/modules/vlille/module.py @@ -32,7 +32,7 @@ class VlilleModule(Module, CapGauge): DESCRIPTION = u'Lille bike renting availability information' MAINTAINER = u'Bezleputh' EMAIL = 'carton_ben@yahoo.fr' - VERSION = '1.2' + VERSION = '1.3' BROWSER = VlilleBrowser diff --git a/modules/voyagessncf/module.py b/modules/voyagessncf/module.py index d6813944ba03a80ced89eb00bf716d8b79e2e51e..d5cd82f72ae0f1b2637983fe1b5d2d98945bb98a 100644 --- a/modules/voyagessncf/module.py +++ b/modules/voyagessncf/module.py @@ -36,7 +36,7 @@ class VoyagesSNCFModule(Module, CapTravel): MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' CONFIG = BackendConfig(Value('age', label='Passenger age', default='ADULT', choices=OrderedDict((('ADULT', '26-59 ans'), ('SENIOR', '60 et +'), diff --git a/modules/weather/module.py b/modules/weather/module.py index 8cc6b3b86722e1c2c26c70a0c041e118867b4de3..d5a1ddf0f2870faf73124bb7d13a749614a5b228 100644 --- a/modules/weather/module.py +++ b/modules/weather/module.py @@ -30,7 +30,7 @@ class WeatherModule(Module, CapWeather): NAME = 'weather' MAINTAINER = u'Arno Renevier' EMAIL = 'arno@renevier.net' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'Get forecasts from weather.com' LICENSE = 'AGPLv3+' BROWSER = WeatherBrowser diff --git a/modules/wellsfargo/module.py b/modules/wellsfargo/module.py index 594042f825f01eebdc3e5c458e06bbef0b2ed6a4..d2ac0d7f158ef68508cc15d7820427aebf7a36ec 100644 --- a/modules/wellsfargo/module.py +++ b/modules/wellsfargo/module.py @@ -32,7 +32,7 @@ class WellsFargoModule(Module, CapBank): NAME = 'wellsfargo' MAINTAINER = u'Oleg Plakhotniuk' EMAIL = 'olegus8@gmail.com' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' DESCRIPTION = u'Wells Fargo' CONFIG = BackendConfig( diff --git a/modules/wordreference/module.py b/modules/wordreference/module.py index c9b48a1e09f82593a3df93c62b9e0c808ced380b..1355ac55720d92d70dc3343bec40a56f3bf4450f 100644 --- a/modules/wordreference/module.py +++ b/modules/wordreference/module.py @@ -31,7 +31,7 @@ class WordReferenceModule(Module, CapTranslate): MAINTAINER = u'Lucien Loiseau' EMAIL = 'loiseau.lucien@gmail.com' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' NAME = 'wordreference' DESCRIPTION = u'Free online translator' diff --git a/modules/yahoo/module.py b/modules/yahoo/module.py index e095581e058d0a17d667fa5152b82de83a44d849..1b11a9048779e7fdca5e688fbcf9b192e5540dd8 100644 --- a/modules/yahoo/module.py +++ b/modules/yahoo/module.py @@ -32,7 +32,7 @@ class YahooModule(Module, CapWeather): NAME = 'yahoo' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'Yahoo! Weather.' LICENSE = 'AGPLv3+' BROWSER = YahooBrowser diff --git a/modules/yomoni/module.py b/modules/yomoni/module.py index c193217b05a84e437a6f0ba04d076f1cdd41c546..76c33ca1af997acfa3b7fbbabec312d2a8b35d7b 100644 --- a/modules/yomoni/module.py +++ b/modules/yomoni/module.py @@ -35,7 +35,7 @@ class YomoniModule(Module, CapBank): MAINTAINER = u'Edouard Lambert' EMAIL = 'elambert@budget-insight.com' LICENSE = 'AGPLv3+' - VERSION = '1.2' + VERSION = '1.3' CONFIG = BackendConfig( ValueBackendPassword('login', label='Adresse email', masked=False), ValueBackendPassword('password', label='Mot de passe')) diff --git a/modules/youjizz/module.py b/modules/youjizz/module.py index 65db6a3324f8bca74128babc4260dc2c4231be9d..d6354f441dba3b426d83a5ffcd1054fd39c8c109 100644 --- a/modules/youjizz/module.py +++ b/modules/youjizz/module.py @@ -32,7 +32,7 @@ class YoujizzModule(Module, CapVideo, CapCollection): NAME = 'youjizz' MAINTAINER = u'Roger Philibert' EMAIL = 'roger.philibert@gmail.com' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'YouJizz pornographic video streaming website' LICENSE = 'AGPLv3+' BROWSER = YoujizzBrowser diff --git a/modules/youporn/module.py b/modules/youporn/module.py index ebe53c6e66b72b93a3ae9e11df94869d0e5d059f..10156575b94639b521595a9752127208acc9267b 100644 --- a/modules/youporn/module.py +++ b/modules/youporn/module.py @@ -33,7 +33,7 @@ class YoupornModule(Module, CapVideo, CapCollection): NAME = 'youporn' MAINTAINER = u'Romain Bignon' EMAIL = 'romain@weboob.org' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'YouPorn pornographic video streaming website' LICENSE = 'AGPLv3+' BROWSER = YoupornBrowser diff --git a/modules/youtube/module.py b/modules/youtube/module.py index df504dda2d874308ab73d428785db033474e911d..7e087144b610ca10007d30460f85b68bbbc1167c 100644 --- a/modules/youtube/module.py +++ b/modules/youtube/module.py @@ -46,7 +46,7 @@ class YoutubeModule(Module, CapVideo, CapCollection): NAME = 'youtube' MAINTAINER = u'Laurent Bachelier' EMAIL = 'laurent@bachelier.name' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'YouTube video streaming website' LICENSE = 'AGPLv3+' BROWSER = YoutubeBrowser diff --git a/setup.py b/setup.py index 7f950d90a5b690f9cb7443454bb44d4d2573a221..57f8fb536886444211dc29cd6ef3503dfc4e04b0 100755 --- a/setup.py +++ b/setup.py @@ -166,7 +166,7 @@ def install_weboob(): setup( name='weboob', - version='1.2', + version='1.3', description='Weboob, Web Outside Of Browsers', long_description=open('README').read(), author='Romain Bignon', diff --git a/tools/boilerplate.py b/tools/boilerplate.py index 5220e848e56490f268e29c12fc84ef47e056c34e..9119f2dfa4ca839a5e0389c8448955738df13dc6 100755 --- a/tools/boilerplate.py +++ b/tools/boilerplate.py @@ -35,7 +35,7 @@ TEMPLATE_PATH = os.getenv( 'TEMPLATE_PATH', os.path.realpath(os.path.join(os.path.dirname(__file__), 'boilerplate_data'))) -VERSION = '1.2' +VERSION = '1.3' TEMPLATES = TemplateLookup(directories=[TEMPLATE_PATH]) diff --git a/weboob/applications/boobank/boobank.py b/weboob/applications/boobank/boobank.py index 4bc2ac8b7ad7d239397cbb16cd1b9f13ed7d6706..274bfa6d7752e2541e82bffe56750210ddd9c355 100644 --- a/weboob/applications/boobank/boobank.py +++ b/weboob/applications/boobank/boobank.py @@ -368,7 +368,7 @@ def flush(self): class Boobank(ReplApplication): APPNAME = 'boobank' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2010-YEAR Romain Bignon, Christophe Benz' CAPS = CapBank, CapBankTransfer DESCRIPTION = "Console application allowing to list your bank accounts and get their balance, " \ diff --git a/weboob/applications/boobathon/boobathon.py b/weboob/applications/boobathon/boobathon.py index c56ccf75eacc556c5caba1725b8f207864812ca6..84e35769c0f716cdce606fb5d31824d9af603f15 100644 --- a/weboob/applications/boobathon/boobathon.py +++ b/weboob/applications/boobathon/boobathon.py @@ -278,7 +278,7 @@ def save(self, message): class Boobathon(ReplApplication): APPNAME = 'boobathon' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2011-YEAR Romain Bignon' DESCRIPTION = 'Console application to participate to a Boobathon.' SHORT_DESCRIPTION = "participate in a Boobathon" diff --git a/weboob/applications/boobcoming/boobcoming.py b/weboob/applications/boobcoming/boobcoming.py index 7b03765cac73d244e64ab46b4ed64144c1dbd851..479df75aabe98d5a5510511b30a21a9ae4fb8d7d 100644 --- a/weboob/applications/boobcoming/boobcoming.py +++ b/weboob/applications/boobcoming/boobcoming.py @@ -183,7 +183,7 @@ def format_obj(self, obj, alias): class Boobcoming(ReplApplication): APPNAME = 'boobcoming' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2012-YEAR Bezleputh' DESCRIPTION = "Console application to see upcoming events." SHORT_DESCRIPTION = "see upcoming events" diff --git a/weboob/applications/boobill/boobill.py b/weboob/applications/boobill/boobill.py index e6e0154cf3e5a4c7ac4d51000bc059dee761abe7..e24d8595902e5360228c135e43186d4335b5bc7a 100644 --- a/weboob/applications/boobill/boobill.py +++ b/weboob/applications/boobill/boobill.py @@ -41,7 +41,7 @@ def get_title(self, obj): class Boobill(ReplApplication): APPNAME = 'boobill' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2012-YEAR Florent Fourcot' DESCRIPTION = 'Console application allowing to get/download documents and bills.' SHORT_DESCRIPTION = "get/download documents and bills" diff --git a/weboob/applications/booblyrics/booblyrics.py b/weboob/applications/booblyrics/booblyrics.py index cf42b362f7dc9cb51413c56b49baf407920f9ecd..38269f0d31cfde485bf9a603b2658938ca2e23b3 100644 --- a/weboob/applications/booblyrics/booblyrics.py +++ b/weboob/applications/booblyrics/booblyrics.py @@ -56,7 +56,7 @@ def get_description(self, obj): class Booblyrics(ReplApplication): APPNAME = 'booblyrics' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2013-YEAR Julien Veyssier' DESCRIPTION = "Console application allowing to search for song lyrics on various websites." SHORT_DESCRIPTION = "search and display song lyrics" diff --git a/weboob/applications/boobmsg/boobmsg.py b/weboob/applications/boobmsg/boobmsg.py index 903d511b472802ace81eee418f6f3c5015056db3..ca2b9dfab28db9c44b1404b0a4ce44e912408490 100644 --- a/weboob/applications/boobmsg/boobmsg.py +++ b/weboob/applications/boobmsg/boobmsg.py @@ -235,7 +235,7 @@ def format_obj(self, obj, alias=None): class Boobmsg(ReplApplication): APPNAME = 'boobmsg' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2010-YEAR Christophe Benz' DESCRIPTION = "Console application allowing to send messages on various websites and " \ "to display message threads and contents." diff --git a/weboob/applications/boobooks/boobooks.py b/weboob/applications/boobooks/boobooks.py index d500467bb482b4a71a6482ad9f928d157e9dc04b..23fcd8f3f3ab4b30f30de33602b8f5b1265de734 100644 --- a/weboob/applications/boobooks/boobooks.py +++ b/weboob/applications/boobooks/boobooks.py @@ -40,7 +40,7 @@ def get_title(self, obj): class Boobooks(ReplApplication): APPNAME = 'boobooks' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2012-YEAR Jeremy Monnet' CAPS = CapBook DESCRIPTION = "Console application allowing to list your books rented or booked at the library, " \ diff --git a/weboob/applications/boobsize/boobsize.py b/weboob/applications/boobsize/boobsize.py index 389bf32616f58eaa9fe8b62d414537cd20cf3fa5..b6ee67d835f514bf901c7688bb9c1e39cf3f5000 100644 --- a/weboob/applications/boobsize/boobsize.py +++ b/weboob/applications/boobsize/boobsize.py @@ -94,7 +94,7 @@ def format_obj(self, obj, alias): class Boobsize(ReplApplication): APPNAME = 'Boobsize' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2013-YEAR Florent Fourcot' DESCRIPTION = "Console application allowing to display various sensors and gauges values." SHORT_DESCRIPTION = "display sensors and gauges values" diff --git a/weboob/applications/boobtracker/boobtracker.py b/weboob/applications/boobtracker/boobtracker.py index 1e15a3c0e7311e16ae8d1c8a3a56b2327b1c3ed2..ad6635b0d5363d187bd18ee16d245bee1c006011 100644 --- a/weboob/applications/boobtracker/boobtracker.py +++ b/weboob/applications/boobtracker/boobtracker.py @@ -105,7 +105,7 @@ def get_description(self, obj): class BoobTracker(ReplApplication): APPNAME = 'boobtracker' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2011-YEAR Romain Bignon' DESCRIPTION = "Console application allowing to create, edit, view bug tracking issues." SHORT_DESCRIPTION = "manage bug tracking issues" diff --git a/weboob/applications/cineoob/cineoob.py b/weboob/applications/cineoob/cineoob.py index e520a116a35038253c649cd18e7855b42d77ce5c..cdcb1728724aedf6a1bcd2f5bdf9679fa3951612 100644 --- a/weboob/applications/cineoob/cineoob.py +++ b/weboob/applications/cineoob/cineoob.py @@ -176,7 +176,7 @@ def get_description(self, obj): class Cineoob(ReplApplication): APPNAME = 'cineoob' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2013-YEAR Julien Veyssier' DESCRIPTION = "Console application allowing to search for movies and persons on various cinema databases " \ ", list persons related to a movie, list movies related to a person and list common movies " \ diff --git a/weboob/applications/comparoob/comparoob.py b/weboob/applications/comparoob/comparoob.py index 36c0c8d2a2d3f79bf6a20d1044bee9c014d5d8d4..645bb7c3c04cbf5f8f0f7faf579f41d1ca8141b4 100644 --- a/weboob/applications/comparoob/comparoob.py +++ b/weboob/applications/comparoob/comparoob.py @@ -75,7 +75,7 @@ def get_description(self, obj): class Comparoob(ReplApplication): APPNAME = 'comparoob' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2012-YEAR Romain Bignon' DESCRIPTION = "Console application to compare products." SHORT_DESCRIPTION = "compare products" diff --git a/weboob/applications/cookboob/cookboob.py b/weboob/applications/cookboob/cookboob.py index 297ffc6ee1efb9d855b1ca57d29f958a23990d2c..a25b53a3a891510ac10818eee5b9495524b87adf 100644 --- a/weboob/applications/cookboob/cookboob.py +++ b/weboob/applications/cookboob/cookboob.py @@ -74,7 +74,7 @@ def get_description(self, obj): class Cookboob(ReplApplication): APPNAME = 'cookboob' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2013-YEAR Julien Veyssier' DESCRIPTION = "Console application allowing to search for recipes on various websites." SHORT_DESCRIPTION = "search and consult recipes" diff --git a/weboob/applications/flatboob/flatboob.py b/weboob/applications/flatboob/flatboob.py index 8fe518c97c561c04f6e8aa3cb9273dcddb61f8ca..300aded06bdc2bbd98520a2fe1f76d3982fb4b0d 100644 --- a/weboob/applications/flatboob/flatboob.py +++ b/weboob/applications/flatboob/flatboob.py @@ -84,7 +84,7 @@ def get_description(self, obj): class Flatboob(ReplApplication): APPNAME = 'flatboob' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2012-YEAR Romain Bignon' DESCRIPTION = "Console application to search for housing." SHORT_DESCRIPTION = "search for housing" diff --git a/weboob/applications/galleroob/galleroob.py b/weboob/applications/galleroob/galleroob.py index 86f8d5f99963e26e83e8e3d5a489e0252d2abace..ae0a7f1235036f68f756b32b4e0dd4719e571395 100644 --- a/weboob/applications/galleroob/galleroob.py +++ b/weboob/applications/galleroob/galleroob.py @@ -47,7 +47,7 @@ def get_description(self, obj): class Galleroob(ReplApplication): APPNAME = 'galleroob' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = u'Copyright(C) 2011-2014 Noé Rubinstein' DESCRIPTION = 'galleroob browses and downloads web image galleries' SHORT_DESCRIPTION = 'browse and download web image galleries' diff --git a/weboob/applications/geolooc/geolooc.py b/weboob/applications/geolooc/geolooc.py index 1a18ff8a4fc84616b0125e9b3b4a852cbaca33c9..60ddb8471f9d2e9425040945afe5e3a32636ddb4 100644 --- a/weboob/applications/geolooc/geolooc.py +++ b/weboob/applications/geolooc/geolooc.py @@ -28,7 +28,7 @@ class Geolooc(ReplApplication): APPNAME = 'geolooc' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2010-YEAR Romain Bignon' DESCRIPTION = "Console application allowing to geolocalize IP addresses." SHORT_DESCRIPTION = "geolocalize IP addresses" diff --git a/weboob/applications/handjoob/handjoob.py b/weboob/applications/handjoob/handjoob.py index 7631bba88a51856a5c6c3f639148bdf1cd9aebed..98c1af0af4729facfd5746165065caa2ddde8f36 100644 --- a/weboob/applications/handjoob/handjoob.py +++ b/weboob/applications/handjoob/handjoob.py @@ -75,7 +75,7 @@ def get_description(self, obj): class Handjoob(ReplApplication): APPNAME = 'handjoob' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2012-YEAR Bezleputh' DESCRIPTION = "Console application to search for a job." SHORT_DESCRIPTION = "search for a job" diff --git a/weboob/applications/havedate/havedate.py b/weboob/applications/havedate/havedate.py index be35981c905b46df3204a0c6cda5260d5b9a1731..3cd126a97739dc5383d6cef12a0ab64327cbec50 100644 --- a/weboob/applications/havedate/havedate.py +++ b/weboob/applications/havedate/havedate.py @@ -48,7 +48,7 @@ def get_description(self, event): class HaveDate(Boobmsg): APPNAME = 'havedate' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2010-YEAR Romain Bignon' DESCRIPTION = "Console application allowing to interact with various dating websites " \ "and to optimize seduction algorithmically." diff --git a/weboob/applications/masstransit/masstransit.py b/weboob/applications/masstransit/masstransit.py index fb25031c42e923f17900ef096fa8e5884c2b15a1..9647f53541869d534c68662d49f602f0a0b212fb 100644 --- a/weboob/applications/masstransit/masstransit.py +++ b/weboob/applications/masstransit/masstransit.py @@ -278,7 +278,7 @@ def refresh(self): class Masstransit(Application): "Application Class" APPNAME = 'masstransit' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2010-YEAR Julien Hébert' DESCRIPTION = "Maemo application allowing to search for train stations and get departure times." SHORT_DESCRIPTION = "search for train stations and departures" diff --git a/weboob/applications/monboob/monboob.py b/weboob/applications/monboob/monboob.py index a3065b2105a399a3763e17af3701045ed0aec2b9..1f7621c3adff7acf6497ff158e186a332b4195b4 100644 --- a/weboob/applications/monboob/monboob.py +++ b/weboob/applications/monboob/monboob.py @@ -89,7 +89,7 @@ def run(self): class Monboob(ReplApplication): APPNAME = 'monboob' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2010-YEAR Romain Bignon' DESCRIPTION = 'Daemon allowing to regularly check for new messages on various websites, ' \ 'and send an email for each message, and post a reply to a message on a website.' diff --git a/weboob/applications/parceloob/parceloob.py b/weboob/applications/parceloob/parceloob.py index 78c903b02799e3cbe302d227addf59a0e9d715c7..1dda5851edf150a821cbe36f6d8f7ebbb52fcba4 100644 --- a/weboob/applications/parceloob/parceloob.py +++ b/weboob/applications/parceloob/parceloob.py @@ -84,7 +84,7 @@ def format_obj(self, obj, alias): class Parceloob(ReplApplication): APPNAME = 'parceloob' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2013-YEAR Romain Bignon' CAPS = CapParcel DESCRIPTION = "Console application to track your parcels." diff --git a/weboob/applications/pastoob/pastoob.py b/weboob/applications/pastoob/pastoob.py index 6e7c3490f105bd3ae7a25d96b05e0d40bcd3dabf..bdd9d91c5e79d282b4c8c864c81dac8941e22b57 100644 --- a/weboob/applications/pastoob/pastoob.py +++ b/weboob/applications/pastoob/pastoob.py @@ -33,7 +33,7 @@ class Pastoob(ReplApplication): APPNAME = 'pastoob' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2011-YEAR Laurent Bachelier' DESCRIPTION = "Console application allowing to post and get pastes from pastebins." SHORT_DESCRIPTION = "post and get pastes from pastebins" diff --git a/weboob/applications/qbooblyrics/qbooblyrics.py b/weboob/applications/qbooblyrics/qbooblyrics.py index 1b1bf6bea75c9123b6bc193b6d4fdb5408ea7c6f..1e4de1180e6dd1a57ce747e14aa42f1daca80c5d 100644 --- a/weboob/applications/qbooblyrics/qbooblyrics.py +++ b/weboob/applications/qbooblyrics/qbooblyrics.py @@ -26,7 +26,7 @@ class QBooblyrics(QtApplication): APPNAME = 'qbooblyrics' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2016 Julien Veyssier' DESCRIPTION = "Qt application allowing to search song lyrics." SHORT_DESCRIPTION = "search lyrics" diff --git a/weboob/applications/qboobmsg/qboobmsg.py b/weboob/applications/qboobmsg/qboobmsg.py index 9b88e7fc5740ecbf4bf5817bfa4eb81f6b2fb823..a39c3be415dc42571ec5d8af93a93d20afc1def9 100644 --- a/weboob/applications/qboobmsg/qboobmsg.py +++ b/weboob/applications/qboobmsg/qboobmsg.py @@ -26,7 +26,7 @@ class QBoobMsg(QtApplication): APPNAME = 'qboobmsg' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2010-YEAR Romain Bignon' DESCRIPTION = "Qt application allowing to read messages on various websites and reply to them." SHORT_DESCRIPTION = "send and receive message threads" diff --git a/weboob/applications/qcineoob/qcineoob.py b/weboob/applications/qcineoob/qcineoob.py index 3adc7e473b38e62d2093cef7315f70b2a3698f6f..898a488cf3fc6a364bb117015f71c9655e2c825b 100644 --- a/weboob/applications/qcineoob/qcineoob.py +++ b/weboob/applications/qcineoob/qcineoob.py @@ -28,7 +28,7 @@ class QCineoob(QtApplication): APPNAME = 'qcineoob' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2013-YEAR Julien Veyssier' DESCRIPTION = "Qt application allowing to search movies, people, torrent and subtitles." SHORT_DESCRIPTION = "search movies, people, torrent and subtitles" diff --git a/weboob/applications/qcookboob/qcookboob.py b/weboob/applications/qcookboob/qcookboob.py index 3ae68941cb57af107a30803615a42a75e729dc6e..bfd672035a81f91175bebd77a2de4b2421ec9322 100644 --- a/weboob/applications/qcookboob/qcookboob.py +++ b/weboob/applications/qcookboob/qcookboob.py @@ -26,7 +26,7 @@ class QCookboob(QtApplication): APPNAME = 'qcookboob' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2013-2014 Julien Veyssier' DESCRIPTION = "Qt application allowing to search recipes." SHORT_DESCRIPTION = "search recipes" diff --git a/weboob/applications/qflatboob/qflatboob.py b/weboob/applications/qflatboob/qflatboob.py index 22b634caa03f7db1a6a2d02935d7d5bb5329dc94..5dd2b261b31ea90c80241da3e71aee9a6eedb071 100644 --- a/weboob/applications/qflatboob/qflatboob.py +++ b/weboob/applications/qflatboob/qflatboob.py @@ -27,7 +27,7 @@ class QFlatBoob(QtApplication): APPNAME = 'qflatboob' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2010-2014 Romain Bignon' DESCRIPTION = "Qt application to search for housing." SHORT_DESCRIPTION = "search for housing" diff --git a/weboob/applications/qhandjoob/qhandjoob.py b/weboob/applications/qhandjoob/qhandjoob.py index b3191b4cc6b17ffda496b20dbe708f5e3af091b2..986c44ce3e7a5d023a34736b4f409b739e5c0a87 100644 --- a/weboob/applications/qhandjoob/qhandjoob.py +++ b/weboob/applications/qhandjoob/qhandjoob.py @@ -27,7 +27,7 @@ class QHandJoob(QtApplication): APPNAME = 'qhandjoob' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = u'Copyright(C) 2013-2014 Sébastien Monel' DESCRIPTION = "Qt application to search for job." SHORT_DESCRIPTION = "search for job" diff --git a/weboob/applications/qhavedate/qhavedate.py b/weboob/applications/qhavedate/qhavedate.py index 2c5708851a35872a723006cb57d738dc8f10175f..6cf81fdd4763e1f38cb3e63d17d0b7097b85516f 100644 --- a/weboob/applications/qhavedate/qhavedate.py +++ b/weboob/applications/qhavedate/qhavedate.py @@ -26,7 +26,7 @@ class QHaveDate(QtApplication): APPNAME = 'qhavedate' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2010-2014 Romain Bignon' DESCRIPTION = "Qt application allowing to interact with various dating websites." SHORT_DESCRIPTION = "interact with dating websites" diff --git a/weboob/applications/qvideoob/qvideoob.py b/weboob/applications/qvideoob/qvideoob.py index 99f0f20ebc6b8fe682588fb0cb41a61cacdfefe3..c5765b7bce9c07a2afcbad2456ce10ccef7d0745 100644 --- a/weboob/applications/qvideoob/qvideoob.py +++ b/weboob/applications/qvideoob/qvideoob.py @@ -26,7 +26,7 @@ class QVideoob(QtApplication): APPNAME = 'qvideoob' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2010-2014 Romain Bignon' DESCRIPTION = "Qt application allowing to search videos on various websites and play them." SHORT_DESCRIPTION = "search and play videos" diff --git a/weboob/applications/qwebcontentedit/qwebcontentedit.py b/weboob/applications/qwebcontentedit/qwebcontentedit.py index c5a10ee7ecb776671e111aa312fbd1f5c4d7bb84..1c6d8228f778cf82087025f8b7baf086ded04958 100644 --- a/weboob/applications/qwebcontentedit/qwebcontentedit.py +++ b/weboob/applications/qwebcontentedit/qwebcontentedit.py @@ -25,7 +25,7 @@ class QWebContentEdit(QtApplication): APPNAME = 'qwebcontentedit' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = u'Copyright(C) 2011-2014 Clément Schreiner' DESCRIPTION = "Qt application allowing to manage content of various websites." SHORT_DESCRIPTION = "manage websites content" diff --git a/weboob/applications/qweboobcfg/qweboobcfg.py b/weboob/applications/qweboobcfg/qweboobcfg.py index 2752edafb837d97dec4e28633faf9f12a1be230c..e85a45f0500baed2813d30e2a7bc908fe84dc608 100644 --- a/weboob/applications/qweboobcfg/qweboobcfg.py +++ b/weboob/applications/qweboobcfg/qweboobcfg.py @@ -23,7 +23,7 @@ class QWeboobCfg(QtApplication): APPNAME = 'qweboobcfg' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2010-2014 Romain Bignon' DESCRIPTION = "weboob-config-qt is a graphical application to add/edit/remove backends, " \ "and to register new website accounts." diff --git a/weboob/applications/radioob/radioob.py b/weboob/applications/radioob/radioob.py index 0ee1f0277bde3ceb04debcca8813e8600eee1f54..cc90be07e6726de8e1eb2c1cd589bb95791b12eb 100644 --- a/weboob/applications/radioob/radioob.py +++ b/weboob/applications/radioob/radioob.py @@ -125,7 +125,7 @@ def get_description(self, obj): class Radioob(ReplApplication): APPNAME = 'radioob' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2010-YEAR Romain Bignon\nCopyright(C) YEAR Pierre Maziere' DESCRIPTION = "Console application allowing to search for web radio stations, listen to them and get information " \ "like the current song." diff --git a/weboob/applications/shopoob/shopoob.py b/weboob/applications/shopoob/shopoob.py index 8066a1255b867ed30d22bf5a76654d6a2591106d..18e4287cc76287b54105b11c869627982ca4d477 100644 --- a/weboob/applications/shopoob/shopoob.py +++ b/weboob/applications/shopoob/shopoob.py @@ -90,7 +90,7 @@ def flush(self): class Shopoob(ReplApplication): APPNAME = 'shopoob' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2015 Christophe Lampin' DESCRIPTION = 'Console application to obtain details and status of e-commerce orders.' SHORT_DESCRIPTION = "Obtain details and status of e-commerce orders" diff --git a/weboob/applications/suboob/suboob.py b/weboob/applications/suboob/suboob.py index 484adb72c8c55a830b8bd4f7dee5004f073d6889..f6c82f760d0a50e1747f238ce3938063da6f08ad 100644 --- a/weboob/applications/suboob/suboob.py +++ b/weboob/applications/suboob/suboob.py @@ -85,7 +85,7 @@ def get_description(self, obj): class Suboob(ReplApplication): APPNAME = 'suboob' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2013-YEAR Julien Veyssier' DESCRIPTION = "Console application allowing to search for subtitles on various services " \ "and download them." diff --git a/weboob/applications/translaboob/translaboob.py b/weboob/applications/translaboob/translaboob.py index 9ee9ab169b9ed17cfe8422e94f299424d6e238f6..f83ccf47723dd6875a320b55c8acdb49a1f3fac9 100644 --- a/weboob/applications/translaboob/translaboob.py +++ b/weboob/applications/translaboob/translaboob.py @@ -47,7 +47,7 @@ def format_obj(self, obj, alias): class Translaboob(ReplApplication): APPNAME = 'translaboob' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2012-YEAR Lucien Loiseau' DESCRIPTION = "Console application to translate text from one language to another" SHORT_DESCRIPTION = "translate text from one language to another" diff --git a/weboob/applications/traveloob/traveloob.py b/weboob/applications/traveloob/traveloob.py index b2e76074847baa0e21213fba525ef5606743f456..6dbd2b723d5556202ba3324cafd722f2815da57b 100644 --- a/weboob/applications/traveloob/traveloob.py +++ b/weboob/applications/traveloob/traveloob.py @@ -66,7 +66,7 @@ def get_title(self, obj): class Traveloob(ReplApplication): APPNAME = 'traveloob' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2010-YEAR Romain Bignon' DESCRIPTION = "Console application allowing to search for train stations and get departure times." SHORT_DESCRIPTION = "search for train stations and departures" diff --git a/weboob/applications/videoob/videoob.py b/weboob/applications/videoob/videoob.py index ccb3f59e41d2ab6f20567aaadcd310e8a9ea2a5d..2376635fd744133ddf43a574a8b9124d2046e4e3 100644 --- a/weboob/applications/videoob/videoob.py +++ b/weboob/applications/videoob/videoob.py @@ -54,7 +54,7 @@ def get_description(self, obj): class Videoob(ReplApplication): APPNAME = 'videoob' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2010-YEAR Christophe Benz, Romain Bignon, John Obbele' DESCRIPTION = "Console application allowing to search for videos on various websites, " \ "play and download them and get information." diff --git a/weboob/applications/webcontentedit/webcontentedit.py b/weboob/applications/webcontentedit/webcontentedit.py index d8948db7115792c5cad5fe37825161a8c3bf7387..d647764c962c8c7d453fc497a6691d73ac252fa6 100644 --- a/weboob/applications/webcontentedit/webcontentedit.py +++ b/weboob/applications/webcontentedit/webcontentedit.py @@ -34,7 +34,7 @@ class WebContentEdit(ReplApplication): APPNAME = 'webcontentedit' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2010-YEAR Romain Bignon' DESCRIPTION = "Console application allowing to display and edit contents on various websites." SHORT_DESCRIPTION = "manage websites content" diff --git a/weboob/applications/weboobcfg/weboobcfg.py b/weboob/applications/weboobcfg/weboobcfg.py index a25218759a53c3747a4e18759c78ea985f76eeae..478fb723aa3756bd5b847b9f5e2eb78e4df75fde 100644 --- a/weboob/applications/weboobcfg/weboobcfg.py +++ b/weboob/applications/weboobcfg/weboobcfg.py @@ -76,7 +76,7 @@ def format_dict(self, minfo): class WeboobCfg(ReplApplication): APPNAME = 'weboob-config' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2010-YEAR Christophe Benz, Romain Bignon' DESCRIPTION = "Weboob-Config is a console application to add/edit/remove backends, " \ "and to register new website accounts." diff --git a/weboob/applications/weboobcli/weboobcli.py b/weboob/applications/weboobcli/weboobcli.py index 4b11378c06580555a2ebfb9dfcdf8064a3231de7..2c72289d0bd52123a1d489393f3d88da7fc85f3b 100644 --- a/weboob/applications/weboobcli/weboobcli.py +++ b/weboob/applications/weboobcli/weboobcli.py @@ -27,7 +27,7 @@ class WeboobCli(ReplApplication): APPNAME = 'weboob-cli' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2010-YEAR Romain Bignon' SYNOPSIS = 'Usage: %prog [-dqv] [-b backends] [-cnfs] capability method [arguments..]\n' SYNOPSIS += ' %prog [--help] [--version]' diff --git a/weboob/applications/weboobdebug/weboobdebug.py b/weboob/applications/weboobdebug/weboobdebug.py index be84655b9e298aa014a91cbebe87ad262931578a..357abff0b2ac61c22c6e8df570447210afb1cde1 100644 --- a/weboob/applications/weboobdebug/weboobdebug.py +++ b/weboob/applications/weboobdebug/weboobdebug.py @@ -26,7 +26,7 @@ class WeboobDebug(Application): APPNAME = 'weboobdebug' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2010-YEAR Christophe Benz' DESCRIPTION = "Weboob-Debug is a console application to debug backends." SHORT_DESCRIPTION = "debug backends" diff --git a/weboob/applications/weboobrepos/weboobrepos.py b/weboob/applications/weboobrepos/weboobrepos.py index ceddb8552503ffa0e7a7b3038be15f20f9496536..c7da460388d8bb729fbdd82cc90762148e730c60 100644 --- a/weboob/applications/weboobrepos/weboobrepos.py +++ b/weboob/applications/weboobrepos/weboobrepos.py @@ -39,7 +39,7 @@ class WeboobRepos(ReplApplication): APPNAME = 'weboob-repos' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2012-YEAR Romain Bignon' DESCRIPTION = "Weboob-repos is a console application to manage a Weboob Repository." SHORT_DESCRIPTION = "manage a weboob repository" diff --git a/weboob/applications/weboorrents/weboorrents.py b/weboob/applications/weboorrents/weboorrents.py index 9e2869304fd1c185f68af62fbeebd573e33cb710..c6f451f93db8f8b736b7e6fad37414862823beee 100644 --- a/weboob/applications/weboorrents/weboorrents.py +++ b/weboob/applications/weboorrents/weboorrents.py @@ -90,7 +90,7 @@ def get_description(self, obj): class Weboorrents(ReplApplication): APPNAME = 'weboorrents' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2010-YEAR Romain Bignon' DESCRIPTION = "Console application allowing to search for torrents on various trackers " \ "and download .torrent files." diff --git a/weboob/applications/wetboobs/wetboobs.py b/weboob/applications/wetboobs/wetboobs.py index fd12d4511c264be18308d379134712eaf9984001..54c90d549d58d87b36a636310ab7ef658987c5be 100644 --- a/weboob/applications/wetboobs/wetboobs.py +++ b/weboob/applications/wetboobs/wetboobs.py @@ -59,7 +59,7 @@ def get_title(self, obj): class WetBoobs(ReplApplication): APPNAME = 'wetboobs' - VERSION = '1.2' + VERSION = '1.3' COPYRIGHT = 'Copyright(C) 2010-YEAR Romain Bignon' DESCRIPTION = "Console application allowing to display weather and forecasts in your city." SHORT_DESCRIPTION = "display weather and forecasts" diff --git a/weboob/core/ouiboube.py b/weboob/core/ouiboube.py index bfb51b056c2d840b065c0e94938a840c59051607..6bfe202ee4a82c4899b61acee5fd0f491ff6f674 100644 --- a/weboob/core/ouiboube.py +++ b/weboob/core/ouiboube.py @@ -53,7 +53,7 @@ class WebNip(object): :param scheduler: what scheduler to use; default is :class:`weboob.core.scheduler.Scheduler` :type scheduler: :class:`weboob.core.scheduler.IScheduler` """ - VERSION = '1.2' + VERSION = '1.3' def __init__(self, modules_path=None, storage=None, scheduler=None): self.logger = getLogger('weboob') diff --git a/weboob/tools/capabilities/gallery/genericcomicreader.py b/weboob/tools/capabilities/gallery/genericcomicreader.py index 1e1ca19bd4e48ef5a364f0717a1fcaed00a9d2cc..456fe4c32b26014885d0906eadccae4fcf3a6a63 100644 --- a/weboob/tools/capabilities/gallery/genericcomicreader.py +++ b/weboob/tools/capabilities/gallery/genericcomicreader.py @@ -66,7 +66,7 @@ class GenericComicReaderModule(Module, CapGallery): NAME = 'genericcomicreader' MAINTAINER = u'Noé Rubinstein' EMAIL = 'noe.rubinstein@gmail.com' - VERSION = '1.2' + VERSION = '1.3' DESCRIPTION = 'Generic comic reader backend; subclasses implement specific sites' LICENSE = 'AGPLv3+' BROWSER = GenericComicReaderBrowser diff --git a/weboob/tools/capabilities/messages/GenericModule.py b/weboob/tools/capabilities/messages/GenericModule.py index 5816fb8b51256fd1a1589e9a0d2eb4273f9b694e..342da45fc3707e2732dcc642d0cb0efaa98600fe 100644 --- a/weboob/tools/capabilities/messages/GenericModule.py +++ b/weboob/tools/capabilities/messages/GenericModule.py @@ -31,7 +31,7 @@ class GenericNewspaperModule(Module, CapMessages): """ MAINTAINER = u'Julien Hebert' EMAIL = 'juke@free.fr' - VERSION = '1.2' + VERSION = '1.3' LICENSE = 'AGPLv3+' STORAGE = {'seen': {}} RSS_FEED = None