Compare commits
4 Commits
cfce669061
...
1e77871bd8
| Author | SHA1 | Date | |
|---|---|---|---|
| 1e77871bd8 | |||
|
|
57e132fafd | ||
| 71b950c57f | |||
| cf82847058 |
@@ -35,9 +35,10 @@ SaveOrPostProgress(Message:="",PostType:=""){
|
|||||||
if(InStr(PostType, "Tooltip")){
|
if(InStr(PostType, "Tooltip")){
|
||||||
TooltipThis(Message)
|
TooltipThis(Message)
|
||||||
}
|
}
|
||||||
if(InStr(PostType, "ErrorLoggingTextFile")){
|
/* if(InStr(PostType, "ErrorLoggingTextFile")){
|
||||||
Func_LogErrorsToTextFile(Message)
|
Func_LogErrorsToTextFile(Message)
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
if(InStr(PostType, "ErrorSummaryVar")){
|
if(InStr(PostType, "ErrorSummaryVar")){
|
||||||
Func_LogErrorsToVar(Message)
|
Func_LogErrorsToVar(Message)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,7 +8,12 @@ CheckForUpdates(GitReleasesAPIURL){
|
|||||||
data := URLDownloadToVar(GitReleasesAPIURL)
|
data := URLDownloadToVar(GitReleasesAPIURL)
|
||||||
; Msgbox % "data: " data
|
; Msgbox % "data: " data
|
||||||
|
|
||||||
parsed := JSON.Load(data)
|
try, parsed := JSON.Load(data)
|
||||||
|
catch e {
|
||||||
|
Message = Failed to check for updates. Gitea Releases API returned blank or malformed data.
|
||||||
|
SaveOrPostProgress(Message:=Message,PostType:="Tooltip,ErrorLoggingTextFile,DiscordErrorLogging")
|
||||||
|
Return
|
||||||
|
}
|
||||||
|
|
||||||
UpdateVersionNumber := parsed.1.name
|
UpdateVersionNumber := parsed.1.name
|
||||||
|
|
||||||
@@ -17,10 +22,10 @@ CheckForUpdates(GitReleasesAPIURL){
|
|||||||
|
|
||||||
|
|
||||||
if(ScriptVersion = UpdateVersionNumber OR ScriptVersion > UpdateVersionNumber){
|
if(ScriptVersion = UpdateVersionNumber OR ScriptVersion > UpdateVersionNumber){
|
||||||
ToolTip
|
ToolTip
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
else, {
|
else, {
|
||||||
UpdateAvailable := 1
|
UpdateAvailable := 1
|
||||||
; msgbox, update found!
|
; msgbox, update found!
|
||||||
Message = Program Update Found
|
Message = Program Update Found
|
||||||
@@ -36,7 +41,12 @@ CheckForUpdates(GitReleasesAPIURL){
|
|||||||
UpdateScript(){
|
UpdateScript(){
|
||||||
data := URLDownloadToVar(GitReleasesAPIURL)
|
data := URLDownloadToVar(GitReleasesAPIURL)
|
||||||
|
|
||||||
parsed := JSON.Load(data)
|
try parsed := JSON.Load(data)
|
||||||
|
catch e {
|
||||||
|
Message = Failed to check for updates. Gitea Releases API returned blank or malformed data.
|
||||||
|
SaveOrPostProgress(Message:=Message,PostType:="Tooltip,ErrorLoggingTextFile,DiscordErrorLogging")
|
||||||
|
Return
|
||||||
|
}
|
||||||
|
|
||||||
UpdateVersionNumber := parsed.1.name
|
UpdateVersionNumber := parsed.1.name
|
||||||
ChangeLog := parsed.1.body
|
ChangeLog := parsed.1.body
|
||||||
|
|||||||
@@ -20,9 +20,9 @@ IfMsgBox Yes, {
|
|||||||
; Open Instructions Gitea page
|
; Open Instructions Gitea page
|
||||||
|
|
||||||
if(InStr(A_ScriptName, "Video"))
|
if(InStr(A_ScriptName, "Video"))
|
||||||
URL = https://git.freedomainplaylists.com/yuriy/Freedomain-Video-Uploader#installation
|
URL = https://freedomain.dev/yuriy/video-uploader#installation
|
||||||
else,
|
else,
|
||||||
URL = https://git.freedomainplaylists.com/yuriy/Freedomain-Social-Media-Poster#installation
|
URL = https://freedomain.dev/yuriy/social-media-poster#installation
|
||||||
|
|
||||||
run, %URL%
|
run, %URL%
|
||||||
run, "%A_ScriptFullPath%" "LastPost"
|
run, "%A_ScriptFullPath%" "LastPost"
|
||||||
|
|||||||
Reference in New Issue
Block a user