From 55fd4d63b69b0f8c4087b4b4477e8004d35165d1 Mon Sep 17 00:00:00 2001 From: Stefano Date: Wed, 9 Oct 2013 20:14:46 +0200 Subject: GooIm: multiple downloads, resume and unlimited chunks are allowed even in free mode (cherry picked from commit b1363d629fc18fa570295b3777e4f9ee1bed37e3) --- pyload/plugins/hoster/GooIm.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'pyload/plugins') diff --git a/pyload/plugins/hoster/GooIm.py b/pyload/plugins/hoster/GooIm.py index 5a9d98396..f96e6e6cc 100644 --- a/pyload/plugins/hoster/GooIm.py +++ b/pyload/plugins/hoster/GooIm.py @@ -24,7 +24,7 @@ class GooIm(SimpleHoster): __name__ = "GooIm" __type__ = "hoster" __pattern__ = r"http://(?:www\.)?goo\.im/.+" - __version__ = "0.01" + __version__ = "0.02" __description__ = """Goo.im hoster plugin""" __author_name__ = ("stickell") __author_mail__ = ("l.stickell@yahoo.it") @@ -32,6 +32,10 @@ class GooIm(SimpleHoster): FILE_NAME_PATTERN = r'

Filename: (?P.+)

' FILE_OFFLINE_PATTERN = r'The file you requested was not found' + def setup(self): + self.chunkLimit = -1 + self.multiDL = self.resumeDownload = True + def handleFree(self): self.html = self.load(self.pyfile.url) m = re.search(r'MD5sum: (?P[0-9a-z]{32})', self.html) -- cgit v1.2.3