diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-03-14 10:26:27 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-03-14 10:26:27 +0100 |
commit | 7ac5a3f89085b9e0ec2abf17c6db86c7bd9f5b77 (patch) | |
tree | 2fdb10523e3e5d18792954bc42f2892e1383949c /module/plugins/hoster | |
parent | [NetloadIn] Update account (diff) | |
download | pyload-7ac5a3f89085b9e0ec2abf17c6db86c7bd9f5b77.tar.xz |
[NowDownloadSx][NowVideoSx] Update __pattern__
Diffstat (limited to 'module/plugins/hoster')
-rw-r--r-- | module/plugins/hoster/NowDownloadSx.py | 4 | ||||
-rw-r--r-- | module/plugins/hoster/NowVideoSx.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/module/plugins/hoster/NowDownloadSx.py b/module/plugins/hoster/NowDownloadSx.py index f110e69ed..ee9f520b4 100644 --- a/module/plugins/hoster/NowDownloadSx.py +++ b/module/plugins/hoster/NowDownloadSx.py @@ -9,9 +9,9 @@ from module.utils import fixup class NowDownloadSx(SimpleHoster): __name__ = "NowDownloadSx" __type__ = "hoster" - __version__ = "0.08" + __version__ = "0.09" - __pattern__ = r'http://(?:www\.)?(nowdownload\.[a-zA-Z]{2,}/(dl/|download\.php\?id=)|likeupload\.org/)\w+' + __pattern__ = r'http://(?:www\.)?(nowdownload\.[a-zA-Z]{2,}/(dl/|download\.php.+?id=|mobile/(#/files/|.+?id=))|likeupload\.org/)\w+' __description__ = """NowDownload.sx hoster plugin""" __license__ = "GPLv3" diff --git a/module/plugins/hoster/NowVideoSx.py b/module/plugins/hoster/NowVideoSx.py index ff6fd43f8..18c3ffd1d 100644 --- a/module/plugins/hoster/NowVideoSx.py +++ b/module/plugins/hoster/NowVideoSx.py @@ -8,9 +8,9 @@ from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo class NowVideoSx(SimpleHoster): __name__ = "NowVideoSx" __type__ = "hoster" - __version__ = "0.11" + __version__ = "0.12" - __pattern__ = r'http://(?:www\.)?nowvideo\.[a-zA-Z]{2,}/(video|mobile/#/videos)/(?P<ID>\w+)' + __pattern__ = r'http://(?:www\.)?nowvideo\.[a-zA-Z]{2,}/(video/|mobile/(#/videos/|.+?id=))(?P<ID>\w+)' __description__ = """NowVideo.sx hoster plugin""" __license__ = "GPLv3" |