diff --git a/readme.md b/readme.md index 9c72cad1..0302171d 100644 --- a/readme.md +++ b/readme.md @@ -3,7 +3,7 @@ SickRage Video File Manager for TV Shows, It watches for new episodes of your favorite shows and when they are posted it does its magic. ## Branch Build Status -[![Build Status](https://travis-ci.org/SiCKRAGETV/SickRage.svg?branch=nightly)](https://travis-ci.org/SiCKRAGETV/SickRage) +[![Build Status](https://travis-ci.org/SiCKRAGETV/SickRage.svg?branch=develop)](https://travis-ci.org/SiCKRAGETV/SickRage) ## Features - XBMC library updates, poster/fanart downloads, and NFO/TBN generation @@ -34,5 +34,13 @@ Video File Manager for TV Shows, It watches for new episodes of your favorite sh ## Bug/Issues [SickRage Issue Tracker](https://github.com/SiCKRAGETV/sickrage-issues) +## FAQ + +https://github.com/SiCKRAGETV/SickRage/wiki/Frequently-Asked-Questions + +## Wiki + +https://github.com/SiCKRAGETV/SickRage/wiki + ## Important Please before using this with your existing database (sickbeard.db) please make a backup copy of it and delete any other database files such as cache.db and failed.db if present, we HIGHLY recommend starting out with no database files at all to make this a fresh start but the choice is at your own risk diff --git a/sickbeard/providers/kat.py b/sickbeard/providers/kat.py index 7e3091a8..4751df83 100644 --- a/sickbeard/providers/kat.py +++ b/sickbeard/providers/kat.py @@ -55,7 +55,7 @@ class KATProvider(generic.TorrentProvider): self.cache = KATCache(self) - self.urls = {'base_url': 'http://kickass.to/'} + self.urls = {'base_url': 'https://kickass.to/'} self.url = self.urls['base_url'] diff --git a/sickbeard/providers/t411.py b/sickbeard/providers/t411.py index f555846f..97f2ffae 100644 --- a/sickbeard/providers/t411.py +++ b/sickbeard/providers/t411.py @@ -51,10 +51,10 @@ class T411Provider(generic.TorrentProvider): self.cache = T411Cache(self) - self.urls = {'base_url': 'http://www.t411.me/', - 'search': 'http://www.t411.me/torrents/search/?name=%s&cat=210&subcat=%s&search=%s&submit=Recherche', - 'login_page': 'http://www.t411.me/users/login/', - 'download': 'http://www.t411.me/torrents/download/?id=%s', + self.urls = {'base_url': 'http://www.t411.io/', + 'search': 'http://www.t411.io/torrents/search/?name=%s&cat=210&subcat=%s&search=%s&submit=Recherche', + 'login_page': 'http://www.t411.io/users/login/', + 'download': 'http://www.t411.io/torrents/download/?id=%s', } self.url = self.urls['base_url']