Changed repo org url to reflect new org SiCKRAGETV

This commit is contained in:
echel0n 2014-11-12 14:02:25 -08:00
parent 9016956d6d
commit 78b9bb2c8d
6 changed files with 10 additions and 12 deletions

View File

@ -83,14 +83,14 @@
### 0.2.1 (2014-10-22 06:41:00 UTC)
[full changelog](https://github.com/SickragePVR/SickRage/compare/release_0.2.0...release_0.2.1)
[full changelog](https://github.com/SiCKRAGETV/SickRage/compare/release_0.2.0...release_0.2.1)
* Fix HDtorrents provider screen scraping
### 0.2.0 (2014-10-21 12:36:50 UTC)
[full changelog](https://github.com/SickragePVR/SickRage/compare/release_0.1.0...release_0.2.0)
[full changelog](https://github.com/SiCKRAGETV/SickRage/compare/release_0.1.0...release_0.2.0)
* Fix for failed episodes not counted in total
* Fix for custom newznab providers with leading integer in name

View File

@ -89,7 +89,7 @@ Please follow this process; it's the best way to get your work included in the p
# navigate to the newly cloned directory
cd SickRage
# assign the original repo to a remote called "upstream"
git remote add upstream https://github.com/SickragePVR/SickRage.git
git remote add upstream https://github.com/SiCKRAGETV/SickRage.git
```
- If you cloned a while ago, get the latest changes from upstream:

View File

@ -47,7 +47,7 @@
<tr><td class="infoTableHeader">Python Version:</td><td class="infoTableCell">$sys.version[:120]</td></tr>
<tr class="infoTableSeperator"><td class="infoTableHeader"><i class="icon16-sb"></i> Homepage</td><td class="infoTableCell"><a href="<%= anon_url('http://www.sickrage.tv/') %>" rel="noreferrer" onclick="window.open(this.href, '_blank'); return false;">http://www.sickrage.tv/</a></td></tr>
<tr><td class="infoTableHeader"><i class="icon16-web"></i> Forums</td><td class="infoTableCell"><a href="<%= anon_url('http://sickrage.tv/forums/') %>" rel="noreferrer" onclick="window.open(this.href, '_blank'); return false;">http://sickrage.tv/forums/</a></td></tr>
<tr><td class="infoTableHeader"><i class="icon16-github"></i> Source</td><td class="infoTableCell"><a href="<%= anon_url('https://github.com/SickragePVR/SickRage/') %>" rel="noreferrer" onclick="window.open(this.href, '_blank'); return false;">https://github.com/SickragePVR/SickRage/</a></td></tr>
<tr><td class="infoTableHeader"><i class="icon16-github"></i> Source</td><td class="infoTableCell"><a href="<%= anon_url('https://github.com/SiCKRAGETV/SickRage/') %>" rel="noreferrer" onclick="window.open(this.href, '_blank'); return false;">https://github.com/SiCKRAGETV/SickRage/</a></td></tr>
<tr><td class="infoTableHeader"><i class="icon16-mirc"></i> Internet Relay Chat</td><td class="infoTableCell"><a href="irc://irc.freenode.net/#sickrage" rel="noreferrer"><i>#sickrage</i> on <i>irc.freenode.net</i></a></td></tr>
</table>
</div>

View File

@ -19,10 +19,8 @@
import socket
import sickbeard
from sickbeard import logger, common
from sickbeard.exceptions import ex
from lib.growl import gntp
@ -70,7 +68,7 @@ class GrowlNotifier:
notice.add_header('Notification-Priority', options['priority'])
if options['icon']:
notice.add_header('Notification-Icon',
'https://raw.github.com/SickragePVR/SickRage/master/gui/slick/images/sickrage.png')
'https://raw.github.com/SiCKRAGETV/SickRage/master/gui/slick/images/sickrage.png')
if message:
notice.add_header('Notification-Text', message)
@ -174,7 +172,7 @@ class GrowlNotifier:
register = gntp.GNTPRegister()
register.add_header('Application-Name', opts['app'])
register.add_header('Application-Icon',
'https://raw.githubusercontent.com/SickragePVR/SickRage/master/gui/slick/images/sickrage-shark-mascot.png')
'https://raw.githubusercontent.com/SiCKRAGETV/SickRage/master/gui/slick/images/sickrage-shark-mascot.png')
register.add_notification('Test', True)
register.add_notification(common.notifyStrings[common.NOTIFY_SNATCH], True)

View File

@ -23,12 +23,12 @@ import base64
import time
import sickbeard
from sickbeard import logger
from sickbeard import common
from sickbeard.exceptions import ex
from sickbeard.encodingKludge import fixStupidEncodings
try:
import xml.etree.cElementTree as etree
except ImportError:
@ -41,7 +41,7 @@ except ImportError:
class XBMCNotifier:
sb_logo_url = 'https://raw.githubusercontent.com/SickragePVR/SickRage/master/gui/slick/images/sickrage-shark-mascot.png'
sb_logo_url = 'https://raw.githubusercontent.com/SiCKRAGETV/SickRage/master/gui/slick/images/sickrage-shark-mascot.png'
def _get_xbmc_version(self, host, username, password):
"""Returns XBMC JSON-RPC API version (odd # = dev, even # = stable)

View File

@ -26,8 +26,8 @@ import zipfile
import tarfile
import stat
import traceback
import gh_api as github
import gh_api as github
import sickbeard
from sickbeard import helpers, notifiers
from sickbeard import ui
@ -130,7 +130,7 @@ class CheckVersion():
class UpdateManager():
def get_github_repo_user(self):
return 'SickragePVR'
return 'SiCKRAGETV'
def get_github_repo(self):
return 'SickRage'