Reorganize version checker

This commit is contained in:
the Sane 2021-09-18 13:10:44 -04:00 committed by GitHub
parent c42d459ef2
commit cb3fc5d0d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -128,6 +128,7 @@ fi
# Github repo and script version info # Github repo and script version info
repo="the-sane/lug-helper" repo="the-sane/lug-helper"
releases_url="https://github.com/the-sane/lug-helper/releases"
current_version="v1.9.1" current_version="v1.9.1"
############################################################################ ############################################################################
@ -1283,10 +1284,12 @@ latest_version=$(get_latest_release "$repo")
if [ "$latest_version" != "$current_version" ]; then if [ "$latest_version" != "$current_version" ]; then
if [ "$use_zenity" -eq 1 ]; then if [ "$use_zenity" -eq 1 ]; then
message info "The latest version of the LUG Helper is $latest_version\nYou are using $current_version\n\nYou can download new releases here:\n<a href='https://github.com/the-sane/lug-helper/releases'>https://github.com/the-sane/lug-helper/releases</a>" releases_url_formatted="<a href='$releases_url'>$releases_url</a>"
else else
message info "The latest version of the LUG Helper is $latest_version\nYou are using $current_version\n\nYou can download new releases here:\nhttps://github.com/the-sane/lug-helper/releases" releases_url_formatted="$releases_url"
fi fi
message info "The latest version of the LUG Helper is $latest_version\nYou are using $current_version\n\nYou can download new releases here:\n$releases_url_formatted"
fi fi
# If invoked with command line arguments, process them and exit # If invoked with command line arguments, process them and exit