From fc09e56a37830cf9913727a7a5620342752452e0 Mon Sep 17 00:00:00 2001 From: Adam Date: Wed, 12 Nov 2014 16:34:01 +0800 Subject: [PATCH] Change updater URLs to reflect new repository location --- CHANGES.md | 12 ++++++++++-- contributing.md | 2 +- gui/slick/interfaces/default/config.tmpl | 2 +- sickbeard/notifiers/growl.py | 4 ++-- sickbeard/notifiers/xbmc.py | 2 +- sickbeard/versionChecker.py | 4 ++-- 6 files changed, 17 insertions(+), 9 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 3399157e..d0b7e480 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,12 +1,20 @@ +### 0.2.2 (2014-11-12 08:25:00 UTC) + +[full changelog](https://github.com/SickGear/SickGear/compare/release_0.2.1...release_0.2.2) + +* Change updater URLs to reflect new repository location + + ### 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/SickGear/SickGear/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/SickGear/SickGear/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 diff --git a/contributing.md b/contributing.md index 6f6b95a9..84395cd3 100644 --- a/contributing.md +++ b/contributing.md @@ -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/SickGear/SickGear.git ``` - If you cloned a while ago, get the latest changes from upstream: diff --git a/gui/slick/interfaces/default/config.tmpl b/gui/slick/interfaces/default/config.tmpl index d761c4fd..2b9b55aa 100644 --- a/gui/slick/interfaces/default/config.tmpl +++ b/gui/slick/interfaces/default/config.tmpl @@ -45,7 +45,7 @@ Python Version: $sys.version[:120] Homepage http://www.sickrage.tv/ Forums http://sickrage.tv/forums/ - Source https://github.com/SickragePVR/SickRage/ + Source https://github.com/SickragePVR/SickRage/ Internet Relay Chat #sickrage on irc.freenode.net diff --git a/sickbeard/notifiers/growl.py b/sickbeard/notifiers/growl.py index 47ea6ef3..acaeae47 100644 --- a/sickbeard/notifiers/growl.py +++ b/sickbeard/notifiers/growl.py @@ -70,7 +70,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/SickGear/SickGear/master/gui/slick/images/sickrage.png') if message: notice.add_header('Notification-Text', message) @@ -174,7 +174,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/SickGear/SickGear/master/gui/slick/images/sickrage-shark-mascot.png') register.add_notification('Test', True) register.add_notification(common.notifyStrings[common.NOTIFY_SNATCH], True) diff --git a/sickbeard/notifiers/xbmc.py b/sickbeard/notifiers/xbmc.py index 5d3ae8da..33a31b60 100644 --- a/sickbeard/notifiers/xbmc.py +++ b/sickbeard/notifiers/xbmc.py @@ -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/SickGear/SickGear/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) diff --git a/sickbeard/versionChecker.py b/sickbeard/versionChecker.py index 9e1bc19c..add2ca70 100644 --- a/sickbeard/versionChecker.py +++ b/sickbeard/versionChecker.py @@ -130,10 +130,10 @@ class CheckVersion(): class UpdateManager(): def get_github_repo_user(self): - return 'SickragePVR' + return 'SickGear' def get_github_repo(self): - return 'SickRage' + return 'SickGear' def get_update_url(self): return sickbeard.WEB_ROOT + "/home/update/?pid=" + str(sickbeard.PID)