Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(fontforge) Upgrade to support autohotkey v2 #107

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion automatic/fontforge/fontforge.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ FontForge can also extract fonts fom PDFs and validate fonts for potential issue
]]></description>
<releaseNotes>https://github.com/fontforge/fontforge/releases</releaseNotes>
<dependencies>
<dependency id="autohotkey.portable" version="1.1.30.03" />
<dependency id="autohotkey.portable" version="[2.0,)" />
</dependencies>
</metadata>
<files>
Expand Down
27 changes: 13 additions & 14 deletions automatic/fontforge/tools/chocolateyuninstall.ahk
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
#NoEnv
#NoTrayIcon
SendMode Input
SetWorkingDir %A_ScriptDir%
SetTitleMatchMode, 1 ;match if begins
DetectHiddenText, off
DetectHiddenWindows, off
winTitle = ahk_class #32770
WinWait, %winTitle%, Do you want to remove user preferences?, 120
WinActivate
Send,{Enter}
ExitApp
SendMode("Input")
SetWorkingDir(A_ScriptDir)
SetTitleMatchMode(1) ;match if begins
DetectHiddenText(false)
DetectHiddenWindows(false)

winTitle := "ahk_class #32770"

WinWait(winTitle, "Do you want to remove user preferences?", 120)
WinActivate()
Send("{Enter}")

ExitApp()