mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 09:12:40 +01:00
[update] Check if version from repository is newer before updating
Closes #1704
This commit is contained in:
parent
081640940e
commit
d7386f6276
@ -41,6 +41,7 @@ def b(x):
|
||||
if signature != sha256(message).digest(): return False
|
||||
return True
|
||||
|
||||
|
||||
def update_self(to_screen, verbose):
|
||||
"""Update the program file with the latest version from the repository"""
|
||||
|
||||
@ -82,6 +83,13 @@ def update_self(to_screen, verbose):
|
||||
return
|
||||
|
||||
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 + '...')
|
||||
version = versions_info['versions'][version_id]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user