Merge branch 'hotfix/0.12.2'

This commit is contained in:
JackDandy 2016-12-21 16:55:24 +00:00
commit dd0d12f72c
3 changed files with 8 additions and 3 deletions

View file

@ -1,4 +1,9 @@
### 0.12.1 (2016-12-19 12:00:00 UTC)
### 0.12.2 (2016-12-20 16:00:00 UTC)
* Change Rarbg and IPT urls
### 0.12.1 (2016-12-19 12:00:00 UTC)
* Fix image scan log for show titles that contain "%"

View file

@ -31,7 +31,7 @@ class IPTorrentsProvider(generic.TorrentProvider):
generic.TorrentProvider.__init__(self, 'IPTorrents')
self.url_home = (['https://iptorrents.%s/' % u for u in 'eu', 'com', 'me', 'ru'] +
['http://11111.workisboring.com/', 'https://ipt-update.com'])
['http://rss.workisboring.com/', 'https://ipt-update.com'])
self.url_vars = {'login': 't', 'search': 't?%s;q=%s;qf=ti%s%s#torrents', 'get': '%s'}
self.url_tmpl = {'config_provider_home_uri': '%(home)s', 'login': '%(home)s%(vars)s',

View file

@ -30,7 +30,7 @@ class RarbgProvider(generic.TorrentProvider):
def __init__(self):
generic.TorrentProvider.__init__(self, 'Rarbg')
self.url_base = 'https://rarbg.unblocked.uno/'
self.url_base = 'https://rarbgmirror.xyz/'
# api_spec: https://rarbg.com/pubapi/apidocs_v2.txt
self.url_api = 'https://torrentapi.org/pubapi_v2.php?app_id=SickGear&'
self.urls = {'config_provider_home_uri': self.url_base,