mirror of
https://github.com/moparisthebest/SickRage
synced 2024-12-13 11:32:20 -05:00
Update repo urls from echel0n to point to SickragePVR. Should fix autoupdating to the correct repo
This commit is contained in:
parent
ef621a3b17
commit
4e6afd7615
@ -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
|
# navigate to the newly cloned directory
|
||||||
cd SickRage
|
cd SickRage
|
||||||
# assign the original repo to a remote called "upstream"
|
# assign the original repo to a remote called "upstream"
|
||||||
git remote add upstream https://github.com/echel0n/SickRage.git
|
git remote add upstream https://github.com/SickragePVR/SickRage.git
|
||||||
```
|
```
|
||||||
|
|
||||||
- If you cloned a while ago, get the latest changes from upstream:
|
- If you cloned a while ago, get the latest changes from upstream:
|
||||||
|
@ -45,7 +45,7 @@
|
|||||||
<tr><td class="infoTableHeader">Python Version: </td><td class="infoTableCell">$sys.version[:120]</td></tr>
|
<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><a href="http://www.sickrage.tv/" rel="noreferrer" onclick="window.open('${sickbeard.ANON_REDIRECT}' + this.href, '_blank'); return false;">http://www.sickrage.tv/</a></td></tr>
|
<tr class="infoTableSeperator"><td class="infoTableHeader"><i class="icon16-sb"></i> Homepage </td><td><a href="http://www.sickrage.tv/" rel="noreferrer" onclick="window.open('${sickbeard.ANON_REDIRECT}' + this.href, '_blank'); return false;">http://www.sickrage.tv/</a></td></tr>
|
||||||
<tr><td class="infoTableHeader"><i class="icon16-web"></i> Forums </td><td><a href="http://sickrage.tv/forums/" rel="noreferrer" onclick="window.open('${sickbeard.ANON_REDIRECT}' + this.href, '_blank'); return false;">http://sickrage.tv/forums/</a></td></tr>
|
<tr><td class="infoTableHeader"><i class="icon16-web"></i> Forums </td><td><a href="http://sickrage.tv/forums/" rel="noreferrer" onclick="window.open('${sickbeard.ANON_REDIRECT}' + this.href, '_blank'); return false;">http://sickrage.tv/forums/</a></td></tr>
|
||||||
<tr><td class="infoTableHeader"><i class="icon16-github"></i> Source </td><td><a href="https://github.com/echel0n/SickRage/" rel="noreferrer" onclick="window.open('${sickbeard.ANON_REDIRECT}' + this.href, '_blank'); return false;">https://github.com/echel0n/SickRage/</a></td></tr>
|
<tr><td class="infoTableHeader"><i class="icon16-github"></i> Source </td><td><a href="https://github.com/SickragePVR/SickRage/" rel="noreferrer" onclick="window.open('${sickbeard.ANON_REDIRECT}' + this.href, '_blank'); return false;">https://github.com/SickragePVR/SickRage/</a></td></tr>
|
||||||
<tr><td class="infoTableHeader"><i class="icon16-mirc"></i> Internet Relay Chat </td><td><a href="irc://irc.freenode.net/#sickrage" rel="noreferrer" onclick="window.open('${sickbeard.ANON_REDIRECT}' + this.href, '_blank'); return false;"><i>#sickrage</i> on <i>irc.freenode.net</i></a></td></tr>
|
<tr><td class="infoTableHeader"><i class="icon16-mirc"></i> Internet Relay Chat </td><td><a href="irc://irc.freenode.net/#sickrage" rel="noreferrer" onclick="window.open('${sickbeard.ANON_REDIRECT}' + this.href, '_blank'); return false;"><i>#sickrage</i> on <i>irc.freenode.net</i></a></td></tr>
|
||||||
</table>
|
</table>
|
||||||
</div></div>
|
</div></div>
|
||||||
|
@ -70,7 +70,7 @@ class GrowlNotifier:
|
|||||||
notice.add_header('Notification-Priority', options['priority'])
|
notice.add_header('Notification-Priority', options['priority'])
|
||||||
if options['icon']:
|
if options['icon']:
|
||||||
notice.add_header('Notification-Icon',
|
notice.add_header('Notification-Icon',
|
||||||
'https://raw.github.com/echel0n/SickRage/master/gui/slick/images/sickrage.png')
|
'https://raw.github.com/SickragePVR/SickRage/master/gui/slick/images/sickrage.png')
|
||||||
|
|
||||||
if message:
|
if message:
|
||||||
notice.add_header('Notification-Text', message)
|
notice.add_header('Notification-Text', message)
|
||||||
@ -174,7 +174,7 @@ class GrowlNotifier:
|
|||||||
register = gntp.GNTPRegister()
|
register = gntp.GNTPRegister()
|
||||||
register.add_header('Application-Name', opts['app'])
|
register.add_header('Application-Name', opts['app'])
|
||||||
register.add_header('Application-Icon',
|
register.add_header('Application-Icon',
|
||||||
'https://raw.githubusercontent.com/echel0n/SickRage/master/gui/slick/images/sickrage-shark-mascot.png')
|
'https://raw.githubusercontent.com/SickragePVR/SickRage/master/gui/slick/images/sickrage-shark-mascot.png')
|
||||||
|
|
||||||
register.add_notification('Test', True)
|
register.add_notification('Test', True)
|
||||||
register.add_notification(common.notifyStrings[common.NOTIFY_SNATCH], True)
|
register.add_notification(common.notifyStrings[common.NOTIFY_SNATCH], True)
|
||||||
|
@ -41,7 +41,7 @@ except ImportError:
|
|||||||
|
|
||||||
|
|
||||||
class XBMCNotifier:
|
class XBMCNotifier:
|
||||||
sb_logo_url = 'https://raw.githubusercontent.com/echel0n/SickRage/master/gui/slick/images/sickrage-shark-mascot.png'
|
sb_logo_url = 'https://raw.githubusercontent.com/SickragePVR/SickRage/master/gui/slick/images/sickrage-shark-mascot.png'
|
||||||
|
|
||||||
def _get_xbmc_version(self, host, username, password):
|
def _get_xbmc_version(self, host, username, password):
|
||||||
"""Returns XBMC JSON-RPC API version (odd # = dev, even # = stable)
|
"""Returns XBMC JSON-RPC API version (odd # = dev, even # = stable)
|
||||||
|
@ -130,7 +130,7 @@ class CheckVersion():
|
|||||||
|
|
||||||
class UpdateManager():
|
class UpdateManager():
|
||||||
def get_github_repo_user(self):
|
def get_github_repo_user(self):
|
||||||
return 'echel0n'
|
return 'SickragePVR'
|
||||||
|
|
||||||
def get_github_repo(self):
|
def get_github_repo(self):
|
||||||
return 'SickRage'
|
return 'SickRage'
|
||||||
|
Loading…
Reference in New Issue
Block a user