Skip to content

Commit 2bc1a00

Browse files
author
Soham Dasgupta
committed
fix: comment code to check build
1 parent f3200b7 commit 2bc1a00

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

polygon.ahk

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ global APP_SHORTCUT_BOTTOMRIGHT := IniRead(APP_INI_FILE, APP_INI_SECTION_SHORTCU
4040
A_IconTip := APP_NAME
4141

4242
;-- Register global error logging
43-
OnError(LogError)
43+
; OnError(LogError)
4444

4545
;-- On startup check for version update
4646
; CheckForUpdate()
@@ -50,12 +50,13 @@ tray := A_TrayMenu
5050
tray.Delete()
5151
tray.Add("Help", ShowHelp)
5252
tray.Add("Version", ShowVersion)
53-
tray.Add("Check for Updates", CheckForUpdate)
53+
; tray.Add("Check for Updates", CheckForUpdate)
5454
tray.Add("Feedback", SubmitFeedback)
5555
tray.Add("Restart", Restart)
5656
tray.Add("Exit", Terminate)
5757
tray.Default := "Version"
5858

59+
/*
5960
LogError(exception, mode)
6061
{
6162
; Get the user's application data folder
@@ -80,6 +81,7 @@ LogError(exception, mode)
8081
8182
return true
8283
}
84+
*/
8385

8486
Toast(Message, r, l, t, b)
8587
{
@@ -131,6 +133,7 @@ Toast(Message, r, l, t, b)
131133
}
132134
}
133135

136+
/*
134137
ParseVersionString(version)
135138
{
136139
regex := "v(\d+)\.(\d+)\.(\d+)"
@@ -198,6 +201,7 @@ GetLatestGitHubRelease(owner, repo)
198201
return htmlfile.parentWindow.JSON.parse(str)
199202
}
200203
}
204+
*/
201205

202206
SubmitFeedback(*)
203207
{

0 commit comments

Comments
 (0)