@@ -40,7 +40,7 @@ global APP_SHORTCUT_BOTTOMRIGHT := IniRead(APP_INI_FILE, APP_INI_SECTION_SHORTCU
40
40
A_IconTip := APP_NAME
41
41
42
42
; -- Register global error logging
43
- OnError(LogError)
43
+ ; OnError(LogError)
44
44
45
45
; -- On startup check for version update
46
46
; CheckForUpdate()
@@ -50,12 +50,13 @@ tray := A_TrayMenu
50
50
tray.Delete ()
51
51
tray.Add(" Help" , ShowHelp)
52
52
tray.Add(" Version" , ShowVersion)
53
- tray.Add(" Check for Updates" , CheckForUpdate)
53
+ ; tray.Add("Check for Updates", CheckForUpdate)
54
54
tray.Add(" Feedback" , SubmitFeedback)
55
55
tray.Add(" Restart" , Restart)
56
56
tray.Add(" Exit" , Terminate)
57
57
tray.Default := " Version"
58
58
59
+ /*
59
60
LogError(exception, mode)
60
61
{
61
62
; Get the user's application data folder
@@ -80,6 +81,7 @@ LogError(exception, mode)
80
81
81
82
return true
82
83
}
84
+ */
83
85
84
86
Toast(Message, r, l, t, b)
85
87
{
@@ -131,6 +133,7 @@ Toast(Message, r, l, t, b)
131
133
}
132
134
}
133
135
136
+ /*
134
137
ParseVersionString(version)
135
138
{
136
139
regex := "v(\d+)\.(\d+)\.(\d+)"
@@ -198,6 +201,7 @@ GetLatestGitHubRelease(owner, repo)
198
201
return htmlfile.parentWindow.JSON.parse(str)
199
202
}
200
203
}
204
+ */
201
205
202
206
SubmitFeedback(* )
203
207
{
0 commit comments