AutoHotkey full changelog
AutoHotkey 2.0.19
released Jan 25, 2025 (New Release)
Fixed memory out-of-bounds access during RegEx compilation.
Fixed externally-released modifiers to not be "restored" post-Send.
Fixed modal dialog boxes suppressing InputHook events.
Fixed key-up erroneously being suppressed after key-repeat presses it down in some cases.
Fixed Critical Error when loading large icons with no alpha channel.
Fixed MouseGetPos to make Control blank and not throw if ClassNN cannot be determined.
Fixed FileSelect to validate Options.
Fixed unexpected Catch/Else/Finally/Until not being flagged as an error in some cases.
Fixed Try/Catch/Else/Finally not executing Finally if Else returns.
Fixed execution of if-else-if-else-if containing fat arrow functions.
Fixed externally-released modifiers to not be "restored" post-Send.
Fixed modal dialog boxes suppressing InputHook events.
Fixed key-up erroneously being suppressed after key-repeat presses it down in some cases.
Fixed Critical Error when loading large icons with no alpha channel.
Fixed MouseGetPos to make Control blank and not throw if ClassNN cannot be determined.
Fixed FileSelect to validate Options.
Fixed unexpected Catch/Else/Finally/Until not being flagged as an error in some cases.
Fixed Try/Catch/Else/Finally not executing Finally if Else returns.
Fixed execution of if-else-if-else-if containing fat arrow functions.
AutoHotkey 2.0.16 / 1.1
released May 30, 2024 (New Release)
AutoHotkey 2.0.15 / 1.1
released May 16, 2024 (New Release)
AutoHotkey 2.0.10 / 1.1
released Sep 24, 2023 (New Release)
Fixed crashing when a named function hotkey is used after #HotIf.
Fixed numeric literals ending with a dot to not cause line continuation.
Fixed pre-increment/decrement to work with chained array indexing.
Fixed OnNotify/OnCommand applying styles only applicable to OnEvent.
Fixed FileExist/DirExist leaking handles when emptydir* is used.
Fixed DirExist leaking handles when only files match.
Fixed numeric literals ending with a dot to not cause line continuation.
Fixed pre-increment/decrement to work with chained array indexing.
Fixed OnNotify/OnCommand applying styles only applicable to OnEvent.
Fixed FileExist/DirExist leaking handles when emptydir* is used.
Fixed DirExist leaking handles when only files match.
AutoHotkey 2.0.9 / 1.1
released Sep 17, 2023 (New Release)
Fixed stacking of hotstrings with the X option.
Fixed debugger not listing local vars if the function is at the bottom of the stack.
Fixed Gui threads to show on the debugger's call stack.
Fixed some combinations of &/ByRef causing stack overflow in ExitApp.
Fixed debugger not listing local vars if the function is at the bottom of the stack.
Fixed Gui threads to show on the debugger's call stack.
Fixed some combinations of &/ByRef causing stack overflow in ExitApp.
AutoHotkey 2.0.7 / 1.1
released Sep 2, 2023 (New Release)
Fixed MouseClickDrag to allow X1 and Y1 to be omitted.
Fixed mouse AltTab hotkeys not suppressing execution of a prefix hotkey, such as 1:: for 1 & WheelDown::AltTab. (Broken by v2.0.4)
Fixed hook hotkeys not recognizing modifiers which are pressed down by SendInput.
Fixed A_AhkPath to not be reliant on the case/format of the command line used to launch the process.
Fixed heap corruption during window searches involving groups. (Broken by v2.0.6)
Launcher:
Fixed #Requires not being detected if followed by a comment other than ; prefer xxx. (Broken by v2.0.6)
Fixed syntax detection misinterpreting multi-line auto-replace hotstrings.
Window Spy:
Changed font to Segoe UI size 9, consistent with Dash.
Fixed mouse AltTab hotkeys not suppressing execution of a prefix hotkey, such as 1:: for 1 & WheelDown::AltTab. (Broken by v2.0.4)
Fixed hook hotkeys not recognizing modifiers which are pressed down by SendInput.
Fixed A_AhkPath to not be reliant on the case/format of the command line used to launch the process.
Fixed heap corruption during window searches involving groups. (Broken by v2.0.6)
Launcher:
Fixed #Requires not being detected if followed by a comment other than ; prefer xxx. (Broken by v2.0.6)
Fixed syntax detection misinterpreting multi-line auto-replace hotstrings.
Window Spy:
Changed font to Segoe UI size 9, consistent with Dash.
AutoHotkey 2.0.6 / 1.1
released Aug 30, 2023 (New Release)
Fixed some ambiguity with COM calls, such as x.y acting as x.y().
Fixed breakpoint on control flow statement being "hit" when a fat arrow function on the line below it returns.
Fixed Default : to not merge with the line below it. This prevented Default : from being used at the end of a Switch block, and caused any subsequent line to take the line number of the Default.
Optimized ProcessGetPath, ProcessSetPriority and ProcessClose to not scan through all processes when given a valid PID, even if access to the process is denied.
Fixed inability of LWin::Alt to be used to activate some Alt key combos.
Fixed TypeError thrown by x is y to say "Class" rather than "Object".
Fixed WinTitle to support criteria longer than 1023 characters.
Fixed issues when &ref is used on different aliases of the same variable.
Fixed optional parameter default expressions (other than simple literal values) preventing the use of assume-global/assume-static.
Fixed breakpoint on control flow statement being "hit" when a fat arrow function on the line below it returns.
Fixed Default : to not merge with the line below it. This prevented Default : from being used at the end of a Switch block, and caused any subsequent line to take the line number of the Default.
Optimized ProcessGetPath, ProcessSetPriority and ProcessClose to not scan through all processes when given a valid PID, even if access to the process is denied.
Fixed inability of LWin::Alt to be used to activate some Alt key combos.
Fixed TypeError thrown by x is y to say "Class" rather than "Object".
Fixed WinTitle to support criteria longer than 1023 characters.
Fixed issues when &ref is used on different aliases of the same variable.
Fixed optional parameter default expressions (other than simple literal values) preventing the use of assume-global/assume-static.
AutoHotkey 2.0.4 / 1.1
released Jul 8, 2023 (New Release)
Changed the Reload button on error/warning dialogs to explicitly close the dialog, even if the current script instance isn't terminated.
Removed an optimization for return var which caused the variable to appear blank when accessed within a finally block.
Fixed Default (Switch) to allow space before the colon.
Fixed Array.Prototype.RemoveAt to return the removed value when Length is "explicitly omitted" with unset or var?.
Fixed crashing when a ComObject is passed to a for-loop with only the second variable specified.
Removed an optimization for return var which caused the variable to appear blank when accessed within a finally block.
Fixed Default (Switch) to allow space before the colon.
Fixed Array.Prototype.RemoveAt to return the removed value when Length is "explicitly omitted" with unset or var?.
Fixed crashing when a ComObject is passed to a for-loop with only the second variable specified.
AutoHotkey 2.0.3 / 1.1
released Jun 19, 2023 (New Release)
Fixed Hotkey("a", "b") to use the original function of "b", not "a". [PR #318]
Fixed FileSetAttribute crash when used in a File Reading Loop. [PR #323]
Fixed duplicate Gui control name errors to correctly abort the thread.
Fixed DateTime/MonthCal Range option not applying minimum value.
Fixed s[x] => x and other single-line properties starting with "s".
Fixed a bug with deleting a breakpoint on a static line containing =>.
Fixed Button control not becoming default when clicked.
Fixed PixelSearch to unset X when pixel is not found.
Fixed hotstring with escape sequence causing next line to be skipped.
Fixed WinTitle ignoring character 1 when "ahk_" is at character 2.
Fixed remapping to utilize right-hand modifier already being down. For example, +x::+y will no longer release RShift to press LShift.
Changed error message for a == b && c() and similar cases to avoid alluding to legacy =.
Improved error message for some cases of unintended line continuation.
Fixed FileSetAttribute crash when used in a File Reading Loop. [PR #323]
Fixed duplicate Gui control name errors to correctly abort the thread.
Fixed DateTime/MonthCal Range option not applying minimum value.
Fixed s[x] => x and other single-line properties starting with "s".
Fixed a bug with deleting a breakpoint on a static line containing =>.
Fixed Button control not becoming default when clicked.
Fixed PixelSearch to unset X when pixel is not found.
Fixed hotstring with escape sequence causing next line to be skipped.
Fixed WinTitle ignoring character 1 when "ahk_" is at character 2.
Fixed remapping to utilize right-hand modifier already being down. For example, +x::+y will no longer release RShift to press LShift.
Changed error message for a == b && c() and similar cases to avoid alluding to legacy =.
Improved error message for some cases of unintended line continuation.
AutoHotkey 1.1.36.02
released Dec 7, 2022 (New Release)
AutoHotkey for Windows 7 - free download notice
Windows 7 Download periodically updates software information of AutoHotkey from the publisher.
« BACK
My Account
Help
Windows 7 Software Coupons
-
MacX Video Converter Pro
56% Off -
MacX DVD Video Converter
58% Off -
MacX DVD Ripper Pro
50% Off -
Media Player Morpher
85% Off -
WinX HD Video Converter
56% Off
My Saved Stuff
You have not saved any software.
Click "Save" next to each software.
Click "Save" next to each software.
Would you like to receive announcements of new versions of your software by email or by RSS reader? Register for FREE!
Windows 7 Downloads Picks
- Windows 7 Service Pack 1 7601.17514.1011
- Autoruns for Windows 14.11
- Argus Monitor 7.2.2 Build 3016
- IObit Uninstaller Portable 14.2.1.7
- Smart Game Booster 5.3.1.692
- Advanced Serial Data Logger Enterprise 5.0.7 Build 313
- Real Temp 3.70
- Advanced SystemCare 18.2.0.222
- Windows 7 Manager 5.2.0
- Portable Wise Registry Cleaner 11.1.9 Build 724
- AVG-PC Tuneup 24.4 Build 17418
- Adobe AIR Launchpad 51.1.3.4
- DOSBox Portable 2024.12.04
- The Dude 7.18.2
- Notepad++ Plugin Manager 2.4.2
- Advanced SystemCare Professional 14.2.0
- Revo Uninstaller Pro 2.5.8
- Portable Glary Utilities 6.23.0.27
- DriverHive 3.0.7 B1244
- Mz Cpu Accelerator 4.1.0
Popular Tags
remove
driver
tune
windows
memory
defrag
cleaner
faster
registry
cpu
system
tweak
boost
performance
speed
optimize
optimizer
uninstall
registry cleaner
repair
disk cleaner
backup
spyware
vista
startup
security
clean
ram
utility
disk
Popular Windows 7 Software
- Avro Keyboard 5.6.0.0
- Ghostscript (x64 bit) 10.03.1
- Windows 7
- System Optimizer and Cleaner Software 7.0
- Windows 7 Service Pack 1 7601.17514.1011
- Memory Card Data Recovery Freeware Tool 2.2.1.4
- OST2PST Converter Free 6.6 6.6
- USB Repair 8.7.3.1
- CubexSoft PDF Merge Tool 1.1
- PST Repair 17.0
- View and Read Outlook PST emails 5.0
- Stellar Data Recovery Professional 12.0.0.0
- Office 365 Email Backup Tool 21.9
- Data Recovery Software 7.8.3.1
- Sysinfo OST Splitter Tool 22.1
© 2025 Windows7Download.com - All logos, trademarks, art and other creative works are and remain copyright and property of their respective owners. Microsoft Windows is a registered trademarks of Microsoft Corporation. Microsoft Corporation in no way endorses or is affiliated with windows7download.com.