Browse Source

[update] Check if version from repository is newer before updating

Closes #1704
Philipp Hagemeister 11 years ago
parent
commit
d7386f6276
1 changed files with 8 additions and 0 deletions
  1. 8 0
      youtube_dl/update.py

+ 8 - 0
youtube_dl/update.py

@@ -41,6 +41,7 @@ def rsa_verify(message, signature, key):
     if signature != sha256(message).digest(): return False
     if signature != sha256(message).digest(): return False
     return True
     return True
 
 
+
 def update_self(to_screen, verbose):
 def update_self(to_screen, verbose):
     """Update the program file with the latest version from the repository"""
     """Update the program file with the latest version from the repository"""
 
 
@@ -82,6 +83,13 @@ def update_self(to_screen, verbose):
         return
         return
 
 
     version_id = versions_info['latest']
     version_id = versions_info['latest']
+
+    def version_tuple(version_str):
+        return tuple(map(int, version_str.split('.')))
+    if version_tuple(__version__) >= version_tuple(version_str):
+        to_screen(u'youtube-dl is up to date (%s)' % __version__)
+        return
+
     to_screen(u'Updating to version ' + version_id + '...')
     to_screen(u'Updating to version ' + version_id + '...')
     version = versions_info['versions'][version_id]
     version = versions_info['versions'][version_id]