You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
669 B
Plaintext
24 lines
669 B
Plaintext
; This #include needs to be at the bottom of the parent script
|
|
|
|
|
|
CheckForUpdates:
|
|
; The GUI buttons must have variable set to vUpdateAvailable and vChromeUpdateAvailable for button to get updated
|
|
|
|
; The following variables need to be set in the parent script
|
|
; GitReleasesAPIURL
|
|
; ChromeFilepath
|
|
|
|
Message = Checking for Updates
|
|
SaveOrPostProgress(Message:=Message,PostType:="Tooltip,ErrorLoggingTextFile,DiscordErrorLogging")
|
|
|
|
|
|
if(CheckForUpdates(GitReleasesAPIURL)){
|
|
GuiControl,,UpdateAvailable, Update Available!
|
|
|
|
}
|
|
|
|
if(CheckForChromeUpdates(ChromeFilepath)){
|
|
GuiControl,,ChromeUpdateAvailable, Chrome Update Available!
|
|
ChromeUpdateAvailable := 1
|
|
}
|
|
Return |