mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-05 17:43:37 +00:00
Merge branch 'master' into develop
This commit is contained in:
commit
edcea76060
2 changed files with 9 additions and 4 deletions
|
@ -1,10 +1,15 @@
|
|||
### 0.x.x (2015-xx-xx xx:xx:xx UTC)
|
||||
### 0.x.x (2015-xx-xx xx:xx:xx UTC)
|
||||
|
||||
* Add ToTV provider
|
||||
* Fix Backlog scheduler initialization and change backlog frequency from minutes to days
|
||||
* Change to consolidate and tidy some provider code
|
||||
|
||||
|
||||
### 0.8.2 (2015-04-19 06:45:00 UTC)
|
||||
|
||||
* Fix IPTorrents provider search strings and URL for new site changes
|
||||
|
||||
|
||||
### 0.8.1 (2015-04-15 04:16:00 UTC)
|
||||
|
||||
* Fix season pack search errors
|
||||
|
|
|
@ -34,9 +34,9 @@ from sickbeard.show_name_helpers import allPossibleShowNames
|
|||
|
||||
|
||||
class IPTorrentsProvider(generic.TorrentProvider):
|
||||
urls = {'base_url': 'https://iptorrents.com',
|
||||
'login': 'https://iptorrents.com/torrents/',
|
||||
'search': 'https://iptorrents.com/torrents/?%s%s&q=%s&qf=ti',
|
||||
urls = {'base_url': 'https://iptorrents.eu',
|
||||
'login': 'https://iptorrents.eu/torrents/',
|
||||
'search': 'https://iptorrents.eu/t?%s%s&q=%s&qf=ti#torrents',
|
||||
}
|
||||
|
||||
def __init__(self):
|
||||
|
|
Loading…
Reference in a new issue