Private GIT

Skip to content
Snippets Groups Projects
Commit f293e0ca authored by sarakha63's avatar sarakha63
Browse files

Merge pull request #1 from mozvip/development

attempt on transferring fork for further updates
parents 3f86d468 eb501f59
Branches
Tags
No related merge requests found
......@@ -112,7 +112,7 @@ class WindowsUpdateManager(UpdateManager):
self._newest_version = None
self.gc_url = 'http://code.google.com/p/sickbeard/downloads/list'
self.version_url = 'https://raw.github.com/mozvip/Sick-Beard/windows_binaries/updates.txt'
self.version_url = 'https://raw.github.com/sarakha63/Sick-Beard/windows_binaries/updates.txt'
def _find_installed_version(self):
return int(sickbeard.version.SICKBEARD_VERSION[6:])
......@@ -311,7 +311,7 @@ class GitUpdateManager(UpdateManager):
gh = github.GitHub()
# find newest commit
for curCommit in gh.commits('mozvip', 'Sick-Beard', self.branch):
for curCommit in gh.commits('sarakha63', 'Sick-Beard', self.branch):
if not self._newest_commit_hash:
self._newest_commit_hash = curCommit['sha']
if not self._cur_commit_hash:
......@@ -339,9 +339,9 @@ class GitUpdateManager(UpdateManager):
return
if self._newest_commit_hash:
url = 'http://github.com/mozvip/Sick-Beard/compare/'+self._cur_commit_hash+'...'+self._newest_commit_hash
url = 'http://github.com/sarakha63/Sick-Beard/compare/'+self._cur_commit_hash+'...'+self._newest_commit_hash
else:
url = 'http://github.com/mozvip/Sick-Beard/commits/'
url = 'http://github.com/sarakha63/Sick-Beard/commits/'
new_str = 'There is a <a href="'+url+'" onclick="window.open(this.href); return false;">newer version available</a> ('+message+')'
new_str += "&mdash; <a href=\""+self.get_update_url()+"\">Update Now</a>"
......@@ -447,7 +447,7 @@ class SourceUpdateManager(GitUpdateManager):
Downloads the latest source tarball from github and installs it over the existing version.
"""
tar_download_url = 'https://github.com/mozvip/Sick-Beard/tarball/'+version.SICKBEARD_VERSION
tar_download_url = 'https://github.com/sarakha63/Sick-Beard/tarball/'+version.SICKBEARD_VERSION
sb_update_dir = os.path.join(sickbeard.PROG_DIR, 'sb-update')
version_path = os.path.join(sickbeard.PROG_DIR, 'version.txt')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment